Skip to content

Commit

Permalink
feat: horizontal section and label for Clear Signing (#7529)
Browse files Browse the repository at this point in the history
* feat: add label clear signing
* add clear signing horizontal list
  • Loading branch information
RamyEB committed Aug 21, 2024
1 parent 81468af commit a409ecc
Show file tree
Hide file tree
Showing 12 changed files with 330 additions and 36 deletions.
5 changes: 5 additions & 0 deletions .changeset/calm-lizards-doubt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": patch
---

Add label clear signing
8 changes: 8 additions & 0 deletions apps/ledger-live-mobile/src/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -6849,12 +6849,16 @@
"components": {
"disclaimer": {
"clearSigningEnabled": "Clear signing enabled",
"clearSigningDisabled": "Clear signing disabled",
"checkbox": "Do not remind me again.",
"CTA": "Open {{app}}"
},
"manifestsList": {
"title": "Explore",
"description": "Discover the best of web3 curated by Ledger"
},
"label": {
"clearSigning": "clear signing"
}
},
"main": {
Expand All @@ -6864,6 +6868,10 @@
"header": {
"title": "Explore web3",
"placeholder": "Search or type a URL"
},
"clearSigning": {
"title": "Clear signing",
"description": "Clear signing allows you to sign a message without revealing the content of the message to the app. This is useful for privacy and security reasons."
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,32 @@ describe("Web3Hub integration test", () => {
expect(screen.getByRole("searchbox")).toBeDisabled();
});

it("Should be able to see Clear Signing section and label on disclaimer", async () => {
const { user } = render(<Web3HubTest />);
expect(await screen.findByText("Explore web3")).toBeOnTheScreen();
await waitForLoader();

expect((await screen.findAllByText("Clear signing"))[0]).toBeOnTheScreen();
expect((await screen.findAllByRole("banner", { name: /clear signing/i }))[0]).toBeOnTheScreen();

expect((await screen.findAllByText("Clear-signing"))[0]).toBeOnTheScreen();
await user.press(screen.getAllByText("Clear-signing")[0]);
expect(await screen.findByText("Clear signing enabled")).toBeOnTheScreen();

expect(await screen.findByText("Open Clear-signing")).toBeOnTheScreen();
await user.press(screen.getByText("Open Clear-signing"));
expect(await screen.findByText("clear-signing-0")).toBeOnTheScreen();
expect(await screen.findByText("Clear-signing")).toBeOnTheScreen();

expect(await screen.findByRole("button", { name: /back/i })).toBeOnTheScreen();
await user.press(screen.getByRole("button", { name: /back/i }));
expect(await screen.findByText("Explore web3")).toBeOnTheScreen();

expect((await screen.findAllByText("Dummy Wallet App"))[0]).toBeOnTheScreen();
await user.press(screen.getAllByText("Dummy Wallet App")[0]);
expect(await screen.findByText("Clear signing disabled")).toBeOnTheScreen();
});

it("Should only show the confirmation bottom modal if not dismissed previously", async () => {
const { user } = render(<Web3HubTest />);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ export default function Disclaimer({
: undefined;
}, [locale, manifest?.content.description]);

const clearSigningEnabled = useMemo(() => {
return manifest?.categories.includes("clear signing");
}, [manifest?.categories]);

return (
<QueuedDrawer isRequestingToBeOpened={isOpened} onClose={onClose}>
{manifest ? (
Expand All @@ -43,14 +47,25 @@ export default function Disclaimer({

<Box mt={6} height="1px" width="100%" backgroundColor={"translucentGrey"} />

<Flex mt={6} flexDirection={"row"} alignItems={"center"}>
<Box mr={2}>
<Icons.Eye color={"smoke"} />
</Box>
<Text fontSize={14} color="smoke">
{t("web3hub.components.disclaimer.clearSigningEnabled")}
</Text>
</Flex>
{clearSigningEnabled ? (
<Flex mt={6} flexDirection={"row"} alignItems={"center"}>
<Box mr={2}>
<Icons.Eye color={"smoke"} />
</Box>
<Text fontSize={14} color="smoke">
{t("web3hub.components.disclaimer.clearSigningEnabled")}
</Text>
</Flex>
) : (
<Flex mt={6} flexDirection={"row"} alignItems={"center"}>
<Box mr={2}>
<Icons.EyeCross color={"smoke"} />
</Box>
<Text fontSize={14} color="smoke">
{t("web3hub.components.disclaimer.clearSigningDisabled")}
</Text>
</Flex>
)}

<Flex mt={6}>
<Checkbox
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import React from "react";
import { Text } from "@ledgerhq/native-ui";

type ItemStyle = {
badgeColor: string;
borderColor: string;
backgroundColor: string;
};

type Props = {
text: string;
style: ItemStyle;
};

const Label: React.FC<Props> = ({ text, style }) => {
const { badgeColor, borderColor, backgroundColor } = style;
return (
<Text
role="banner"
fontSize="9px"
width="auto"
paddingX={2}
paddingY={1}
borderWidth={1}
borderRadius={3}
borderStyle={"solid"}
flexGrow={0}
flexShrink={0}
overflow={"hidden"}
textTransform="uppercase"
color={badgeColor}
borderColor={borderColor}
backgroundColor={backgroundColor}
fontWeight="semiBold"
marginLeft={3}
>
{text}
</Text>
);
};

export default Label;
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { AppBranch, AppManifest } from "@ledgerhq/live-common/wallet-api/types";
import type { MainProps, SearchProps } from "LLM/features/Web3Hub/types";
import AppIcon from "LLM/features/Web3Hub/components/AppIcon";
import { Theme } from "~/colors";
import Label from "./Label";

export type NavigationProp = MainProps["navigation"] | SearchProps["navigation"];

Expand Down Expand Up @@ -45,7 +46,6 @@ function getBranchStyle(branch: AppBranch, colors: Theme["colors"]) {
};
}
}

export default function ManifestItem({
manifest,
onPress,
Expand Down Expand Up @@ -78,40 +78,44 @@ export default function ManifestItem({
return manifest.icon?.trim();
}, [manifest.icon]);

const clearSigningEnabled = useMemo(() => {
return manifest?.categories.includes("clear signing");
}, [manifest?.categories]);

return (
<TouchableOpacity disabled={isDisabled} onPress={handlePress}>
<Flex flexDirection="row" alignItems="center" height={72} paddingX={4} paddingY={2}>
<AppIcon isDisabled={isDisabled} size={48} name={manifest.name} icon={icon} />
<Flex marginX={16} height="100%" flexGrow={1} flexShrink={1} justifyContent={"center"}>
<Flex flexDirection="row" alignItems={"center"} mb={2}>
<Flex flexDirection="row" alignItems={"center"} mb={2} columnGap={4}>
<Text variant="large" color={color} numberOfLines={1} fontWeight="semiBold">
{manifest.name}
</Text>
{manifest.branch !== "stable" && (
<Text
fontSize="9px"
width="auto"
paddingX={2}
paddingY={1}
borderWidth={1}
borderRadius={3}
borderStyle={"solid"}
flexGrow={0}
flexShrink={0}
marginLeft={3}
overflow={"hidden"}
textTransform="uppercase"
color={badgeColor}
borderColor={borderColor}
backgroundColor={backgroundColor}
fontWeight="semiBold"
>
{t(`platform.catalog.branch.${manifest.branch}`, {
defaultValue: manifest.branch,
})}
</Text>
)}
<Flex flexDirection="row" alignItems={"center"}>
{manifest.branch !== "stable" && (
<Label
text={t(`platform.catalog.branch.${manifest.branch}`, {
defaultValue: manifest.branch,
})}
style={{ badgeColor, borderColor, backgroundColor }}
/>
)}

{clearSigningEnabled && (
<Label
text={t(`web3hub.components.label.clearSigning`, {
defaultValue: "Clear Signing",
})}
style={{
badgeColor: colors.live,
borderColor: colors.live,
backgroundColor: "transparent",
}}
/>
)}
</Flex>
</Flex>

<Text fontSize={13} color={colors.smoke} numberOfLines={1}>
{url}
</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ type Props = {
title?: string;
pt?: number;
pb?: number;
headerComponent?: React.ReactNode;
};

const AnimatedFlashList = Animated.createAnimatedComponent<FlashListProps<AppManifest>>(FlashList);
Expand All @@ -39,7 +40,14 @@ const renderItem = ({
return <ManifestItem manifest={item} onPress={extraData} />;
};

export default function ManifestsList({ navigation, onScroll, title, pt = 0, pb = 0 }: Props) {
export default function ManifestsList({
navigation,
onScroll,
title,
pt = 0,
pb = 0,
headerComponent,
}: Props) {
const { t } = useTranslation();
const [selectedCategory, selectCategory] = useState("all");
const { data, isLoading, onEndReached } = useManifestsListViewModel(selectedCategory);
Expand Down Expand Up @@ -68,13 +76,13 @@ export default function ManifestsList({ navigation, onScroll, title, pt = 0, pb
}}
ListHeaderComponent={
<>
{headerComponent}
<Text mt={5} numberOfLines={1} variant="h5" mx={5} accessibilityRole="header">
{title ?? t("web3hub.components.manifestsList.title")}
</Text>
<Text mt={2} mb={5} numberOfLines={1} variant="body" mx={5} accessibilityRole="header">
{t("web3hub.components.manifestsList.description")}
</Text>

<View style={{ height: 32, marginBottom: 2 }}>
<CategoriesList selectedCategory={selectedCategory} selectCategory={selectCategory} />
</View>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import React, { useCallback, useMemo } from "react";
import { TouchableOpacity } from "react-native";
import { Flex, Text } from "@ledgerhq/native-ui";
import AppIcon from "LLM/features/Web3Hub/components/AppIcon";
import { AppManifest } from "@ledgerhq/live-common/wallet-api/types";

export default function MinimalAppCard({
item,
onPress,
}: {
item: AppManifest;
onPress: (manifest: AppManifest) => void;
}) {
const disabled = useMemo(() => item.branch === "soon", [item]);
const handlePress = useCallback(() => {
if (!disabled) {
onPress(item);
}
}, [disabled, item, onPress]);

return (
<TouchableOpacity disabled={disabled} onPress={handlePress}>
<Flex rowGap={6} marginRight={3} width={70} alignItems={"center"}>
<AppIcon isDisabled={disabled} size={48} name={item.name} icon={item.icon} />
<Text numberOfLines={1}>{item.name}</Text>
</Flex>
</TouchableOpacity>
);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
import React from "react";
import { StyleSheet } from "react-native";
import { FlashList } from "@shopify/flash-list";
import { Box, Flex, InfiniteLoader, Text } from "@ledgerhq/native-ui";
import { AppManifest } from "@ledgerhq/live-common/wallet-api/types";
import MinimalAppCard from "./MinimalAppCard";

type Props = {
title: string;
isLoading: boolean;
data: AppManifest[];
onEndReached?: () => void;
onPressItem: (manifest: AppManifest) => void;
testID?: string;
};

type PropRenderItem = {
item: AppManifest;
extraData?: (manifest: AppManifest) => void;
};

const identityFn = (item: AppManifest) => item.id;

const renderItem = ({ item, extraData: onPressItem = () => {} }: PropRenderItem) => (
<MinimalAppCard item={item} onPress={onPressItem} />
);

export default function HorizontalList({
title,
isLoading,
data,
onEndReached,
onPressItem,
testID,
}: Props) {
return (
<>
<Text mt={2} mb={5} numberOfLines={1} variant="h5" mx={5} accessibilityRole="header">
{title}
</Text>
<Box mb={2}>
<FlashList
testID={testID}
horizontal
contentContainerStyle={styles.container}
keyExtractor={identityFn}
renderItem={renderItem}
ListFooterComponent={
isLoading ? (
<Flex marginRight={4} justifyContent={"center"} paddingTop={3}>
<InfiniteLoader size={30} />
</Flex>
) : null
}
estimatedItemSize={70}
data={data}
showsHorizontalScrollIndicator={false}
extraData={onPressItem}
onEndReached={onEndReached}
/>
</Box>
</>
);
}

const styles = StyleSheet.create({
container: {
paddingHorizontal: 5,
},
});
Loading

1 comment on commit a409ecc

@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' ✅ 29 txs ❌ 7 txs 💰 2 miss funds ($375.66) ⏲ 11min 51s

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

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

4 critical spec errors

Spec secret_network failed!

Error: timeout of 60000ms exceeded

Spec Filecoin failed!

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

Spec Telos failed!

InvalidExplorerResponse: InvalidExplorerResponse

Spec Polkadot failed!

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

❌ 7 mutation errors
necessary accounts resynced in 0.14ms
▬ 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.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND MAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (935ms)
  amount: 0.197134610613255675 AVAX
  estimated fees: 0.00055965 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 61s – ends at 2024-08-22T05:42:30.389Z)
necessary accounts resynced in 1.01ms
▬ 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.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.098559662178169838 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (822ms)
  amount: 0.098559662178169838 AVAX
  estimated fees: 0.00055965 AVAX
  total spent: 0.099119312178169838 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 60.9s – ends at 2024-08-22T05:42:30.406Z)
necessary accounts resynced in 0.41ms
▬ 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.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (848ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.00055965 AVAX
  total spent: 0.201416809654426997 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 60.9s – ends at 2024-08-22T05:42:30.414Z)
necessary accounts resynced in 0.20ms
▬ BinanceSmartChain 1.11.2 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.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (819ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.000042146715366 BNB
  total spent: 0.027574978263246244 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.9s – ends at 2024-08-22T05:42:30.418Z)
necessary accounts resynced in 0.14ms
▬ BinanceSmartChain 1.11.2 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.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND  0.012144467609662234 BNB
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (802ms)
  amount: 0.012144467609662234 BNB
  estimated fees: 0.000042146715366 BNB
  total spent: 0.012186614325028234 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.9s – ends at 2024-08-22T05:42:30.426Z)
necessary accounts resynced in 0.19ms
▬ BinanceSmartChain 1.11.2 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 (1006ms)
  amount: 0.024183788503916467 BNB
  estimated fees: 0.000042146715366 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 61.1s – ends at 2024-08-22T05:42:30.435Z)
necessary accounts resynced in 0.09ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0136614 ETH (74ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops 0.013583458141704487 ETH)
max spendable ~0.0136606
★ using mutation 'send max'
→ TO undefined: 0.00536201 ETH (54ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND MAX
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (397ms)
  amount: 0.013661133392910487 ETH
  estimated fees: 0.0000003171 ETH
  total spent: 0.013661450492910487 ETH
errors: 
warnings: 
✔️ has been signed! (2966ms) 
✔️ broadcasted! (141ms) optimistic operation: 
  -0.013661450492910487 ETH OUT        0xd3d23a750791f19276c32928a5a23c380d9cba5f4562e84ee41646ed738b4957 2024-08-22T05:32
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "104048448000"
(totally spent 10min 4s – ends at 2024-08-22T05:42:30.436Z)
⚠️ 5 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
Details of the 36 mutations

Spec axelar (18)

Spec axelar found 18 Axelar accounts (preload: 251ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 AXL (4ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 0.022348 AXL (13ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0.052087 AXL (15ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.009551 AXL (9ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0.186888 AXL (10ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 0.501916 AXL (23ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0 AXL (13ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.000033 AXL (13ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0.467664 AXL (9ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.948829 AXL (14ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.859483 AXL (4ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 1.11475 AXL (16ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 1.48369 AXL (6ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 7.36976 AXL (9ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 2.58485 AXL (2ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 1.119 AXL (2ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
undefined: 0.125864 AXL (1ops) (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.47ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.052087 AXL (15ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha: (! sum of ops -0.618996 AXL) 0.052087 AXL spendable. 

max spendable ~0.045102
★ using mutation 'send max'
→ TO undefined: 1.119 AXL (2ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
✔️ transaction 
SEND MAX
TO axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4

with fees=0.006175
STATUS (370ms)
  amount: 0.045912 AXL
  estimated fees: 0.006175 AXL
  total spent: 0.052087 AXL
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (77ms) optimistic operation: 
  -0.052087 AXL      OUT        93C5B8B1E4296310598E233A5081BB6C094BA7305F2533C759BEEAA4B49EEF0C 2024-08-22T05:31
✔️ operation confirmed (0.25ms): 
  -0.052087 AXL      OUT        93C5B8B1E4296310598E233A5081BB6C094BA7305F2533C759BEEAA4B49EEF0C 2024-08-22T05:31
✔️ undefined: 0.052087 AXL (15ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha: (! sum of ops -0.618996 AXL) 0.052087 AXL spendable. 
✔️ destination operation 
  ? -52087           OUT        93C5B8B1E4296310598E233A5081BB6C094BA7305F2533C759BEEAA4B49EEF0C 2024-08-22T05:31

necessary accounts resynced in 0.19ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.186888 AXL (10ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f: 0.186888 AXL spendable. 

max spendable ~0.179896
★ using mutation 'send some'
→ TO undefined: 0 AXL (13ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
✔️ transaction 
SEND  0.09578 AXL
TO axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa

with fees=0.006186
  memo=LedgerLiveBot
STATUS (520ms)
  amount: 0.09578 AXL
  estimated fees: 0.006186 AXL
  total spent: 0.101966 AXL
errors: 
warnings: 
✔️ has been signed! (4.4s) 
✔️ broadcasted! (2508ms) optimistic operation: 
  -0.101966 AXL      OUT        8A1179C7460C4C39E5BDED52F19DF2B468B8C4CAF15E075C37E358BFC83B569D 2024-08-22T05:31
✔️ operation confirmed (4.60ms): 
  -0.101966 AXL      OUT        8A1179C7460C4C39E5BDED52F19DF2B468B8C4CAF15E075C37E358BFC83B569D 2024-08-22T05:31
✔️ undefined: 0.186888 AXL (10ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f: 0.186888 AXL spendable. 
✔️ destination operation 
  ? -101966          OUT        8A1179C7460C4C39E5BDED52F19DF2B468B8C4CAF15E075C37E358BFC83B569D 2024-08-22T05:31

necessary accounts resynced in 0.14ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.501916 AXL (23ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx: (! sum of ops -0.537747 AXL) 0.501916 AXL spendable. 

max spendable ~0.494924
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.009194 AXL
TO 
  0.009194 -> axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg
with fees=0.011591
  memo=LedgerLiveBot
STATUS (1010ms)
  amount: 0.009194 AXL
  estimated fees: 0.011591 AXL
  total spent: 0.020785 AXL
errors: 
warnings: 
✔️ has been signed! (4.4s) 
✔️ broadcasted! (61ms) optimistic operation: 
  -0.020785 AXL      DELEGATE   48373CC28DC59F7EAB41160C035B60E70A7808CEA84EB7A8C72A96C916984725 2024-08-22T05:31
    to axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg 0.009194 AXL    
✔️ operation confirmed (0.31ms): 
  -0.020785 AXL      DELEGATE   48373CC28DC59F7EAB41160C035B60E70A7808CEA84EB7A8C72A96C916984725 2024-08-22T05:31
    to axelarvaloper1uvx854yjzn9re8vu74067u68r4ar70tywgpcwg 0.009194 AXL    
✔️ undefined: 0.501916 AXL (23ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx: (! sum of ops -0.537747 AXL) 0.501916 AXL spendable. 

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

max spendable ~0.460672
★ using mutation 'send some'
→ TO undefined: 0.186888 AXL (10ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
✔️ transaction 
SEND  0.244484 AXL
TO axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f

with fees=0.006182
STATUS (359ms)
  amount: 0.244484 AXL
  estimated fees: 0.006182 AXL
  total spent: 0.250666 AXL
errors: 
warnings: 
✔️ has been signed! (3.8s) 
✔️ broadcasted! (63ms) optimistic operation: 
  -0.250666 AXL      OUT        894890FCEE6A77A7FD4E85B2291B11889D5EFCB3CED671CEBEA0A96770FE5268 2024-08-22T05:31
✔️ operation confirmed (0.28ms): 
  -0.250666 AXL      OUT        894890FCEE6A77A7FD4E85B2291B11889D5EFCB3CED671CEBEA0A96770FE5268 2024-08-22T05:31
✔️ undefined: 0.467664 AXL (9ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z: (! sum of ops -4.050108 AXL) 0.467664 AXL spendable. 
✔️ destination operation 
  ? -250666          OUT        894890FCEE6A77A7FD4E85B2291B11889D5EFCB3CED671CEBEA0A96770FE5268 2024-08-22T05:31

necessary accounts resynced in 4.60ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.948829 AXL (14ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops -5.183629 AXL) 0.947487 AXL spendable. 0.001342 AXL delegated. 
DELEGATIONS
  to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.001342 AXL  (claimable 0.001342)

max spendable ~0.940495
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.001342 -> axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate
with fees=0.015232
  memo=LedgerLiveBot
STATUS (365ms)
  amount: 0 AXL
  estimated fees: 0.015232 AXL
  total spent: 0.015232 AXL
errors: 
warnings: 
✔️ has been signed! (4s) 
✔️ broadcasted! (61ms) optimistic operation: 
  -0.015232 AXL      UNDELEGATE C0BE06C5F916AFC5A9E295F93ECD7DDBFE95A53638BFDB97EC4544AE017C0353 2024-08-22T05:31
    to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.001342 AXL    
✔️ operation confirmed (0.30ms): 
  -0.015232 AXL      UNDELEGATE C0BE06C5F916AFC5A9E295F93ECD7DDBFE95A53638BFDB97EC4544AE017C0353 2024-08-22T05:31
    to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.001342 AXL    
✔️ undefined: 0.948829 AXL (14ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops -5.183629 AXL) 0.947487 AXL spendable. 0.001342 AXL delegated. 
DELEGATIONS
  to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.001342 AXL  (claimable 0.001342)


Spec cosmos (15)

Spec cosmos found 15 Cosmos accounts (preload: 350ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 ATOM (43ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (35ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0.365298 ATOM (33ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.005573 ATOM (55ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.002476 ATOM (19ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.173767 ATOM (52ops) (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: 1.27105 ATOM (31ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0.779663 ATOM (16ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 2.09097 ATOM (14ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.47497 ATOM (3ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.21145 ATOM (8ops) (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.407196 ATOM (2ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 0 ATOM (0ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
necessary accounts resynced in 44ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.365298 ATOM (33ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu: 0.365298 ATOM spendable. 

max spendable ~0.362504
★ using mutation 'send max'
→ TO undefined: 0.407196 ATOM (2ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
✔️ transaction 
SEND MAX
TO cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64

with fees=0.002795
STATUS (1094ms)
  amount: 0.362503 ATOM
  estimated fees: 0.002795 ATOM
  total spent: 0.365298 ATOM
errors: 
warnings: 
✔️ has been signed! (3.8s) 
✔️ broadcasted! (155ms) optimistic operation: 
  -0.365298 ATOM     OUT        F9A660F18E5212188BC318545C255B3E5D215CE1C589C6432D0AACDD85F8F017 2024-08-22T05:31
✔️ operation confirmed (11s): 
  -0.365298 ATOM     OUT        F9A660F18E5212188BC318545C255B3E5D215CE1C589C6432D0AACDD85F8F017 2024-08-22T05:31
✔️ undefined: 0 ATOM (34ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu: 0 ATOM spendable. 
(in 11s)
✔️ destination operation 
  +0.362503 ATOM     IN         F9A660F18E5212188BC318545C255B3E5D215CE1C589C6432D0AACDD85F8F017 2024-08-22T05:31
(in 10.7s)

necessary accounts resynced in 0.20ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.173767 ATOM (52ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8: (! sum of ops 0.173613 ATOM) 0.163749 ATOM spendable. 0.008295 ATOM delegated. 0.001723 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2 0.008295 ATOM  (claimable 0.008295)
UNDELEGATIONS
  from cosmosvaloper1z8zjv3lntpwxua0rtpvgrcwl0nm0tltgpgs6l7 0.001723 ATOM

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

with fees=0.002797
STATUS (1843ms)
  amount: 0.087147 ATOM
  estimated fees: 0.002797 ATOM
  total spent: 0.089944 ATOM
errors: 
warnings: 
✔️ has been signed! (2944ms) 
✔️ broadcasted! (122ms) optimistic operation: 
  -0.089944 ATOM     OUT        DAECF5A510DB1CA7AD89C15F99327440E36BDFD166848752053DD1B95D937EB1 2024-08-22T05:31
✔️ operation confirmed (11.1s): 
  -0.089944 ATOM     OUT        DAECF5A510DB1CA7AD89C15F99327440E36BDFD166848752053DD1B95D937EB1 2024-08-22T05:31
✔️ undefined: 0.083823 ATOM (53ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8: (! sum of ops 0.083669 ATOM) 0.073805 ATOM spendable. 0.008295 ATOM delegated. 0.001723 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2 0.008295 ATOM  (claimable 0.008295)
UNDELEGATIONS
  from cosmosvaloper1z8zjv3lntpwxua0rtpvgrcwl0nm0tltgpgs6l7 0.001723 ATOM
(in 11.1s)
✔️ destination operation 
  +0.087147 ATOM     IN         DAECF5A510DB1CA7AD89C15F99327440E36BDFD166848752053DD1B95D937EB1 2024-08-22T05:31
(in 10.8s)

necessary accounts resynced in 2.02ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.3582 ATOM (32ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 1.370158 ATOM) 1.312684 ATOM spendable. 0.045519 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 0.008723 ATOM  (claimable 0.008723)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.036796 ATOM  (claimable 0.036796)
REDELEGATIONS
  from cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.001001 ATOM

max spendable ~1.30988
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.008723 -> cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm
  source validator=cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6
with fees=0.02895
  memo=LedgerLiveBot
STATUS (613ms)
  amount: 0 ATOM
  estimated fees: 0.02895 ATOM
  total spent: 0.02895 ATOM
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (117ms) optimistic operation: 
  -0.02895 ATOM      REDELEGATE D692A688CDD1DBC2F162DC094A58ADFB1B2B87592B002451B67B82830B47EDBD 2024-08-22T05:32
    to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.008723 ATOM   
✔️ operation confirmed (10.9s): 
  -0.02895 ATOM      REDELEGATE D692A688CDD1DBC2F162DC094A58ADFB1B2B87592B002451B67B82830B47EDBD 2024-08-22T05:32
    to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.008723 ATOM   
✔️ undefined: 1.3294 ATOM (33ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 1.341208 ATOM) 1.283882 ATOM spendable. 0.045519 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.045519 ATOM 
REDELEGATIONS
  from cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.001001 ATOM
  from cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.008723 ATOM
(in 10.9s)

necessary accounts resynced in 5ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.779663 ATOM (16ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r: 0.779663 ATOM spendable. 

max spendable ~0.776869
★ using mutation 'send some'
→ TO undefined: 0 ATOM (34ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
✔️ transaction 
SEND  0.287474 ATOM
TO cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu

with fees=0.002796
STATUS (1219ms)
  amount: 0.287474 ATOM
  estimated fees: 0.002796 ATOM
  total spent: 0.29027 ATOM
errors: 
warnings: 
✔️ has been signed! (2792ms) 
✔️ broadcasted! (292ms) optimistic operation: 
  -0.29027 ATOM      OUT        47EBE93B1420F45289CCC3267438D18DF96D3D6E93CFAAD642C13526AA7CE0D8 2024-08-22T05:32
✔️ operation confirmed (11s): 
  -0.29027 ATOM      OUT        47EBE93B1420F45289CCC3267438D18DF96D3D6E93CFAAD642C13526AA7CE0D8 2024-08-22T05:32
✔️ undefined: 0.489393 ATOM (17ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r: 0.489393 ATOM spendable. 
(in 11s)
✔️ destination operation 
  +0.287474 ATOM     IN         47EBE93B1420F45289CCC3267438D18DF96D3D6E93CFAAD642C13526AA7CE0D8 2024-08-22T05:32
(in 11.4s)

necessary accounts resynced in 7ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 2.09097 ATOM (14ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5: (! sum of ops 2.090843 ATOM) 2.087301 ATOM spendable. 0.003672 ATOM unbonding. 
UNDELEGATIONS
  from cosmosvaloper17mggn4znyeyg25wd7498qxl7r2jhgue8u4qjcq 0.003672 ATOM

max spendable ~2.0845
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.055689 ATOM
TO 
  0.055689 -> cosmosvaloper1ddle9tczl87gsvmeva3c48nenyng4n56nghmjk
with fees=0.00925
  memo=LedgerLiveBot
STATUS (2535ms)
  amount: 0.055689 ATOM
  estimated fees: 0.00925 ATOM
  total spent: 0.064939 ATOM
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (100ms) optimistic operation: 
  -0.064939 ATOM     DELEGATE   98D56BCAB2B830C0EF121D07185F5223F99D0A79F05D0DA75106FA4C80B1C377 2024-08-22T05:33
    to cosmosvaloper1ddle9tczl87gsvmeva3c48nenyng4n56nghmjk 0.055689 ATOM   
✔️ operation confirmed (11.3s): 
  -0.00925 ATOM      DELEGATE   98D56BCAB2B830C0EF121D07185F5223F99D0A79F05D0DA75106FA4C80B1C377 2024-08-22T05:32
    to cosmosvaloper1ddle9tczl87gsvmeva3c48nenyng4n56nghmjk 0.055689 ATOM   
✔️ undefined: 2.08172 ATOM (15ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5: (! sum of ops 2.081593 ATOM) 2.022362 ATOM spendable. 0.055689 ATOM delegated. 0.003672 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1ddle9tczl87gsvmeva3c48nenyng4n56nghmjk 0.055689 ATOM 
UNDELEGATIONS
  from cosmosvaloper17mggn4znyeyg25wd7498qxl7r2jhgue8u4qjcq 0.003672 ATOM
(in 11.3s)

necessary accounts resynced in 0.16ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 3.21145 ATOM (8ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 3.210364 ATOM) 3.134439 ATOM spendable. 0.031276 ATOM delegated. 0.045738 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw 0.031276 ATOM  (claimable 0.031276)
UNDELEGATIONS
  from cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk 0.045738 ATOM

max spendable ~3.13164
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.031276 -> cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw
with fees=0.016727
  memo=LedgerLiveBot
STATUS (963ms)
  amount: 0 ATOM
  estimated fees: 0.016727 ATOM
  total spent: 0.016727 ATOM
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (125ms) optimistic operation: 
  -0.016727 ATOM     UNDELEGATE 3BD798FA885C7E875AEA3D81E364A8896CB491B226BEBD7F80266121C6F43646 2024-08-22T05:33
    to cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw 0.031276 ATOM   
✔️ operation confirmed (10.9s): 
  -0.016727 ATOM     UNDELEGATE 3BD798FA885C7E875AEA3D81E364A8896CB491B226BEBD7F80266121C6F43646 2024-08-22T05:33
    to cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw 0.031276 ATOM   
✔️ undefined: 3.19482 ATOM (9ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 3.193637 ATOM) 3.11781 ATOM spendable. 0.077014 ATOM unbonding. 
UNDELEGATIONS
  from cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk 0.045738 ATOM
  from cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw 0.031276 ATOM
(in 10.9s)


Spec secret_network (failed)


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]: 0.568674 QTUM (96ops) (MCZGG7Zi5u7x2xkiLfPv1aFTvKDM7MkH44 on 49'/88'/0'/0/48) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.535639 QTUM (91ops) (MVFdmkS3Br3rTTxaoQLmpFuMuFj8xVvSv9 on 49'/88'/1'/0/46) 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.791498 QTUM (96ops) (QLmSuaM8utunmE1U5e8BLYX6SNvDA7bz2v on 44'/88'/0'/0/50) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.627918 QTUM (82ops) (QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J on 44'/88'/1'/0/38) #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.10ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.568674 QTUM (96ops) (MCZGG7Zi5u7x2xkiLfPv1aFTvKDM7MkH44 on 49'/88'/0'/0/48) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
3 UTXOs
0.54204      M9yrY42RConfoyZb8ck6zNuxHVhA22kNwH 0dfd3ae681474463e3bdfe94909905d9309dff84a83dbf65f698e75e2cda0baa @0 (18879)
0.0256345    MHtsv16AMKAmsDGgM9LPZ5SCeNP3VzdRK7 (change) 40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146 @1 (18880)
0.001        MRfREziKmN6UVxTreWoYN733GHTTq1djWG 81a7fc8d9774c4519ae6cc78c3e3448e20144d083b2888b22d9b071e3879d3df @0 (75588)

max spendable ~0.565541
★ using mutation 'optimize-size'
→ TO undefined [legacy]: 0.791498 QTUM (96ops) (QLmSuaM8utunmE1U5e8BLYX6SNvDA7bz2v on 44'/88'/0'/0/50) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
✔️ transaction 
SEND 0.27346996 QTUM
TO QLmSuaM8utunmE1U5e8BLYX6SNvDA7bz2v
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (191ms)
TX INPUTS (1):
0.54204      M9yrY42RConfoyZb8ck6zNuxHVhA22kNwH 0dfd3ae681474463e3bdfe94909905d9309dff84a83dbf65f698e75e2cda0baa@0
TX OUTPUTS (2):
0.273469     QLmSuaM8utunmE1U5e8BLYX6SNvDA7bz2v @0 (0)
0.266898     MEUNLmQXAnzKEQtKiz2Vnzcm2KEmBgdd6p (change) @1 (0)
  amount: 0.27346996 QTUM
  estimated fees: 0.00167167 QTUM
  total spent: 0.27514163 QTUM
errors: 
warnings: 
✔️ has been signed! (4.4s) 
✔️ broadcasted! (103ms) optimistic operation: 
  -0.27514163 QTUM   OUT        3e3906e4a9b9c13c4bbb3dc730549743c3c5db45dfb29d1178f5d6f6d999c7f6 2024-08-22T05:31
✔️ operation confirmed (10.5s): 
  -0.27514163 QTUM   OUT        3e3906e4a9b9c13c4bbb3dc730549743c3c5db45dfb29d1178f5d6f6d999c7f6 2024-08-22T05:31
✔️ undefined [segwit]: 0.293533 QTUM (97ops) (MCZGG7Zi5u7x2xkiLfPv1aFTvKDM7MkH44 on 49'/88'/0'/0/48) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
3 UTXOs
0.266898     MEUNLmQXAnzKEQtKiz2Vnzcm2KEmBgdd6p (change) 3e3906e4a9b9c13c4bbb3dc730549743c3c5db45dfb29d1178f5d6f6d999c7f6 @1 (0)
0.0256345    MHtsv16AMKAmsDGgM9LPZ5SCeNP3VzdRK7 (change) 40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146 @1 (18881)
0.001        MRfREziKmN6UVxTreWoYN733GHTTq1djWG 81a7fc8d9774c4519ae6cc78c3e3448e20144d083b2888b22d9b071e3879d3df @0 (75589)
(in 10.5s)
✔️ destination operation 
  +0.27346996 QTUM   IN         3e3906e4a9b9c13c4bbb3dc730549743c3c5db45dfb29d1178f5d6f6d999c7f6 2024-08-22T05:31
(in 10.4s)

necessary accounts resynced in 0.19ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.535639 QTUM (91ops) (MVFdmkS3Br3rTTxaoQLmpFuMuFj8xVvSv9 on 49'/88'/1'/0/46) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
2 UTXOs
0.395815     MG2shn3jWdgAubhDk3YZ4RRFRcYTegvSYw rbf fedc6ae12ad598caf76fcc7517f146b1ba2f31e1f757e0653c4973c9f3affb25 @0 (18878)
0.139823     M9qXTmGAasm6oXsdXVjXDS2ZdidEigaJXa 40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146 @0 (18880)

max spendable ~0.533406
★ using mutation 'send max'
→ TO undefined [segwit]: 0.293533 QTUM (97ops) (MCZGG7Zi5u7x2xkiLfPv1aFTvKDM7MkH44 on 49'/88'/0'/0/48) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
✔️ transaction 
SEND MAX
TO MCZGG7Zi5u7x2xkiLfPv1aFTvKDM7MkH44
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (138ms)
TX INPUTS (2):
0.139823     M9qXTmGAasm6oXsdXVjXDS2ZdidEigaJXa 40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146@0
0.395815     MG2shn3jWdgAubhDk3YZ4RRFRcYTegvSYw fedc6ae12ad598caf76fcc7517f146b1ba2f31e1f757e0653c4973c9f3affb25@0
TX OUTPUTS (1):
0.533406     MCZGG7Zi5u7x2xkiLfPv1aFTvKDM7MkH44 @0 (0)
  amount: 0.5334068 QTUM
  estimated fees: 0.00223223 QTUM
  total spent: 0.53563903 QTUM
errors: 
warnings: 
✔️ has been signed! (4.7s) 
✔️ broadcasted! (98ms) optimistic operation: 
  -0.00223223 QTUM   OUT        cd91b34be895bca8f3e4d00a61a8d4a1566197bb7e78935259b859c602d77454 2024-08-22T05:31
✔️ operation confirmed (10.4s): 
  -0.53563903 QTUM   OUT        cd91b34be895bca8f3e4d00a61a8d4a1566197bb7e78935259b859c602d77454 2024-08-22T05:31
✔️ undefined [segwit]: 0 QTUM (92ops) (MVFdmkS3Br3rTTxaoQLmpFuMuFj8xVvSv9 on 49'/88'/1'/0/46) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
0 UTXOs
(in 10.4s)
✔️ destination operation 
  +0.5334068 QTUM    IN         cd91b34be895bca8f3e4d00a61a8d4a1566197bb7e78935259b859c602d77454 2024-08-22T05:31
(in 10.4s)

necessary accounts resynced in 0.12ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 1.06496 QTUM (97ops) (QWzh7mD8KCPJvJiaRumkBiC1Stzfr4YqTt on 44'/88'/0'/0/51) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
3 UTXOs
0.432717     QdE494Dm2ohqgL8xhfzLxG3tnCiDGFmwja 38208f6a9ecb6853d6eef45bae3f626a06362149579d65eb18d506097be206e3 @0 (18879)
0.358781     QQQrShfaT8Sf8W9PzmExjEYyuwkyUaMkC4 (change) rbf fedc6ae12ad598caf76fcc7517f146b1ba2f31e1f757e0653c4973c9f3affb25 @1 (18879)
0.273469     QLmSuaM8utunmE1U5e8BLYX6SNvDA7bz2v 3e3906e4a9b9c13c4bbb3dc730549743c3c5db45dfb29d1178f5d6f6d999c7f6 @0 (0)

max spendable ~0.788095
★ using mutation 'send OP_RETURN transaction'
→ TO undefined [legacy]: 0.627918 QTUM (82ops) (QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J on 44'/88'/1'/0/38) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
✔️ transaction 
SEND 0.001 QTUM
TO QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (94ms)
TX INPUTS (1):
0.358781     QQQrShfaT8Sf8W9PzmExjEYyuwkyUaMkC4 fedc6ae12ad598caf76fcc7517f146b1ba2f31e1f757e0653c4973c9f3affb25@1
TX OUTPUTS (3):
0.001        QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J @0 (0)
0            @1 (0)
0.355218     QazCdTB1R4HnxQdbg9Cx1mzZ5x1wHWUTZd (change) @2 (0)
  amount: 0.001 QTUM
  estimated fees: 0.00256256 QTUM
  total spent: 0.00356256 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (4.3s) 
✔️ broadcasted! (101ms) optimistic operation: 
  -0.00356256 QTUM   OUT        c9377f3e3c266657bb4844b110f827cc097ba926d4527c53d4252944b79ba947 2024-08-22T05:31
✔️ operation confirmed (10.4s): 
  -0.00356256 QTUM   OUT        c9377f3e3c266657bb4844b110f827cc097ba926d4527c53d4252944b79ba947 2024-08-22T05:31
✔️ undefined [legacy]: 1.0614 QTUM (98ops) (QWzh7mD8KCPJvJiaRumkBiC1Stzfr4YqTt on 44'/88'/0'/0/51) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
3 UTXOs
0.432717     QdE494Dm2ohqgL8xhfzLxG3tnCiDGFmwja 38208f6a9ecb6853d6eef45bae3f626a06362149579d65eb18d506097be206e3 @0 (18881)
0.355218     QazCdTB1R4HnxQdbg9Cx1mzZ5x1wHWUTZd (change) c9377f3e3c266657bb4844b110f827cc097ba926d4527c53d4252944b79ba947 @2 (0)
0.273469     QLmSuaM8utunmE1U5e8BLYX6SNvDA7bz2v 3e3906e4a9b9c13c4bbb3dc730549743c3c5db45dfb29d1178f5d6f6d999c7f6 @0 (0)
(in 10.4s)
✔️ destination operation 
  +0.001 QTUM        IN         c9377f3e3c266657bb4844b110f827cc097ba926d4527c53d4252944b79ba947 2024-08-22T05:31
(in 10.3s)

necessary accounts resynced in 0.25ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 0.628918 QTUM (83ops) (QWehYEqu17M3CMCcWGdzP54XrkpWRWEppE on 44'/88'/1'/0/39) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
2 UTXOs
0.627918     QNPvwmEiTzQdYV2xHzkvZSFn6Eh9sTuCYB 3339e5ae3167be553f1c780620a157031348e0931185ea63bbf580dee49bd21a @0 (37786)
0.001        QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J c9377f3e3c266657bb4844b110f827cc097ba926d4527c53d4252944b79ba947 @0 (0)

max spendable ~0.625996
★ using mutation 'move ~50%'
→ TO undefined [legacy]: 1.0614 QTUM (98ops) (QWzh7mD8KCPJvJiaRumkBiC1Stzfr4YqTt on 44'/88'/0'/0/51) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
✔️ transaction 
SEND 0.32873269 QTUM
TO QWzh7mD8KCPJvJiaRumkBiC1Stzfr4YqTt
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed RBF-enabled
STATUS (205ms)
TX INPUTS (1):
0.627918     QNPvwmEiTzQdYV2xHzkvZSFn6Eh9sTuCYB 3339e5ae3167be553f1c780620a157031348e0931185ea63bbf580dee49bd21a@0
TX OUTPUTS (2):
0.328732     QWzh7mD8KCPJvJiaRumkBiC1Stzfr4YqTt rbf @0 (0)
0.296923     QjUkhQUQUDoyZe5xSkuu115a7dwJuvmeve (change) rbf @1 (0)
  amount: 0.32873269 QTUM
  estimated fees: 0.00226226 QTUM
  total spent: 0.33099495 QTUM
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (99ms) optimistic operation: 
  -0.33099495 QTUM   OUT        6bcfefc5f3cc21272bc59cad6e3f1e224b3802256a24a55a477cf52205b43f0c 2024-08-22T05:32
✔️ operation confirmed (10.6s): 
  -0.33099495 QTUM   OUT        6bcfefc5f3cc21272bc59cad6e3f1e224b3802256a24a55a477cf52205b43f0c 2024-08-22T05:32
✔️ undefined [legacy]: 0.297923 QTUM (84ops) (QWehYEqu17M3CMCcWGdzP54XrkpWRWEppE on 44'/88'/1'/0/39) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
2 UTXOs
0.296923     QjUkhQUQUDoyZe5xSkuu115a7dwJuvmeve (change) rbf 6bcfefc5f3cc21272bc59cad6e3f1e224b3802256a24a55a477cf52205b43f0c @1 (0)
0.001        QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J c9377f3e3c266657bb4844b110f827cc097ba926d4527c53d4252944b79ba947 @0 (0)
(in 10.6s)
✔️ destination operation 
  +0.32873269 QTUM   IN         6bcfefc5f3cc21272bc59cad6e3f1e224b3802256a24a55a477cf52205b43f0c 2024-08-22T05:32
(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.166548 DCR (81ops) (DsgQencDEsb66Nc6oHd8co14kgSWWbRNLMi on 44'/42'/0'/0/40) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.281933 DCR (85ops) (DsXNgbfvkFHhMxkS4wb7eKg9bdcLCr22Bdb on 44'/42'/1'/0/44) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.574843 DCR (71ops) (DsnYwxdSYxev6H6ak6fxydh1n9Lky2F1nss on 44'/42'/2'/0/37) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0.259802 DCR (65ops) (DsoP6nMZ3DMV79TyVCiGNzLyVGSsd4MK19i on 44'/42'/3'/0/30) #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.18ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.166548 DCR (81ops) (DsgQencDEsb66Nc6oHd8co14kgSWWbRNLMi on 44'/42'/0'/0/40) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
4 UTXOs
0.14698      DsfVHL9RUMKurFPc85yPoY4PqGJ832ghKXq (change) ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 @1 (2019)
0.0193511    DshmaaCvE6UsAiRPsx3uid266fERG7TcV72 (change) 15858e0494791e2c7f3f7000defd6220690ef19b238f0dda9971d5926f9906c1 @1 (3996)
0.00011728   DsVpT6cxdv1XfSnY2DDLmxEHYAKqKHKmcvg 88f95e9acf13f6221344ffcdf063add2fcb4c6471c0201d61f3b93729522911a @0 (8047)
0.0001       Dsb8LhZri3fCGuvYamosz7xmeYBNtLdnkrv 93ecac3c071e72a1321ebfef674eada2e51dc7e5dd939888308c5faf9facb928 @0 (2019)

max spendable ~0.166331
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.574843 DCR (71ops) (DsnYwxdSYxev6H6ak6fxydh1n9Lky2F1nss on 44'/42'/2'/0/37) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
✔️ transaction 
SEND 0.0001 DCR
TO DsnYwxdSYxev6H6ak6fxydh1n9Lky2F1nss
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (157ms)
TX INPUTS (2):
0.00011728   DsVpT6cxdv1XfSnY2DDLmxEHYAKqKHKmcvg 88f95e9acf13f6221344ffcdf063add2fcb4c6471c0201d61f3b93729522911a@0
0.0193511    DshmaaCvE6UsAiRPsx3uid266fERG7TcV72 15858e0494791e2c7f3f7000defd6220690ef19b238f0dda9971d5926f9906c1@1
TX OUTPUTS (3):
0.0001       DsnYwxdSYxev6H6ak6fxydh1n9Lky2F1nss @0 (0)
0            @1 (0)
0.0192258    DscrK4zTBLR9qfgoXr6cBR414MtrC7HDAvd (change) @2 (0)
  amount: 0.0001 DCR
  estimated fees: 0.0001426 DCR
  total spent: 0.0002426 DCR
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (7.4s) 
✔️ broadcasted! (214ms) optimistic operation: 
  -0.0002426 DCR     OUT        258cde0a3c561a3ae2945ff2880e6dca9a61ebdd603149bd223451db9fbaea62 2024-08-22T05:31
✔️ operation confirmed (10.3s): 
  -0.0002426 DCR     OUT        258cde0a3c561a3ae2945ff2880e6dca9a61ebdd603149bd223451db9fbaea62 2024-08-22T05:31
✔️ undefined: 0.166306 DCR (82ops) (DsgQencDEsb66Nc6oHd8co14kgSWWbRNLMi on 44'/42'/0'/0/40) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
3 UTXOs
0.14698      DsfVHL9RUMKurFPc85yPoY4PqGJ832ghKXq (change) ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 @1 (2019)
0.0192258    DscrK4zTBLR9qfgoXr6cBR414MtrC7HDAvd (change) 258cde0a3c561a3ae2945ff2880e6dca9a61ebdd603149bd223451db9fbaea62 @2 (0)
0.0001       Dsb8LhZri3fCGuvYamosz7xmeYBNtLdnkrv 93ecac3c071e72a1321ebfef674eada2e51dc7e5dd939888308c5faf9facb928 @0 (2019)
(in 10.3s)
✔️ destination operation 
  +0.0001 DCR        IN         258cde0a3c561a3ae2945ff2880e6dca9a61ebdd603149bd223451db9fbaea62 2024-08-22T05:31
(in 10.3s)

necessary accounts resynced in 0.24ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.281933 DCR (85ops) (DsXNgbfvkFHhMxkS4wb7eKg9bdcLCr22Bdb on 44'/42'/1'/0/44) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
2 UTXOs
0.269312     DsXVJmW4cdCY9dhSCK63eWRNEk3zyJjfSMS (change) 93ecac3c071e72a1321ebfef674eada2e51dc7e5dd939888308c5faf9facb928 @2 (2019)
0.0126211    DsYRDQwvMHJpt36xm5KZ6C6gSDvronbM2es 48f03507e264102076f4f33bef321d5bb55fde6299679ca0ac37c9ab17624d3c @0 (2019)

max spendable ~0.281818
★ using mutation 'optimize-size'
→ TO undefined: 0.259802 DCR (65ops) (DsoP6nMZ3DMV79TyVCiGNzLyVGSsd4MK19i on 44'/42'/3'/0/30) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
✔️ transaction 
SEND 0.24709783 DCR
TO DsoP6nMZ3DMV79TyVCiGNzLyVGSsd4MK19i
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (345ms)
TX INPUTS (1):
0.269312     DsXVJmW4cdCY9dhSCK63eWRNEk3zyJjfSMS 93ecac3c071e72a1321ebfef674eada2e51dc7e5dd939888308c5faf9facb928@2
TX OUTPUTS (2):
0.247097     DsoP6nMZ3DMV79TyVCiGNzLyVGSsd4MK19i @0 (0)
0.0221372    DsTP2f7QS1AFKoRQ6bnmoznKGCx1SoiBdYj (change) @1 (0)
  amount: 0.24709783 DCR
  estimated fees: 0.0000775 DCR
  total spent: 0.24717533 DCR
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (255ms) optimistic operation: 
  -0.24717533 DCR    OUT        bb110fd7efd23efb162a7b255915a93be664b8cabbeab665293bb2287e210c52 2024-08-22T05:31
✔️ operation confirmed (10.3s): 
  -0.24717533 DCR    OUT        bb110fd7efd23efb162a7b255915a93be664b8cabbeab665293bb2287e210c52 2024-08-22T05:31
✔️ undefined: 0.0347583 DCR (86ops) (DsXNgbfvkFHhMxkS4wb7eKg9bdcLCr22Bdb on 44'/42'/1'/0/44) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
2 UTXOs
0.0221372    DsTP2f7QS1AFKoRQ6bnmoznKGCx1SoiBdYj (change) bb110fd7efd23efb162a7b255915a93be664b8cabbeab665293bb2287e210c52 @1 (0)
0.0126211    DsYRDQwvMHJpt36xm5KZ6C6gSDvronbM2es 48f03507e264102076f4f33bef321d5bb55fde6299679ca0ac37c9ab17624d3c @0 (2019)
(in 10.3s)
✔️ destination operation 
  +0.24709783 DCR    IN         bb110fd7efd23efb162a7b255915a93be664b8cabbeab665293bb2287e210c52 2024-08-22T05:31
(in 10.3s)

necessary accounts resynced in 0.14ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.574943 DCR (72ops) (DsgJFumUFGaFd5fog8zgtnJ7EF3EMj95wZc on 44'/42'/2'/0/38) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
2 UTXOs
0.574843     DsgMQU5dRw1r5bKHi4tik3EpushuVcimEt1 ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 @0 (2019)
0.0001       DsnYwxdSYxev6H6ak6fxydh1n9Lky2F1nss 258cde0a3c561a3ae2945ff2880e6dca9a61ebdd603149bd223451db9fbaea62 @0 (0)

max spendable ~0.574778
★ using mutation 'send max'
→ TO undefined: 0.166306 DCR (82ops) (DsgQencDEsb66Nc6oHd8co14kgSWWbRNLMi on 44'/42'/0'/0/40) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
✔️ transaction 
SEND MAX
TO DsgQencDEsb66Nc6oHd8co14kgSWWbRNLMi
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (354ms)
TX INPUTS (1):
0.574843     DsgMQU5dRw1r5bKHi4tik3EpushuVcimEt1 ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04@0
TX OUTPUTS (1):
0.574776     DsgQencDEsb66Nc6oHd8co14kgSWWbRNLMi @0 (0)
  amount: 0.57477634 DCR
  estimated fees: 0.00006696 DCR
  total spent: 0.5748433 DCR
errors: 
warnings: 
✔️ has been signed! (2277ms) 
✔️ broadcasted! (249ms) optimistic operation: 
  -0.00006696 DCR    OUT        ac35d256a5d97bfc214a48a7d889522b0053b553074cf2ac5ff56d66f6df00fc 2024-08-22T05:31
✔️ operation confirmed (10.3s): 
  -0.5748433 DCR     OUT        ac35d256a5d97bfc214a48a7d889522b0053b553074cf2ac5ff56d66f6df00fc 2024-08-22T05:31
✔️ undefined: 0.0001 DCR (73ops) (DsgJFumUFGaFd5fog8zgtnJ7EF3EMj95wZc on 44'/42'/2'/0/38) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
1 UTXOs
0.0001       DsnYwxdSYxev6H6ak6fxydh1n9Lky2F1nss 258cde0a3c561a3ae2945ff2880e6dca9a61ebdd603149bd223451db9fbaea62 @0 (0)
(in 10.3s)
✔️ destination operation 
  +0.57477634 DCR    IN         ac35d256a5d97bfc214a48a7d889522b0053b553074cf2ac5ff56d66f6df00fc 2024-08-22T05:31
(in 10.6s)

necessary accounts resynced in 0.13ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.5069 DCR (66ops) (DsbCMowdHCyk4TVEHNv3xpAK73nZX8ZMKex on 44'/42'/3'/0/31) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
3 UTXOs
0.248194     DsZAosvCi8UhMSh2ubMaYrBbnKksEF1Fr6X bdb5cc8e91c25f8415c6023a514a799d70b6d37080c9d080350754dd85df9c49 @0 (2019)
0.247097     DsoP6nMZ3DMV79TyVCiGNzLyVGSsd4MK19i bb110fd7efd23efb162a7b255915a93be664b8cabbeab665293bb2287e210c52 @0 (0)
0.0116078    DsmwpU6m6yATkj6w2vmUcmVcVVEjEQzeM2u (change) 48f03507e264102076f4f33bef321d5bb55fde6299679ca0ac37c9ab17624d3c @1 (2019)

max spendable ~0.259686
★ using mutation 'move ~50%'
→ TO undefined: 0.741082 DCR (83ops) (DsmXfFW98md7morNWBHYFebRoTeFJuRgG1t on 44'/42'/0'/0/41) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
✔️ transaction 
SEND 0.13005165 DCR
TO DsmXfFW98md7morNWBHYFebRoTeFJuRgG1t
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (254ms)
TX INPUTS (2):
0.0116078    DsmwpU6m6yATkj6w2vmUcmVcVVEjEQzeM2u 48f03507e264102076f4f33bef321d5bb55fde6299679ca0ac37c9ab17624d3c@1
0.248194     DsZAosvCi8UhMSh2ubMaYrBbnKksEF1Fr6X bdb5cc8e91c25f8415c6023a514a799d70b6d37080c9d080350754dd85df9c49@0
TX OUTPUTS (2):
0.130051     DsmXfFW98md7morNWBHYFebRoTeFJuRgG1t @0 (0)
0.129619     DskN5MKfkN1QSpCo7vX5KbcwLhQ2ZLNRV1h (change) @1 (0)
  amount: 0.13005165 DCR
  estimated fees: 0.00013082 DCR
  total spent: 0.13018247 DCR
errors: 
warnings: 
✔️ has been signed! (2860ms) 
✔️ broadcasted! (249ms) optimistic operation: 
  -0.13018247 DCR    OUT        6bf652299ad196ac6571f066e70d8f465048138126f9ba14c0030c0ff84c51cc 2024-08-22T05:32
✔️ operation confirmed (10.3s): 
  -0.13018247 DCR    OUT        6bf652299ad196ac6571f066e70d8f465048138126f9ba14c0030c0ff84c51cc 2024-08-22T05:32
✔️ undefined: 0.376717 DCR (67ops) (DsbCMowdHCyk4TVEHNv3xpAK73nZX8ZMKex on 44'/42'/3'/0/31) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
2 UTXOs
0.247097     DsoP6nMZ3DMV79TyVCiGNzLyVGSsd4MK19i bb110fd7efd23efb162a7b255915a93be664b8cabbeab665293bb2287e210c52 @0 (0)
0.129619     DskN5MKfkN1QSpCo7vX5KbcwLhQ2ZLNRV1h (change) 6bf652299ad196ac6571f066e70d8f465048138126f9ba14c0030c0ff84c51cc @1 (0)
(in 10.3s)
✔️ destination operation 
  +0.13005165 DCR    IN         6bf652299ad196ac6571f066e70d8f465048138126f9ba14c0030c0ff84c51cc 2024-08-22T05:32
(in 10.5s)


Spec cardano (7)

Spec cardano found 7 Cardano accounts. Will use CardanoADA 6.1.2 on nanoSP 1.1.1
undefined: 11.4527 ADA (31ops) (addr1q998ujzwnnmsp457c566pe7m26hz3dx68rxd0zjfm96g6ahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq6v0w8v on 1852'/1815'/0'/0/10) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano
undefined: 0 ADA (16ops) (addr1q9vpcmtng8xftxjnv6gs6qaejfxv8zqsuylnk8frwlycfh5frskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqcznae7 on 1852'/1815'/1'/0/3) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
undefined: 5.7234 ADA (27ops) (addr1qy6uye7639823rz4frqzw2jvtagdxvgkau9lmuffy66rcnxtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qg82jsz on 1852'/1815'/2'/0/11) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
undefined: 0 ADA (10ops) (addr1qyr8pgjxt8dspu7yhk8wfa5pz7g83cawgc29l08f9a056em39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqcl4wuz on 1852'/1815'/3'/0/3) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
undefined: 47.1669 ADA (10ops) (addr1q8jpkrreuh29tzkg83vz9anzew9nhce52x4dkwl3ed6jmrmnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8srk7x0s on 1852'/1815'/4'/0/3) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano
undefined: 31.5994 ADA (14ops) (addr1qx3g49fdnmh20r9er454frtsdzd56q58nr2f9f3p8auct9gyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq8m32rm on 1852'/1815'/5'/0/4) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano
undefined: 0 ADA (0ops) (addr1q9nue3h5y9ct7j04yzgp828z80n9tvdlmytha0hq6klu9zj5jsy50zjdsvtn930t9rspyvwfr9e4kkagmggflzec8cjq7xqj36 on 1852'/1815'/6'/0/0) cardano#6 js:2:cardano:e0576116d690cadac40fa0c3265e4efceaca261b9ef737f32d35629c299a0147053d9d5ace97f7a602a51e4fe0a3dfb95f88dfe82677f5b0c52c2eb26e1ac87e:cardano
necessary accounts resynced in 0.08ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 11.4527 ADA (31ops) (addr1q998ujzwnnmsp457c566pe7m26hz3dx68rxd0zjfm96g6ahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq6v0w8v on 1852'/1815'/0'/0/10) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano (! sum of ops -0.688192 ADA)
max spendable ~11.2873
★ using mutation 'move ~50%'
→ TO undefined: 0 ADA (10ops) (addr1qyr8pgjxt8dspu7yhk8wfa5pz7g83cawgc29l08f9a056em39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqcl4wuz on 1852'/1815'/3'/0/3) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
✔️ transaction 
  SEND  5.726354 ADA
TO addr1qyr8pgjxt8dspu7yhk8wfa5pz7g83cawgc29l08f9a056em39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqcl4wuz
STATUS (34ms)
  amount: 5.726354 ADA
  estimated fees: 0.171089 ADA
  total spent: 5.897443 ADA
errors: 
warnings: 
✔️ has been signed! (9.9s) 
✔️ broadcasted! (286ms) optimistic operation: 
  -5.897443 ADA      OUT        41f43621ab23a4d861fc028f5a01e866ed99fe3155ce444591a0b12e21bfab41 2024-08-22T05:32
✔️ operation confirmed (1min 41s): 
  -5.897443 ADA      OUT        41f43621ab23a4d861fc028f5a01e866ed99fe3155ce444591a0b12e21bfab41 2024-08-22T05:32
✔️ undefined: 5.55526 ADA (32ops) (addr1q998ujzwnnmsp457c566pe7m26hz3dx68rxd0zjfm96g6ahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq6v0w8v on 1852'/1815'/0'/0/10) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano (! sum of ops -6.585635 ADA)(in 1min 41s)
✔️ destination operation 
  +5.726354 ADA      IN         41f43621ab23a4d861fc028f5a01e866ed99fe3155ce444591a0b12e21bfab41 2024-08-22T05:32
(in 10.7s)

necessary accounts resynced in 0.14ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 5.7234 ADA (27ops) (addr1qy6uye7639823rz4frqzw2jvtagdxvgkau9lmuffy66rcnxtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qg82jsz on 1852'/1815'/2'/0/11) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano (! sum of ops 1.061356 ADA)
max spendable ~5.55803
★ using mutation 'delegate to pool'
✔️ transaction 
  DELEGATE 
STATUS (31ms)
  amount: 0 ADA
  estimated fees: 0.174213 ADA
  total spent: 0.174213 ADA
errors: 
warnings: 
✔️ has been signed! (15.7s) 
✔️ broadcasted! (270ms) optimistic operation: 
  -2.174213 ADA      DELEGATE   387228bedcdc8f2da19ed9d5a4d120088e07f8350bcb6b62136d4d57c5214252 2024-08-22T05:34
✔️ operation confirmed (30.7s): 
  -2.174213 ADA      DELEGATE   387228bedcdc8f2da19ed9d5a4d120088e07f8350bcb6b62136d4d57c5214252 2024-08-22T05:34
✔️ undefined: 3.54919 ADA (28ops) (addr1qy6uye7639823rz4frqzw2jvtagdxvgkau9lmuffy66rcnxtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qg82jsz on 1852'/1815'/2'/0/11) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano (! sum of ops -1.112857 ADA)(in 30.7s)

necessary accounts resynced in 0.15ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 5.72635 ADA (11ops) (addr1q97syxk0r9wtma8hjg392nd9jakkm5dztjs6df2ehvqlt9m39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqcyyzkv on 1852'/1815'/3'/0/4) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano (! sum of ops 3.726354 ADA)
max spendable ~5.56098
★ using mutation 'send max'
→ TO undefined: 5.55526 ADA (32ops) (addr1q998ujzwnnmsp457c566pe7m26hz3dx68rxd0zjfm96g6ahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq6v0w8v on 1852'/1815'/0'/0/10) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano
✔️ transaction 
  SEND MAX
TO addr1q998ujzwnnmsp457c566pe7m26hz3dx68rxd0zjfm96g6ahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq6v0w8v
STATUS (27ms)
  amount: 5.560985 ADA
  estimated fees: 0.165369 ADA
  total spent: 5.726354 ADA
errors: 
warnings: 
✔️ has been signed! (5.2s) 
✔️ broadcasted! (273ms) optimistic operation: 
  -5.726354 ADA      OUT        c88a8d8a8a087e83e2b6c641da70013d377bd0292b89faa0ce2dade773536bf4 2024-08-22T05:34
✔️ operation confirmed (50.7s): 
  -5.726354 ADA      OUT        c88a8d8a8a087e83e2b6c641da70013d377bd0292b89faa0ce2dade773536bf4 2024-08-22T05:35
✔️ undefined: 0 ADA (12ops) (addr1q97syxk0r9wtma8hjg392nd9jakkm5dztjs6df2ehvqlt9m39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqcyyzkv on 1852'/1815'/3'/0/4) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano (! sum of ops -2 ADA)(in 50.7s)
✔️ destination operation 
  +5.560985 ADA      IN         c88a8d8a8a087e83e2b6c641da70013d377bd0292b89faa0ce2dade773536bf4 2024-08-22T05:35
(in 11s)

necessary accounts resynced in 0.14ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 31.5994 ADA (14ops) (addr1qx3g49fdnmh20r9er454frtsdzd56q58nr2f9f3p8auct9gyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq8m32rm on 1852'/1815'/5'/0/4) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano (! sum of ops 31.573035 ADA)
max spendable ~31.416
★ using mutation 'redelegate to pool'
✔️ transaction 
  DELEGATE 
STATUS (40ms)
  amount: 0 ADA
  estimated fees: 0.174301 ADA
  total spent: 0.174301 ADA
errors: 
warnings: 
✔️ has been signed! (21.9s) 
✔️ broadcasted! (305ms) optimistic operation: 
  -0.174301 ADA      DELEGATE   9170bc0dbb5dd65e210748b14242e7a0b1fec09bf18073f1f05d63697bd89add 2024-08-22T05:36
✔️ operation confirmed (1min 41s): 
  -0.174301 ADA      DELEGATE   9170bc0dbb5dd65e210748b14242e7a0b1fec09bf18073f1f05d63697bd89add 2024-08-22T05:36
✔️ undefined: 31.4251 ADA (15ops) (addr1qx3g49fdnmh20r9er454frtsdzd56q58nr2f9f3p8auct9gyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq8m32rm on 1852'/1815'/5'/0/4) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano (! sum of ops 31.398734 ADA)(in 1min 41s)


Spec Avalanche C-Chain (10)

Spec Avalanche C-Chain found 10 Avalanche C-Chain accounts (preload: 78ms). 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.14ms
▬ 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.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND MAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (935ms)
  amount: 0.197134610613255675 AVAX
  estimated fees: 0.00055965 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 61s – ends at 2024-08-22T05:42:31.012Z)
necessary accounts resynced in 1.01ms
▬ 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.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.098559662178169838 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (822ms)
  amount: 0.098559662178169838 AVAX
  estimated fees: 0.00055965 AVAX
  total spent: 0.099119312178169838 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 60.9s – ends at 2024-08-22T05:42:31.016Z)
necessary accounts resynced in 0.41ms
▬ 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.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (848ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.00055965 AVAX
  total spent: 0.201416809654426997 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 60.9s – ends at 2024-08-22T05:42:31.027Z)

Spec Binance Smart Chain (10)

Spec Binance Smart Chain found 10 Binance Smart Chain accounts (preload: 61ms). Will use BinanceSmartChain 1.11.2 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 0.20ms
▬ BinanceSmartChain 1.11.2 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.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (819ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.000042146715366 BNB
  total spent: 0.027574978263246244 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.9s – ends at 2024-08-22T05:42:31.030Z)
necessary accounts resynced in 0.14ms
▬ BinanceSmartChain 1.11.2 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.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND  0.012144467609662234 BNB
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (802ms)
  amount: 0.012144467609662234 BNB
  estimated fees: 0.000042146715366 BNB
  total spent: 0.012186614325028234 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.9s – ends at 2024-08-22T05:42:31.037Z)
necessary accounts resynced in 0.19ms
▬ BinanceSmartChain 1.11.2 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 (1006ms)
  amount: 0.024183788503916467 BNB
  estimated fees: 0.000042146715366 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 61.1s – ends at 2024-08-22T05:42:31.045Z)

Spec Cronos (6)

Spec Cronos found 6 Cronos accounts (preload: 32ms). 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: 82ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 13.4905 FTM (71ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00012988 FTM (80ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 5.78151 FTM (80ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 2.89081 FTM (74ops) (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.09ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 13.4905 FTM (71ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~13.4894
★ using mutation 'send max'
→ TO undefined: 0.00012988 FTM (80ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND MAX
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (342ms)
  amount: 13.490104676368589018 FTM
  estimated fees: 0.000410515753767 FTM
  total spent: 13.490515192122356018 FTM
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (124ms) optimistic operation: 
  -13.490515192122356018 FTM OUT        0x92ee92fa31dc89536c11e1da6f5aae4825f5ddd8de97a2a582505e69b667ea2d 2024-08-22T05:32
✔️ operation confirmed (20.8s): 
  -13.490312104440440018 FTM OUT        0x92ee92fa31dc89536c11e1da6f5aae4825f5ddd8de97a2a582505e69b667ea2d 2024-08-22T05:32
✔️ undefined: 0.00020308 FTM (72ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:(in 20.8s)
✔️ destination operation 
  +13.490104676368589018 FTM IN         0x92ee92fa31dc89536c11e1da6f5aae4825f5ddd8de97a2a582505e69b667ea2d 2024-08-22T05:32
(in 15.9s)

necessary accounts resynced in 0.70ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 13.4902 FTM (81ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~13.4891
★ using mutation 'move 50%'
→ TO undefined: 2.89081 FTM (74ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  6.744599258048459009 FTM
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (236ms)
  amount: 6.744599258048459009 FTM
  estimated fees: 0.000410500725264 FTM
  total spent: 6.745009758773723009 FTM
errors: 
warnings: 
✔️ has been signed! (2858ms) 
✔️ broadcasted! (88ms) optimistic operation: 
  -6.745009758773723009 FTM OUT        0xa323fc77b1e42deab3005ac8b11dcd7d30d8bf44894e695ec34b5ded5054112e 2024-08-22T05:32
✔️ operation confirmed (20.9s): 
  -6.744806671091807009 FTM OUT        0xa323fc77b1e42deab3005ac8b11dcd7d30d8bf44894e695ec34b5ded5054112e 2024-08-22T05:33
✔️ undefined: 6.74542 FTM (82ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:(in 20.9s)
✔️ destination operation 
  +6.744599258048459009 FTM IN         0xa323fc77b1e42deab3005ac8b11dcd7d30d8bf44894e695ec34b5ded5054112e 2024-08-22T05:33
(in 20.8s)

necessary accounts resynced in 0.22ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 5.78151 FTM (80ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~5.78048
★ using mutation 'move 50%'
→ TO undefined: 0.00020308 FTM (72ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  2.890240856064013531 FTM
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (194ms)
  amount: 2.890240856064013531 FTM
  estimated fees: 0.000410515144494 FTM
  total spent: 2.890651371208507531 FTM
errors: 
warnings: 
✔️ has been signed! (2987ms) 
✔️ broadcasted! (110ms) optimistic operation: 
  -2.890651371208507531 FTM OUT        0x61dad32546d013aeb411bbd61503620026faece8ff57c51bb1e0d3894407a23b 2024-08-22T05:33
✔️ operation confirmed (15.8s): 
  -2.890448283526591531 FTM OUT        0x61dad32546d013aeb411bbd61503620026faece8ff57c51bb1e0d3894407a23b 2024-08-22T05:33
✔️ undefined: 2.89106 FTM (81ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:(in 15.8s)
✔️ destination operation 
  +2.890240856064013531 FTM IN         0x61dad32546d013aeb411bbd61503620026faece8ff57c51bb1e0d3894407a23b 2024-08-22T05:33
(in 20.9s)


Spec Boba (failed)

Spec Boba found 1 Boba accounts (preload: 34ms). 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: 59ms). 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.0136614 ETH (74ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00536201 ETH (54ops) (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.09ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0136614 ETH (74ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops 0.013583458141704487 ETH)
max spendable ~0.0136606
★ using mutation 'send max'
→ TO undefined: 0.00536201 ETH (54ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND MAX
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (397ms)
  amount: 0.013661133392910487 ETH
  estimated fees: 0.0000003171 ETH
  total spent: 0.013661450492910487 ETH
errors: 
warnings: 
✔️ has been signed! (2966ms) 
✔️ broadcasted! (141ms) optimistic operation: 
  -0.013661450492910487 ETH OUT        0xd3d23a750791f19276c32928a5a23c380d9cba5f4562e84ee41646ed738b4957 2024-08-22T05:32
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "104048448000"
(totally spent 10min 4s – ends at 2024-08-22T05:42:31.096Z)

Spec Polkadot (failed)


Spec Tron (9)

Spec Tron found 9 Tron accounts (preload: 43.3s). Will use Tron 0.5.0 on nanoSP 1.1.1
undefined: 180.079 TRX (91ops) (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: 174 TRX (86ops) (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: 22.2765 TRX (51ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 0.000007 TRX (24ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 160.002 TRX (22ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 175.251 TRX (10ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 0 TRX (0ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
necessary accounts resynced in 0.17ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 180.079 TRX (91ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
max spendable ~178.979
★ using mutation 'send max to another account'
→ TO undefined: 174 TRX (86ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
✔️ transaction 
SEND MAX 
TO TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT
STATUS (990ms)
  amount: 180.07942 TRX
  estimated fees: 0 TRX
  total spent: 180.07942 TRX
errors: 
warnings: 
✔️ has been signed! (2496ms) 
✔️ broadcasted! (121ms) optimistic operation: 
  -180.07942 TRX     OUT        8873fca6c286276d7e1ab3618834352ec6c81dbd782b6a7f7f27965309e49d32 2024-08-22T05:34
✔️ operation confirmed (11.6s): 
  -180.07942 TRX     OUT        8873fca6c286276d7e1ab3618834352ec6c81dbd782b6a7f7f27965309e49d32 2024-08-22T05:34
✔️ undefined: 0 TRX (92ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:(in 11.6s)
✔️ destination operation 
  +180.07942 TRX     IN         8873fca6c286276d7e1ab3618834352ec6c81dbd782b6a7f7f27965309e49d32 2024-08-22T05:34
(in 11.6s)

necessary accounts resynced in 0.16ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 354.079 TRX (88ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
max spendable ~178.979
★ using mutation 'move 50% to another account'
→ TO undefined: 0.000007 TRX (24ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
✔️ transaction 
SEND  89.489711 TRX 
TO TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H
STATUS (1060ms)
  amount: 89.489711 TRX
  estimated fees: 0 TRX
  total spent: 89.489711 TRX
errors: 
warnings: 
✔️ has been signed! (2192ms) 
✔️ broadcasted! (130ms) optimistic operation: 
  -89.489711 TRX     OUT        3fa0f11983e16080c3f5fcb5c11631c0280345d4cba9836f95927db3ea12cd6d 2024-08-22T05:34
✔️ operation confirmed (11.4s): 
  -89.489711 TRX     OUT        3fa0f11983e16080c3f5fcb5c11631c0280345d4cba9836f95927db3ea12cd6d 2024-08-22T05:34
✔️ undefined: 264.589 TRX (90ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:(in 11.4s)
✔️ destination operation 
  +89.489711 TRX     IN         3fa0f11983e16080c3f5fcb5c11631c0280345d4cba9836f95927db3ea12cd6d 2024-08-22T05:34
(in 11.3s)

necessary accounts resynced in 0.15ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 22.2765 TRX (51ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
max spendable ~21.1765
★ using mutation 'move 50% to another account'
→ TO undefined: 175.251 TRX (10ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
✔️ transaction 
SEND  10.588263 TRX 
TO TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1
STATUS (1016ms)
  amount: 10.588263 TRX
  estimated fees: 0 TRX
  total spent: 10.588263 TRX
errors: 
warnings: 
✔️ has been signed! (2652ms) 
✔️ broadcasted! (149ms) optimistic operation: 
  -10.588263 TRX     OUT        05cf629276fc931d5037751cb15f3b2c596fa9ff6c20fa739d6d458cf107a11b 2024-08-22T05:34
✔️ operation confirmed (11.3s): 
  -10.588263 TRX     OUT        05cf629276fc931d5037751cb15f3b2c596fa9ff6c20fa739d6d458cf107a11b 2024-08-22T05:35
✔️ undefined: 11.6882 TRX (52ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:(in 11.3s)
✔️ destination operation 
  +10.588263 TRX     IN         05cf629276fc931d5037751cb15f3b2c596fa9ff6c20fa739d6d458cf107a11b 2024-08-22T05:35
(in 11.3s)


Details of the 36 uncovered mutations

Spec axelar (2)

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

Spec cosmos (1)

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

Spec secret_network (6)

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

Spec Filecoin (5)

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

Spec Qtum (1)

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

Spec Decred (1)

  • send 1 utxo: balance is too low (1)

Spec cardano (2)

  • move ~10% token: balance is too low (2), No token account with balance (1)
  • undelegate: balance is too low (2), account should already be delegated to undelegate (1)

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...): no erc20 account (2), fantom balance is too low (1)

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)

  • move 50%: polygon_zk_evm balance is too low (4)

Spec Polkadot (7)

  • send 50%~:
  • send max:
  • bond - bondExtra:
  • unbond:
  • rebond:
  • nominate:
  • withdraw:
Portfolio ($375.66) – Details of the 16 currencies
Spec (accounts) State Remaining Runs (est) funds?
axelar (18) 163 ops , 16.8221 AXL ($9.73) 👍 178 axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g
cosmos (15) 344 ops (+9), 9.31872 ATOM ($44.36) 👍 149 cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf
secret_network (0) 0 ops , 🤷‍♂️ ``
Filecoin (0) 0 ops , 🤷‍♂️ ($0.00) ``
Qtum (6) 373 ops (+8), 2.52373 QTUM ($6.26) 👍 197 MW7geTsz4hDQb38ZFAM8vcZVKHydzVWRjc
Decred (5) 310 ops (+8), 1.28312 DCR ($14.19) 💪 999+ DscpdewrnJJYEWxG7UXRkxRVC7zU6tdKsYw
cardano (7) 114 ops (+6), 95.9181 ADA ($34.13) 👍 82 addr1qx7wsgcsg0t5lac6tty6j6v89can4tfn26nklmkuw5kf6ehgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq2tfxdt
Avalanche C-Chain (10) 250 ops , 2.82586 AVAX ($65.98) 💪 553 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Binance Smart Chain (10) 799 ops , 0.118141 BNB ($67.34) 👍 84 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Cronos (6) 625 ops , 5.08708 CRO ($0.45) ⚠️ 11 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Fantom (6) 345 ops (+6), 49.0778 FTM ($22.72) 💪 999+ 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Boba (1) 0 ops , 0 ETH ($0.00) 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Telos (0) 0 ops , 🤷‍♂️ ``
Polygon zkEVM (5) 286 ops (+2), 0.0190238 ETH ($0.00) 👍 262 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Polkadot (0) 0 ops , 🤷‍♂️ ``
Tron (9) 425 ops (+8), 538.3 TRX ($110.50) 💪 999+ TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
undefined: 0 AXL (4ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 0.022348 AXL (13ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0.052087 AXL (15ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.009551 AXL (9ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0.186888 AXL (10ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 0.501916 AXL (23ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0 AXL (13ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.000033 AXL (13ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0.467664 AXL (9ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.948829 AXL (14ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.859483 AXL (4ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 1.11475 AXL (16ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 1.48369 AXL (6ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 7.36976 AXL (9ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 2.58485 AXL (2ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 1.119 AXL (2ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
undefined: 0.125864 AXL (1ops) (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 (43ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (35ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0.287474 ATOM (35ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.005573 ATOM (55ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.002476 ATOM (19ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.083823 ATOM (53ops) (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: 1.3294 ATOM (33ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0.489393 ATOM (17ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 2.08172 ATOM (15ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.47497 ATOM (3ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.19482 ATOM (9ops) (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.769699 ATOM (3ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 0 ATOM (0ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
undefined [segwit]: 0.826939 QTUM (98ops) (MW7geTsz4hDQb38ZFAM8vcZVKHydzVWRjc on 49'/88'/0'/0/49) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0 QTUM (92ops) (MVFdmkS3Br3rTTxaoQLmpFuMuFj8xVvSv9 on 49'/88'/1'/0/46) 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]: 1.39013 QTUM (99ops) (QeZht9sBYNHYZ3qc87MxAAbmpyKWQyrRuV on 44'/88'/0'/0/52) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.297923 QTUM (84ops) (QWehYEqu17M3CMCcWGdzP54XrkpWRWEppE on 44'/88'/1'/0/39) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
undefined: 0.871134 DCR (84ops) (DscpdewrnJJYEWxG7UXRkxRVC7zU6tdKsYw on 44'/42'/0'/0/42) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.0347583 DCR (86ops) (DsXNgbfvkFHhMxkS4wb7eKg9bdcLCr22Bdb on 44'/42'/1'/0/44) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.0001 DCR (73ops) (DsgJFumUFGaFd5fog8zgtnJ7EF3EMj95wZc on 44'/42'/2'/0/38) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0.376717 DCR (67ops) (DsbCMowdHCyk4TVEHNv3xpAK73nZX8ZMKex on 44'/42'/3'/0/31) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
undefined: 0 DCR (0ops) (DskCZ4d3mZkXwLxAEjx2sEM121SFimdgvSv on 44'/42'/4'/0/0) #4 js:2:decred:dpubZEswmUQs2uoMffXvbjYzmFKAA8qiVoRpBd8QwvJKFgG4HaLsEf3yq9JdFJHzvmMqTKUybT8NPDs16zti7N3ehBSQmxZQB76h8MsWKLZDFAX:
undefined: 11.1162 ADA (33ops) (addr1qx7wsgcsg0t5lac6tty6j6v89can4tfn26nklmkuw5kf6ehgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq2tfxdt on 1852'/1815'/0'/0/11) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano
undefined: 0 ADA (16ops) (addr1q9vpcmtng8xftxjnv6gs6qaejfxv8zqsuylnk8frwlycfh5frskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqcznae7 on 1852'/1815'/1'/0/3) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
undefined: 3.54919 ADA (28ops) (addr1qy6uye7639823rz4frqzw2jvtagdxvgkau9lmuffy66rcnxtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qg82jsz on 1852'/1815'/2'/0/11) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
undefined: 0 ADA (12ops) (addr1q97syxk0r9wtma8hjg392nd9jakkm5dztjs6df2ehvqlt9m39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqcyyzkv on 1852'/1815'/3'/0/4) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
undefined: 47.1669 ADA (10ops) (addr1q8jpkrreuh29tzkg83vz9anzew9nhce52x4dkwl3ed6jmrmnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8srk7x0s on 1852'/1815'/4'/0/3) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano
undefined: 31.4251 ADA (15ops) (addr1qx3g49fdnmh20r9er454frtsdzd56q58nr2f9f3p8auct9gyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq8m32rm on 1852'/1815'/5'/0/4) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano
undefined: 0 ADA (0ops) (addr1q9nue3h5y9ct7j04yzgp828z80n9tvdlmytha0hq6klu9zj5jsy50zjdsvtn930t9rspyvwfr9e4kkagmggflzec8cjq7xqj36 on 1852'/1815'/6'/0/0) cardano#6 js:2:cardano:e0576116d690cadac40fa0c3265e4efceaca261b9ef737f32d35629c299a0147053d9d5ace97f7a602a51e4fe0a3dfb95f88dfe82677f5b0c52c2eb26e1ac87e:cardano
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: 2.89044 FTM (73ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 6.74542 FTM (82ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 2.89106 FTM (81ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 9.63541 FTM (75ops) (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:
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.00000013 ETH (78ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.0190231 ETH (55ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.0000001 ETH (75ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0 ETH (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:polygon_zk_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 TRX (92ops) (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: 264.589 TRX (90ops) (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: 11.6882 TRX (52ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 89.4897 TRX (25ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 160.002 TRX (22ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 185.839 TRX (11ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 0 TRX (0ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
Performance ⏲ 11min 51s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 44.4s 6min 41s 5.9s 22.2s 2min 24s 7s 8min 44s 3min 50s
axelar (17) 251ms 22.3s 19ms 2625ms 20.3s 2770ms 6ms N/A
cosmos (14) 350ms 25.6s 67ms 8.3s 19.5s 912ms 66.2s 32.9s
secret_network (0) N/A N/A N/A N/A N/A N/A N/A N/A
Filecoin (0) N/A N/A N/A N/A N/A N/A N/A N/A
Qtum (4) 0.13ms 13.4s 10ms 628ms 16.5s 402ms 41.9s 41.9s
Decred (4) 0.16ms 10.7s 0.88ms 1110ms 15.8s 967ms 41.2s 41.7s
cardano (6) 1.82ms 64.8s 23ms 132ms 52.8s 1134ms 4min 43s 21.7s
Avalanche C-Chain (9) 78ms 12.5s 5.00ms 2605ms N/A N/A N/A N/A
Binance Smart Chain (9) 61ms 13.8s 6ms 2626ms N/A N/A N/A N/A
Cronos (5) 32ms 1min 43s 1.24ms N/A N/A N/A N/A N/A
Fantom (5) 82ms 86.3s 4.95ms 772ms 9s 322ms 57.5s 57.6s
Boba (0) 34ms 2206ms N/A N/A N/A N/A N/A N/A
Telos (0) 60ms N/A N/A N/A N/A N/A N/A N/A
Polygon zkEVM (4) 59ms 9.5s 5.8s 397ms 2966ms 141ms N/A N/A
Polkadot (0) N/A N/A N/A N/A N/A N/A N/A N/A
Tron (8) 43.3s 36.9s 9ms 3.1s 7.3s 400ms 34.4s 34.1s

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

Please sign in to comment.