Skip to content

Commit

Permalink
feat: Scan & device accounts - add account v2 (#8802)
Browse files Browse the repository at this point in the history
* feat: Scan & device accounts - add account v2
  • Loading branch information
themooneer authored Jan 15, 2025
1 parent 187d8c1 commit b447baf
Show file tree
Hide file tree
Showing 35 changed files with 1,387 additions and 664 deletions.
5 changes: 5 additions & 0 deletions .changeset/grumpy-rockets-pump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": minor
---

Add account v2 : Device selection & Scan account step
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { CryptoCurrency } from "@ledgerhq/types-cryptoassets";
import { Account } from "@ledgerhq/types-live";
import { ScreenName } from "~/const";
import { NavigatorName, ScreenName } from "~/const";

export type AccountSettingsNavigatorParamList = {
[ScreenName.AccountSettingsMain]: {
Expand All @@ -26,4 +26,12 @@ export type AccountSettingsNavigatorParamList = {
currency: CryptoCurrency;
};
[ScreenName.Accounts]: { currency?: string; search?: string } | undefined;

[NavigatorName.AccountSettings]: {
screen: string;
params: {
account?: Account;
onAccountNameChange?: (name: string, changedAccount: Account) => void;
};
};
};
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const Item = ({ device, onPress }: Props) => {

const wording = wired ? "usb" : available ? "available" : "unavailable";
const color = wording === "unavailable" ? "neutral.c60" : "primary.c80";
const testID = `device-item-${device.deviceId}`;

const onItemContextPress = useCallback(() => {
setIsRemoveDeviceMenuOpen(true);
Expand All @@ -42,7 +43,8 @@ const Item = ({ device, onPress }: Props) => {
return (
<Touchable
onPress={() => onPress(device)}
touchableTestID={"device-item-" + device.deviceId}
touchableTestID={testID}
testID={testID}
accessibilityRole="button"
>
<Flex
Expand Down
205 changes: 155 additions & 50 deletions apps/ledger-live-mobile/src/components/SelectableAccountsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ import { FlexBoxProps } from "@ledgerhq/native-ui/components/Layout/Flex/index";
import { Flex, Text } from "@ledgerhq/native-ui";
import Swipeable from "react-native-gesture-handler/Swipeable";

import { StackNavigationProp } from "@react-navigation/stack";
import { ScreenName } from "~/const";
import { NavigatorName, ScreenName } from "~/const";
import { track } from "~/analytics";
import AccountCard from "./AccountCard";
import CheckBox from "./CheckBox";
Expand All @@ -27,7 +26,11 @@ import Button from "./Button";
import TouchHintCircle from "./TouchHintCircle";
import Touchable from "./Touchable";
import { AccountSettingsNavigatorParamList } from "./RootNavigator/types/AccountSettingsNavigator";
import { AddAccountsNavigatorParamList } from "./RootNavigator/types/AddAccountsNavigator";
import AccountItem from "LLM/features/Accounts/components/AccountsListView/components/AccountItem";
import { useFeature } from "@ledgerhq/live-common/featureFlags/index";
import { BaseComposite, StackNavigatorProps } from "./RootNavigator/types/helpers";

const ANIMATION_DURATION = 200;

const selectAllHitSlop = {
top: 16,
Expand All @@ -53,6 +56,10 @@ type Props = FlexBoxProps & {
useFullBalance?: boolean;
};

type NavigationProps = BaseComposite<
StackNavigatorProps<AccountSettingsNavigatorParamList, ScreenName.EditAccountName>
>["navigation"];

const SelectableAccountsList = ({
accounts,
onPressAccount,
Expand All @@ -69,10 +76,7 @@ const SelectableAccountsList = ({
useFullBalance,
...props
}: Props) => {
const navigation =
useNavigation<
StackNavigationProp<AccountSettingsNavigatorParamList | AddAccountsNavigatorParamList>
>();
const navigation = useNavigation<NavigationProps>();

const onSelectAll = useCallback(() => {
track("SelectAllAccounts");
Expand All @@ -85,6 +89,85 @@ const SelectableAccountsList = ({
}, [accounts, onUnselectAllProp]);

const areAllSelected = accounts.every(a => selectedIds.indexOf(a.id) > -1);
const translateY = useRef(new Animated.Value(50)).current;
const opacity = useRef(new Animated.Value(0)).current;
const scale = useRef(new Animated.Value(0.8)).current;
const llmNetworkBasedAddAccountFlow = useFeature("llmNetworkBasedAddAccountFlow");

useEffect(() => {
if (!llmNetworkBasedAddAccountFlow?.enabled) return;
Animated.parallel([
Animated.timing(translateY, {
toValue: 0,
duration: ANIMATION_DURATION,
useNativeDriver: true,
}),
Animated.timing(opacity, {
toValue: 1,
duration: ANIMATION_DURATION,
useNativeDriver: true,
}),
Animated.timing(scale, {
toValue: 1,
duration: ANIMATION_DURATION,
useNativeDriver: true,
}),
]).start();
}, [translateY, opacity, scale, llmNetworkBasedAddAccountFlow?.enabled]);

const animatedSelectableAccount = useMemo(
() => ({
transform: [{ translateY }, { scale }],
opacity,
}),
[translateY, scale, opacity],
);

const renderSelectableAccount = useCallback(
({ item, index }: { index: number; item: Account }) =>
llmNetworkBasedAddAccountFlow?.enabled ? (
<Animated.View style={[animatedSelectableAccount]}>
<SelectableAccount
navigation={navigation}
showHint={!index && showHint}
rowIndex={index}
listIndex={listIndex}
account={item}
onAccountNameChange={onAccountNameChange}
isSelected={forceSelected || selectedIds.indexOf(item.id) > -1}
isDisabled={isDisabled}
onPress={onPressAccount}
useFullBalance={useFullBalance}
/>
</Animated.View>
) : (
<SelectableAccount
navigation={navigation}
showHint={!index && showHint}
rowIndex={index}
listIndex={listIndex}
account={item}
onAccountNameChange={onAccountNameChange}
isSelected={forceSelected || selectedIds.indexOf(item.id) > -1}
isDisabled={isDisabled}
onPress={onPressAccount}
useFullBalance={useFullBalance}
/>
),
[
navigation,
showHint,
listIndex,
selectedIds,
forceSelected,
isDisabled,
onAccountNameChange,
onPressAccount,
useFullBalance,
animatedSelectableAccount,
llmNetworkBasedAddAccountFlow?.enabled,
],
);

return (
<Flex marginBottom={7} {...props}>
Expand All @@ -99,21 +182,12 @@ const SelectableAccountsList = ({
<FlatList
data={accounts}
keyExtractor={(item, index) => item.id + index}
renderItem={({ item, index }) => (
<SelectableAccount
navigation={navigation}
showHint={!index && showHint}
rowIndex={index}
listIndex={listIndex}
account={item}
onAccountNameChange={onAccountNameChange}
isSelected={forceSelected || selectedIds.indexOf(item.id) > -1}
isDisabled={isDisabled}
onPress={onPressAccount}
useFullBalance={useFullBalance}
/>
renderItem={renderSelectableAccount}
ListEmptyComponent={() => (
<Flex height="100%" flexDirection="row" justifyContent="center">
{emptyState || null}
</Flex>
)}
ListEmptyComponent={() => <>{emptyState || null}</>}
/>
</Flex>
);
Expand All @@ -127,9 +201,7 @@ type SelectableAccountProps = {
showHint: boolean;
rowIndex: number;
listIndex: number;
navigation: StackNavigationProp<
AccountSettingsNavigatorParamList | AddAccountsNavigatorParamList
>;
navigation: NavigationProps;
onAccountNameChange?: (name: string, changedAccount: Account) => void;
useFullBalance?: boolean;
};
Expand All @@ -147,6 +219,7 @@ const SelectableAccount = ({
useFullBalance,
}: SelectableAccountProps) => {
const [stopAnimation, setStopAnimation] = useState<boolean>(false);
const llmNetworkBasedAddAccountFlow = useFeature("llmNetworkBasedAddAccountFlow");

const swipeableRow = useRef<Swipeable>(null);

Expand Down Expand Up @@ -206,11 +279,21 @@ const SelectableAccount = ({
if (!onAccountNameChange) return;

swipedAccountSubject.next({ row: -1, list: -1 });
navigation.navigate(ScreenName.EditAccountName, {
onAccountNameChange,
account,
});
}, [account, navigation, onAccountNameChange]);
if (llmNetworkBasedAddAccountFlow?.enabled) {
navigation.navigate(NavigatorName.AccountSettings, {
screen: ScreenName.EditAccountName,
params: {
onAccountNameChange,
account,
},
});
} else {
navigation.navigate(ScreenName.EditAccountName, {
onAccountNameChange,
account,
});
}
}, [account, navigation, onAccountNameChange, llmNetworkBasedAddAccountFlow?.enabled]);

const renderLeftActions = useCallback(
(
Expand Down Expand Up @@ -259,25 +342,41 @@ const SelectableAccount = ({
opacity={isDisabled ? 0.4 : 1}
backgroundColor="neutral.c30"
>
<Flex flex={1}>
<AccountCard
useFullBalance={useFullBalance}
account={account}
AccountSubTitle={
subAccountCount && !isDisabled ? (
<Flex marginTop={2}>
<Text fontWeight="semiBold" variant="small" color="pillActiveForeground">
<Trans
i18nKey={`selectableAccountsList.${isToken ? "tokenCount" : "subaccountCount"}`}
count={subAccountCount}
values={{ count: subAccountCount }}
/>
</Text>
</Flex>
) : null
}
/>
</Flex>
{llmNetworkBasedAddAccountFlow?.enabled ? (
<Flex
flex={1}
flexDirection="row"
height={56}
alignItems="center"
backgroundColor="neutral.c30"
borderRadius="12px"
padding="8px"
columnGap={8}
>
<AccountItem account={account} balance={account.spendableBalance} />
</Flex>
) : (
<Flex flex={1}>
<AccountCard
useFullBalance={useFullBalance}
account={account}
AccountSubTitle={
subAccountCount && !isDisabled ? (
<Flex marginTop={2}>
<Text fontWeight="semiBold" variant="small" color="pillActiveForeground">
<Trans
i18nKey={`selectableAccountsList.${isToken ? "tokenCount" : "subaccountCount"}`}
count={subAccountCount}
values={{ count: subAccountCount }}
/>
</Text>
</Flex>
) : null
}
/>
</Flex>
)}

{!isDisabled && (
<Flex marginLeft={4}>
<CheckBox onChange={handlePress} isChecked={!!isSelected} />
Expand Down Expand Up @@ -317,14 +416,20 @@ type HeaderProps = {

const Header = ({ text, areAllSelected, onSelectAll, onUnselectAll }: HeaderProps) => {
const shouldDisplaySelectAll = !!onSelectAll && !!onUnselectAll;
const llmNetworkBasedAddAccountFlow = useFeature("llmNetworkBasedAddAccountFlow");

return (
<Flex paddingX={16} flexDirection="row" alignItems="center" paddingBottom={8}>
<Flex
paddingX={llmNetworkBasedAddAccountFlow?.enabled ? 16 : 22}
flexDirection="row"
alignItems="center"
paddingBottom={llmNetworkBasedAddAccountFlow?.enabled ? 16 : 8}
>
<Text
fontWeight="semiBold"
flexShrink={1}
variant="small"
textTransform="uppercase"
{...(!llmNetworkBasedAddAccountFlow?.enabled && { textTransform: "uppercase" })}
color="neutral.c70"
numberOfLines={1}
>
Expand Down
1 change: 1 addition & 0 deletions apps/ledger-live-mobile/src/const/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,7 @@ export enum ScreenName {
SelectDevice = "SelectDevice",
SelectAccounts = "SelectAccounts",
ScanDeviceAccounts = "ScanDeviceAccounts",
AddAccountsWarning = "AddAccountsWarning",
}

export enum NavigatorName {
Expand Down
12 changes: 10 additions & 2 deletions apps/ledger-live-mobile/src/icons/Pause.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ type Props = {
};
export default function Pause({ size = 16, color }: Props) {
return (
<Svg viewBox="0 0 16 16" width={size} height={size}>
<Svg viewBox="0 0 20 20" width={size} height={size}>
<Path
fillRule="evenodd"
clipRule="evenodd"
d="M13.4167 15C13.0027 15 12.6667 14.44 12.6667 13.75V6.25C12.6667 5.56 13.0027 5 13.4167 5C13.8307 5 14.1667 5.56 14.1667 6.25V13.75C14.1667 14.44 13.8307 15 13.4167 15Z"
fill={color}
/>
<Path
fillRule="evenodd"
clipRule="evenodd"
d="M6.75 15C6.336 15 6 14.44 6 13.75V6.25C6 5.56 6.336 5 6.75 5C7.164 5 7.5 5.56 7.5 6.25V13.75C7.5 14.44 7.164 15 6.75 15Z"
fill={color}
d="M8 14.3A6.3 6.3 0 1 0 8 1.7a6.3 6.3 0 0 0 0 12.6zm0 1.4A7.7 7.7 0 1 1 8 .3a7.7 7.7 0 0 1 0 15.4zm-2.1-5.6V5.9c0-.933 1.4-.933 1.4 0v4.2c0 .933-1.4.933-1.4 0zm2.8 0V5.9c0-.933 1.4-.933 1.4 0v4.2c0 .933-1.4.933-1.4 0z"
/>
</Svg>
);
Expand Down
17 changes: 17 additions & 0 deletions apps/ledger-live-mobile/src/icons/PauseCircle.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from "react";
import Svg, { Path } from "react-native-svg";

type Props = {
size?: number;
color?: string;
};
export default function PauseCircle({ size = 16, color }: Props) {
return (
<Svg viewBox="0 0 16 16" width={size} height={size}>
<Path
fill={color}
d="M8 14.3A6.3 6.3 0 1 0 8 1.7a6.3 6.3 0 0 0 0 12.6zm0 1.4A7.7 7.7 0 1 1 8 .3a7.7 7.7 0 0 1 0 15.4zm-2.1-5.6V5.9c0-.933 1.4-.933 1.4 0v4.2c0 .933-1.4.933-1.4 0zm2.8 0V5.9c0-.933 1.4-.933 1.4 0v4.2c0 .933-1.4.933-1.4 0z"
/>
</Svg>
);
}
Loading

2 comments on commit b447baf

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

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

[Bot] Weekly non-reg on develop with 'Oxygen' ✅ 24 txs ❌ 9 txs 💰 1 miss funds ($555.77) ⏲ 12min 43s

✅ 5 specs are successful: Decred, axelar, cosmos, Polygon zkEVM, Tron
❌ 5 specs have problems: Qtum, cardano, Avalanche C-Chain, Binance Smart Chain, Telos
💰 1 specs may miss funds: Boba

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

5 critical spec errors

Spec secret_network failed!

AxiosError: timeout of 60000ms exceeded

Spec Cronos failed!

InvalidExplorerResponse: InvalidExplorerResponse

Spec Fantom failed!

InvalidExplorerResponse: InvalidExplorerResponse

Spec Filecoin failed!

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

Spec Polkadot failed!

Error: speculos process failure. readall: connection closed

❌ 9 mutation errors
necessary accounts resynced in 0.17ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 1.72167 QTUM (114ops) (QecojAaMqvb1q8kAePkSzMkBUgd2LWeU7W on 44'/88'/1'/0/52) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
2 UTXOs
1.63891      QZnG4iMKZwLtk6FUUaEpEkDK1tGgdr9CBg 04329563c39ee3ff8d21c929d0ee368ca1db12f0b92f5789bffa48f8768f23d9 @0 (0)
0.0827563    QT7hWBomU47Dk86sdcGYDgSeWACtU65UJT (change) 81613b71f46eac9dd2d41acbd48d8f228b2282712d2d6cfccdeec3e3d114b19c @1 (18357)

max spendable ~0.0808344
★ using mutation 'send OP_RETURN transaction'
→ TO undefined [legacy]: 0.0526192 QTUM (129ops) (QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un on 44'/88'/0'/0/69) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
✔️ transaction 
SEND 0.001 QTUM
TO QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (100ms)
TX INPUTS (1):
0.0827563    QT7hWBomU47Dk86sdcGYDgSeWACtU65UJT 81613b71f46eac9dd2d41acbd48d8f228b2282712d2d6cfccdeec3e3d114b19c@1
TX OUTPUTS (3):
0            @0 (0)
0.001        QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un @1 (0)
0.0792338    QctkiiLFjFMUXSmfgvApggboasBg33LhQP (change) @2 (0)
  amount: 0.001 QTUM
  estimated fees: 0.00252252 QTUM
  total spent: 0.00352252 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
⚠️ TEST deviceAction confirm step 'Address'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Address": "QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un",
+   "Address": "OP_RETURN",
  }
(totally spent 2892ms – ends at 2025-01-16T05:51:48.744Z)
necessary accounts resynced in 0.13ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 21.5895 ADA (40ops) (addr1qx9xyllht45cg6asn3e9r6rfn7jcdc6mu6u48cjth95mdahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqpwuwvc on 1852'/1815'/0'/0/13) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano (! sum of ops -0.540827 ADA)
max spendable ~21.3932
★ using mutation 'undelegate'
✔️ transaction 
  UNDELEGATE 
STATUS (302ms)
  amount: 0 ADA
  estimated fees: 0.171397 ADA
  total spent: 0.171397 ADA
errors: 
warnings: 
✔️ has been signed! (31.8s) {"operation":{"id":"js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano-bce29ce537bb1c9541fce60e5def09e04b4acb20a54b5fbccdd45a1169a9e8e5-UNDELEGATE","hash":"bce29ce537bb1c9541fce60e5def09e04b4acb20a54b5fbccdd45a1169a9e8e5","type":"UNDELEGATE","senders":["addr1qx36lytqpp9eh4nqu34jzet66uxga87wmsk7xah6s9vw39hgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq2mq46p"],"recipients":["addr1qyy7wkn3f2pwcyulhjjdafg8q8c09mrg4rk9snl3xtgmac8gyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq70gwjq"],"accountId":"js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano","blockHeight":null,"extra":{"refund":"2 ADA"},"date":"2025-01-16T05:43:18.018Z","value":"171397","fee":"171397"},"signature":"84a500818258206d52daaa197a8f272f0f413b945c4fbc2a9915be4a51d6b10ce0e660d451a16d000181a20058390109e75a714a82ec139fbca4dea50701f0f2ec68a8ec584ff132d1bee0e822553b2063fb242a97132e003ae7fa27abf3d1af1464997a88df76011a011637ad021a00029d85031a08ab58a3048182018200581ce822553b2063fb242a97132e003ae7fa27abf3d1af1464997a88df76a100828258209d8905e9ff8ea184ae43356d04dd45ec2985e27433db3f63ef1f235efb6b09ed5840ac0af206da895c8e4907662ea24152bc5bf1296bd668bdce5c1acc5eee2508f65ce83d0e6c1c35d76917040f3458163be409a626e83df896818d476e87d97c05825820bb08bc31c9e1f3346b7ca43faa46db51050835a4f8fc691b085fd557d22e901a5840fcd80b642c111ba572be38123b54574e4badb6750dc17626293801a7dcca3a453f7f71602ed6eb95b592969e04ebda10fd59727d11749459ed0ae4d6ddee5e06f5f6"}
⚠️ TEST during broadcast
LedgerAPI4xx: API HTTP 400 https://cardano.coin.ledger.com/api/v1/transaction/submit
(totally spent 32.5s – ends at 2025-01-16T05:51:48.746Z)
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.768479 AVAX (4ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:avalanche_c_chain:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
✔️ transaction 
SEND MAX
TO 0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1
STATUS (774ms)
  amount: 0.197308342308504675 AVAX
  estimated fees: 0.000385918304751 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 60.8s – ends at 2025-01-16T05:51:48.755Z)
necessary accounts resynced in 0.17ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.098559662178169837 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (680ms)
  amount: 0.098559662178169837 AVAX
  estimated fees: 0.000063268137114 AVAX
  total spent: 0.098622930315283837 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.8s – ends at 2025-01-16T05:51:48.757Z)
necessary accounts resynced in 0.27ms
▬ 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.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (690ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.000052461091914 AVAX
  total spent: 0.200909620746340997 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.7s – ends at 2025-01-16T05:51:48.764Z)
necessary accounts resynced in 0.15ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'move 50%'
→ TO undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (711ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.00002625 BNB
  total spent: 0.027559081547880244 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.8s – ends at 2025-01-16T05:51:48.778Z)
necessary accounts resynced in 0.16ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (104ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.012998433531152045 BNB)
max spendable ~0.0242889
★ using mutation 'send max'
→ TO undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND MAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (850ms)
  amount: 0.024262685219324468 BNB
  estimated fees: 0.00002625 BNB
  total spent: 0.024288935219324468 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 2025-01-16T05:51:48.781Z)
necessary accounts resynced in 0.20ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (70ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.012112967609641233 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (679ms)
  amount: 0.012112967609641233 BNB
  estimated fees: 0.00002625 BNB
  total spent: 0.012139217609641233 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x8C63f5be03552E33","x":10,"y":17,"w":112,"h":32}
(totally spent 60.7s – ends at 2025-01-16T05:51:48.791Z)
necessary accounts resynced in 0.14ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 17.7615 TLOS (20ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:telos_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.0026524318593465 TLOS)
max spendable ~17.7269
★ using mutation 'move 50%'
→ TO undefined: 0.00273787 TLOS (21ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:telos_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  8.863484515613203572 TLOS
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (2130ms)
  amount: 8.863484515613203572 TLOS
  estimated fees: 0.01370538683695125 TLOS
  total spent: 8.877189902450154822 TLOS
errors: 
warnings: 
✔️ has been signed! (5.1s) 
✔️ broadcasted! (183ms) optimistic operation: 
  -8.877189902450154822 TLOS OUT        0xfc80a4613f2b2009edabc945802b547d4745f663dd97de01c9470f7a8b404ddb 2025-01-16T05:41
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:telos_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:-0xfc80a4613f2b2009edabc945802b547d4745f663dd97de01c9470f7a8b404ddb-OUT
(totally spent 10min 8s – ends at 2025-01-16T05:51:48.799Z)
⚠️ 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
  • Spec axelar:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec cosmos:
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • 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 33 mutations

Spec Qtum (6)

Spec Qtum found 6 Qtum accounts. Will use Qtum 2.1.0-rc on nanoS 2.1.0
undefined [segwit]: 0.112556 QTUM (133ops) (MQ6W9iPiksFcScXoQ9W3xLog7E4f7pPpQN on 49'/88'/0'/0/67) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 2.05888 QTUM (120ops) (MNYC3a3sxTmQiYZJ22TTrrazwNuaCRrU2p on 49'/88'/1'/0/60) 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.107931 QTUM (127ops) (QZXSpU8JRpQZPaUTZLsJ4hVJqh7uVjvTVV on 44'/88'/0'/0/68) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.0827563 QTUM (113ops) (QZnG4iMKZwLtk6FUUaEpEkDK1tGgdr9CBg on 44'/88'/1'/0/51) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
necessary accounts resynced in 0.15ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.112556 QTUM (133ops) (MQ6W9iPiksFcScXoQ9W3xLog7E4f7pPpQN on 49'/88'/0'/0/67) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
2 UTXOs
0.0725894    MDC7jSWe5VwDTtxHScRyUj4YFA4pdNu13D 5169b6d3d41229ec1089589d66461ab85d681236a47ee21449c375277f186a0b @0 (37789)
0.039967     MQRQCEq7cGKWZ5Qua4vrbcY2u3iRD4KNVQ ebf44074e84c5c586422dd28a0ef4f758fa4b2c9d0670e0511c73da3ed384705 @0 (56686)

max spendable ~0.110324
★ using mutation 'move ~50%'
→ TO undefined [legacy]: 0.107931 QTUM (127ops) (QZXSpU8JRpQZPaUTZLsJ4hVJqh7uVjvTVV on 44'/88'/0'/0/68) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
✔️ transaction 
SEND 0.05261925 QTUM
TO QZXSpU8JRpQZPaUTZLsJ4hVJqh7uVjvTVV
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed RBF-enabled
STATUS (226ms)
TX INPUTS (2):
0.039967     MQRQCEq7cGKWZ5Qua4vrbcY2u3iRD4KNVQ ebf44074e84c5c586422dd28a0ef4f758fa4b2c9d0670e0511c73da3ed384705@0
0.0725894    MDC7jSWe5VwDTtxHScRyUj4YFA4pdNu13D 5169b6d3d41229ec1089589d66461ab85d681236a47ee21449c375277f186a0b@0
TX OUTPUTS (2):
0.0526192    QZXSpU8JRpQZPaUTZLsJ4hVJqh7uVjvTVV rbf @0 (0)
0.0573647    M8Zh1KaHzCKZfNoqj9rnkKkEPbEqmdeYwc (change) rbf @1 (0)
  amount: 0.05261925 QTUM
  estimated fees: 0.00257257 QTUM
  total spent: 0.05519182 QTUM
errors: 
warnings: 
✔️ has been signed! (8.9s) 
✔️ broadcasted! (119ms) optimistic operation: 
  -0.05519182 QTUM   OUT        6f45cfa5961d269e182f66191b7607d89f7e5653e80a545e2c0ddd54a9eb79cc 2025-01-16T05:40
✔️ operation confirmed (10.6s): 
  -0.05519182 QTUM   OUT        6f45cfa5961d269e182f66191b7607d89f7e5653e80a545e2c0ddd54a9eb79cc 2025-01-16T05:40
✔️ undefined [segwit]: 0.0573647 QTUM (134ops) (MQ6W9iPiksFcScXoQ9W3xLog7E4f7pPpQN on 49'/88'/0'/0/67) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
1 UTXOs
0.0573647    M8Zh1KaHzCKZfNoqj9rnkKkEPbEqmdeYwc (change) rbf 6f45cfa5961d269e182f66191b7607d89f7e5653e80a545e2c0ddd54a9eb79cc @1 (0)
(in 10.6s)
✔️ destination operation 
  +0.05261925 QTUM   IN         6f45cfa5961d269e182f66191b7607d89f7e5653e80a545e2c0ddd54a9eb79cc 2025-01-16T05:40
(in 10.6s)

necessary accounts resynced in 0.23ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 2.05888 QTUM (120ops) (MNYC3a3sxTmQiYZJ22TTrrazwNuaCRrU2p on 49'/88'/1'/0/60) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
3 UTXOs
1.88933      MH4isXuLs6QCvXBZbzAnw14teCG1hmAM9Q 618ee2d1dc7b3c2a2f9dbf31326dad2fdf5651877fe4e74de52723abb27a5a91 @0 (37791)
0.145998     MNVDmEfd7kW7xKZZDaBK9g3nyGdfmduKyV 8e743b7972434f8b327518e1bbe497b38597add936ff2bbbd239379fd32de274 @0 (18877)
0.0235464    MCtpa1J7LK4EeuqZCEW6W9JfXLVWUbAXru 81613b71f46eac9dd2d41acbd48d8f228b2282712d2d6cfccdeec3e3d114b19c @0 (18355)

max spendable ~2.05575
★ using mutation 'optimize-size'
→ TO undefined [legacy]: 0.0827563 QTUM (113ops) (QZnG4iMKZwLtk6FUUaEpEkDK1tGgdr9CBg on 44'/88'/1'/0/51) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
✔️ transaction 
SEND 1.63891542 QTUM
TO QZnG4iMKZwLtk6FUUaEpEkDK1tGgdr9CBg
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (241ms)
TX INPUTS (1):
1.88933      MH4isXuLs6QCvXBZbzAnw14teCG1hmAM9Q 618ee2d1dc7b3c2a2f9dbf31326dad2fdf5651877fe4e74de52723abb27a5a91@0
TX OUTPUTS (2):
1.63891      QZnG4iMKZwLtk6FUUaEpEkDK1tGgdr9CBg @0 (0)
0.248752     MJeuu6htsPk5SA1akid6AZjaMZNdLy7hAR (change) @1 (0)
  amount: 1.63891542 QTUM
  estimated fees: 0.00167167 QTUM
  total spent: 1.64058709 QTUM
errors: 
warnings: 
✔️ has been signed! (6.6s) 
✔️ broadcasted! (122ms) optimistic operation: 
  -1.64058709 QTUM   OUT        04329563c39ee3ff8d21c929d0ee368ca1db12f0b92f5789bffa48f8768f23d9 2025-01-16T05:40
✔️ operation confirmed (10.4s): 
  -1.64058709 QTUM   OUT        04329563c39ee3ff8d21c929d0ee368ca1db12f0b92f5789bffa48f8768f23d9 2025-01-16T05:40
✔️ undefined [segwit]: 0.418297 QTUM (121ops) (MNYC3a3sxTmQiYZJ22TTrrazwNuaCRrU2p on 49'/88'/1'/0/60) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
3 UTXOs
0.248752     MJeuu6htsPk5SA1akid6AZjaMZNdLy7hAR (change) 04329563c39ee3ff8d21c929d0ee368ca1db12f0b92f5789bffa48f8768f23d9 @1 (0)
0.145998     MNVDmEfd7kW7xKZZDaBK9g3nyGdfmduKyV 8e743b7972434f8b327518e1bbe497b38597add936ff2bbbd239379fd32de274 @0 (18877)
0.0235464    MCtpa1J7LK4EeuqZCEW6W9JfXLVWUbAXru 81613b71f46eac9dd2d41acbd48d8f228b2282712d2d6cfccdeec3e3d114b19c @0 (18355)
(in 10.4s)
✔️ destination operation 
  +1.63891542 QTUM   IN         04329563c39ee3ff8d21c929d0ee368ca1db12f0b92f5789bffa48f8768f23d9 2025-01-16T05:40
(in 10.7s)

necessary accounts resynced in 0.23ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 0.16055 QTUM (128ops) (QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un on 44'/88'/0'/0/69) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
2 UTXOs
0.107931     QZXgWhdBCobR8Z9j6zwUJifdq4gqb365oK 865387a01f1984e92079381801fa871015d54a776660a72f8a228b58a0b95572 @0 (18356)
0.0526192    QZXSpU8JRpQZPaUTZLsJ4hVJqh7uVjvTVV rbf 6f45cfa5961d269e182f66191b7607d89f7e5653e80a545e2c0ddd54a9eb79cc @0 (0)

max spendable ~0.106009
★ using mutation 'send 1 utxo'
→ TO undefined [segwit]: 0.0573647 QTUM (134ops) (MQ6W9iPiksFcScXoQ9W3xLog7E4f7pPpQN on 49'/88'/0'/0/67) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
✔️ transaction 
SEND MAX
TO MQ6W9iPiksFcScXoQ9W3xLog7E4f7pPpQN
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude 6f45cfa5961d269e182f66191b7607d89f7e5653e80a545e2c0ddd54a9eb79cc @0
STATUS (198ms)
TX INPUTS (1):
0.107931     QZXgWhdBCobR8Z9j6zwUJifdq4gqb365oK 865387a01f1984e92079381801fa871015d54a776660a72f8a228b58a0b95572@0
TX OUTPUTS (1):
0.106029     MQ6W9iPiksFcScXoQ9W3xLog7E4f7pPpQN @0 (0)
  amount: 0.10602939 QTUM
  estimated fees: 0.0019019 QTUM
  total spent: 0.10793129 QTUM
errors: 
warnings: 
✔️ has been signed! (7.5s) 
✔️ broadcasted! (114ms) optimistic operation: 
  -0.0019019 QTUM    OUT        ec8259989f18fc0600b0ac02d50326d3bd15a127fc05c5634325ba6a55e9d6ba 2025-01-16T05:41
✔️ operation confirmed (10.7s): 
  -0.10793129 QTUM   OUT        ec8259989f18fc0600b0ac02d50326d3bd15a127fc05c5634325ba6a55e9d6ba 2025-01-16T05:41
✔️ undefined [legacy]: 0.0526192 QTUM (129ops) (QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un on 44'/88'/0'/0/69) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
1 UTXOs
0.0526192    QZXSpU8JRpQZPaUTZLsJ4hVJqh7uVjvTVV rbf 6f45cfa5961d269e182f66191b7607d89f7e5653e80a545e2c0ddd54a9eb79cc @0 (1)
(in 10.6s)
✔️ destination operation 
  +0.10602939 QTUM   IN         ec8259989f18fc0600b0ac02d50326d3bd15a127fc05c5634325ba6a55e9d6ba 2025-01-16T05:41
(in 10.6s)

necessary accounts resynced in 0.17ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 1.72167 QTUM (114ops) (QecojAaMqvb1q8kAePkSzMkBUgd2LWeU7W on 44'/88'/1'/0/52) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
2 UTXOs
1.63891      QZnG4iMKZwLtk6FUUaEpEkDK1tGgdr9CBg 04329563c39ee3ff8d21c929d0ee368ca1db12f0b92f5789bffa48f8768f23d9 @0 (0)
0.0827563    QT7hWBomU47Dk86sdcGYDgSeWACtU65UJT (change) 81613b71f46eac9dd2d41acbd48d8f228b2282712d2d6cfccdeec3e3d114b19c @1 (18357)

max spendable ~0.0808344
★ using mutation 'send OP_RETURN transaction'
→ TO undefined [legacy]: 0.0526192 QTUM (129ops) (QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un on 44'/88'/0'/0/69) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
✔️ transaction 
SEND 0.001 QTUM
TO QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (100ms)
TX INPUTS (1):
0.0827563    QT7hWBomU47Dk86sdcGYDgSeWACtU65UJT 81613b71f46eac9dd2d41acbd48d8f228b2282712d2d6cfccdeec3e3d114b19c@1
TX OUTPUTS (3):
0            @0 (0)
0.001        QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un @1 (0)
0.0792338    QctkiiLFjFMUXSmfgvApggboasBg33LhQP (change) @2 (0)
  amount: 0.001 QTUM
  estimated fees: 0.00252252 QTUM
  total spent: 0.00352252 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
⚠️ TEST deviceAction confirm step 'Address'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Address": "QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un",
+   "Address": "OP_RETURN",
  }
(totally spent 2892ms – ends at 2025-01-16T05:51:48.856Z)

Spec Decred (5)

Spec Decred found 5 Decred accounts. Will use Decred 1.3.14 on nanoS 2.1.0
undefined: 0 DCR (122ops) (Dskx5S56gqJBSM7bdQ9ZMCP6gwdnzXRPfCX on 44'/42'/0'/0/66) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0 DCR (103ops) (DsoMepfUeqJ9ddF12nVqLZBRj971UPDMKv3 on 44'/42'/1'/0/49) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.0109426 DCR (98ops) (DsiPXbXhyTAnmVH3jTVC76Yc7zGCYryN7jW on 44'/42'/2'/0/51) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 1.26693 DCR (93ops) (DscVFGwxhzvtev9k7yY66nbfGVoD9ctAM3B on 44'/42'/3'/0/42) #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.36ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.0109426 DCR (98ops) (DsiPXbXhyTAnmVH3jTVC76Yc7zGCYryN7jW on 44'/42'/2'/0/51) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
1 UTXOs
0.0109426    DsfAwbonTcecPiZDDdvX9h5KtVHgJV8uoZG fe42a9d22c315550d7770dc05fc667ca8796c2bd6614598f140a94c170706723 @0 (1923)

max spendable ~0.0109197
★ using mutation 'move ~50%'
→ TO undefined: 0 DCR (122ops) (Dskx5S56gqJBSM7bdQ9ZMCP6gwdnzXRPfCX on 44'/42'/0'/0/66) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
✔️ transaction 
SEND 0.00556409 DCR
TO Dskx5S56gqJBSM7bdQ9ZMCP6gwdnzXRPfCX
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed RBF-enabled
STATUS (368ms)
TX INPUTS (1):
0.0109426    DsfAwbonTcecPiZDDdvX9h5KtVHgJV8uoZG fe42a9d22c315550d7770dc05fc667ca8796c2bd6614598f140a94c170706723@0
TX OUTPUTS (2):
0.00556409   Dskx5S56gqJBSM7bdQ9ZMCP6gwdnzXRPfCX rbf @0 (0)
0.00535013   DsfHej4G51cQJf3RcYKcYG3LV3Aq6d5Y1UV (change) rbf @1 (0)
  amount: 0.00556409 DCR
  estimated fees: 0.00002838 DCR
  total spent: 0.00559247 DCR
errors: 
warnings: 
✔️ has been signed! (8.7s) 
✔️ broadcasted! (266ms) optimistic operation: 
  -0.00559247 DCR    OUT        ca6e521ed08c25cce6566c3c73f385d957c98e89598abba10896e1732fe3fdac 2025-01-16T05:40
✔️ operation confirmed (10.4s): 
  -0.00559247 DCR    OUT        ca6e521ed08c25cce6566c3c73f385d957c98e89598abba10896e1732fe3fdac 2025-01-16T05:40
✔️ undefined: 0.00535013 DCR (99ops) (DsiPXbXhyTAnmVH3jTVC76Yc7zGCYryN7jW on 44'/42'/2'/0/51) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
1 UTXOs
0.00535013   DsfHej4G51cQJf3RcYKcYG3LV3Aq6d5Y1UV (change) rbf ca6e521ed08c25cce6566c3c73f385d957c98e89598abba10896e1732fe3fdac @1 (0)
(in 10.4s)
✔️ destination operation 
  +0.00556409 DCR    IN         ca6e521ed08c25cce6566c3c73f385d957c98e89598abba10896e1732fe3fdac 2025-01-16T05:40
(in 10.5s)

necessary accounts resynced in 0.30ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 1.26693 DCR (93ops) (DscVFGwxhzvtev9k7yY66nbfGVoD9ctAM3B on 44'/42'/3'/0/42) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
2 UTXOs
1.25498      DsaSiLD4ArxskzbCPevV5FkZhTUGWPfNpwp 29744948c5d19a5e36f818b3f5b00c20aeb34ea1c32c1dddf3463ee2253685af @0 (1924)
0.0119467    Dsd6tWuD78xYbThYwjJtnhmAJU1YEGqkgry (change) fe42a9d22c315550d7770dc05fc667ca8796c2bd6614598f140a94c170706723 @1 (1923)

max spendable ~1.26689
★ using mutation 'send max'
→ TO undefined: 0 DCR (103ops) (DsoMepfUeqJ9ddF12nVqLZBRj971UPDMKv3 on 44'/42'/1'/0/49) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
✔️ transaction 
SEND MAX
TO DsoMepfUeqJ9ddF12nVqLZBRj971UPDMKv3
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (239ms)
TX INPUTS (2):
1.25498      DsaSiLD4ArxskzbCPevV5FkZhTUGWPfNpwp 29744948c5d19a5e36f818b3f5b00c20aeb34ea1c32c1dddf3463ee2253685af@0
0.0119467    Dsd6tWuD78xYbThYwjJtnhmAJU1YEGqkgry fe42a9d22c315550d7770dc05fc667ca8796c2bd6614598f140a94c170706723@1
TX OUTPUTS (1):
1.26689      DsoMepfUeqJ9ddF12nVqLZBRj971UPDMKv3 @0 (0)
  amount: 1.26689422 DCR
  estimated fees: 0.0000418 DCR
  total spent: 1.26693602 DCR
errors: 
warnings: 
✔️ has been signed! (5.4s) 
✔️ broadcasted! (247ms) optimistic operation: 
  -0.0000418 DCR     OUT        872270aa5f1efefb0b18b57e3919d5e82c79ec283f8c24f16e2f2cd1ca24605d 2025-01-16T05:40
✔️ operation confirmed (10.4s): 
  -1.26693602 DCR    OUT        872270aa5f1efefb0b18b57e3919d5e82c79ec283f8c24f16e2f2cd1ca24605d 2025-01-16T05:40
✔️ undefined: 0 DCR (94ops) (DscVFGwxhzvtev9k7yY66nbfGVoD9ctAM3B on 44'/42'/3'/0/42) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
0 UTXOs
(in 10.4s)
✔️ destination operation 
  +1.26689422 DCR    IN         872270aa5f1efefb0b18b57e3919d5e82c79ec283f8c24f16e2f2cd1ca24605d 2025-01-16T05:40
(in 10.5s)


Spec cardano (7)

Spec cardano found 7 Cardano accounts. Will use CardanoADA 6.1.2 on nanoSP 1.1.1
undefined: 21.5895 ADA (40ops) (addr1qx9xyllht45cg6asn3e9r6rfn7jcdc6mu6u48cjth95mdahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqpwuwvc on 1852'/1815'/0'/0/13) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano
undefined: 41.3941 ADA (23ops) (addr1qycsrd228ux4p2t5ec2gpa82kkaucl3m87wxh4ltfsn30gufrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqpghg5a on 1852'/1815'/1'/0/6) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
undefined: 7.5447 ADA (37ops) (addr1qy7rpdnk6xh4upnj27n2xjxdt2r5jh4ezyywxam6cfjunj7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qzps6s8 on 1852'/1815'/2'/0/13) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
undefined: 0 ADA (22ops) (addr1qyc272pda05k5flre54he7cl2jeqn9duycjs74dntez0wtn39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqf8rvvr on 1852'/1815'/3'/0/9) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
undefined: 16.2614 ADA (15ops) (addr1qxefwgygmedaxh5ppqfq3ed87eccejy0t0pqcxqq54uh5nmnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8st6h84d on 1852'/1815'/4'/0/4) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano
undefined: 0 ADA (17ops) (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.13ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 21.5895 ADA (40ops) (addr1qx9xyllht45cg6asn3e9r6rfn7jcdc6mu6u48cjth95mdahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqpwuwvc on 1852'/1815'/0'/0/13) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano (! sum of ops -0.540827 ADA)
max spendable ~21.3932
★ using mutation 'undelegate'
✔️ transaction 
  UNDELEGATE 
STATUS (302ms)
  amount: 0 ADA
  estimated fees: 0.171397 ADA
  total spent: 0.171397 ADA
errors: 
warnings: 
✔️ has been signed! (31.8s) {"operation":{"id":"js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano-bce29ce537bb1c9541fce60e5def09e04b4acb20a54b5fbccdd45a1169a9e8e5-UNDELEGATE","hash":"bce29ce537bb1c9541fce60e5def09e04b4acb20a54b5fbccdd45a1169a9e8e5","type":"UNDELEGATE","senders":["addr1qx36lytqpp9eh4nqu34jzet66uxga87wmsk7xah6s9vw39hgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq2mq46p"],"recipients":["addr1qyy7wkn3f2pwcyulhjjdafg8q8c09mrg4rk9snl3xtgmac8gyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq70gwjq"],"accountId":"js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano","blockHeight":null,"extra":{"refund":"2 ADA"},"date":"2025-01-16T05:43:18.018Z","value":"171397","fee":"171397"},"signature":"84a500818258206d52daaa197a8f272f0f413b945c4fbc2a9915be4a51d6b10ce0e660d451a16d000181a20058390109e75a714a82ec139fbca4dea50701f0f2ec68a8ec584ff132d1bee0e822553b2063fb242a97132e003ae7fa27abf3d1af1464997a88df76011a011637ad021a00029d85031a08ab58a3048182018200581ce822553b2063fb242a97132e003ae7fa27abf3d1af1464997a88df76a100828258209d8905e9ff8ea184ae43356d04dd45ec2985e27433db3f63ef1f235efb6b09ed5840ac0af206da895c8e4907662ea24152bc5bf1296bd668bdce5c1acc5eee2508f65ce83d0e6c1c35d76917040f3458163be409a626e83df896818d476e87d97c05825820bb08bc31c9e1f3346b7ca43faa46db51050835a4f8fc691b085fd557d22e901a5840fcd80b642c111ba572be38123b54574e4badb6750dc17626293801a7dcca3a453f7f71602ed6eb95b592969e04ebda10fd59727d11749459ed0ae4d6ddee5e06f5f6"}
⚠️ TEST during broadcast
LedgerAPI4xx: API HTTP 400 https://cardano.coin.ledger.com/api/v1/transaction/submit
(totally spent 32.5s – ends at 2025-01-16T05:51:48.905Z)
necessary accounts resynced in 760ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 41.3941 ADA (23ops) (addr1qycsrd228ux4p2t5ec2gpa82kkaucl3m87wxh4ltfsn30gufrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqpghg5a on 1852'/1815'/1'/0/6) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano (! sum of ops 33.959385 ADA)
max spendable ~41.2287
★ using mutation 'send max'
→ TO undefined: 7.5447 ADA (37ops) (addr1qy7rpdnk6xh4upnj27n2xjxdt2r5jh4ezyywxam6cfjunj7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qzps6s8 on 1852'/1815'/2'/0/13) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
✔️ transaction 
  SEND MAX
TO addr1qy7rpdnk6xh4upnj27n2xjxdt2r5jh4ezyywxam6cfjunj7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qzps6s8
STATUS (352ms)
  amount: 41.228786 ADA
  estimated fees: 0.165369 ADA
  total spent: 41.394155 ADA
errors: 
warnings: 
✔️ has been signed! (14.2s) 
✔️ broadcasted! (309ms) optimistic operation: 
  -41.394155 ADA     OUT        2a7e6f19edc41ff0f2303d6559a58c01688a20589339461a74cf8a93eee5f7fa 2025-01-16T05:43
✔️ operation confirmed (80.8s): 
  -41.394155 ADA     OUT        2a7e6f19edc41ff0f2303d6559a58c01688a20589339461a74cf8a93eee5f7fa 2025-01-16T05:44
✔️ undefined: 0 ADA (24ops) (addr1qycsrd228ux4p2t5ec2gpa82kkaucl3m87wxh4ltfsn30gufrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqpghg5a on 1852'/1815'/1'/0/6) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano (! sum of ops -7.43477 ADA)(in 80.8s)
✔️ destination operation 
  +41.228786 ADA     IN         2a7e6f19edc41ff0f2303d6559a58c01688a20589339461a74cf8a93eee5f7fa 2025-01-16T05:44
(in 10.8s)

necessary accounts resynced in 16ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 48.7734 ADA (38ops) (addr1q82ccle006c5w4u2scu08d3wpmglezd6c43xpv829hl7rc7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qt6l3l6 on 1852'/1815'/2'/0/14) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano (! sum of ops 32.8255 ADA)
max spendable ~48.596
★ using mutation 'delegate to pool'
✔️ transaction 
  DELEGATE 
STATUS (291ms)
  amount: 0 ADA
  estimated fees: 0.174213 ADA
  total spent: 0.174213 ADA
errors: 
warnings: 
✔️ has been signed! (33.3s) 
✔️ broadcasted! (303ms) optimistic operation: 
  -2.174213 ADA      DELEGATE   31fd5330a6b8ba67bd6aea2f7fa7c7538f1c4a950e1495845ae0de687bb9164f 2025-01-16T05:45
✔️ operation confirmed (2min 21s): 
  -2.174213 ADA      DELEGATE   31fd5330a6b8ba67bd6aea2f7fa7c7538f1c4a950e1495845ae0de687bb9164f 2025-01-16T05:46
✔️ undefined: 46.5992 ADA (39ops) (addr1q82ccle006c5w4u2scu08d3wpmglezd6c43xpv829hl7rc7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qt6l3l6 on 1852'/1815'/2'/0/14) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano (! sum of ops 30.651287 ADA)(in 2min 21s)

necessary accounts resynced in 0.14ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 16.2614 ADA (15ops) (addr1qxefwgygmedaxh5ppqfq3ed87eccejy0t0pqcxqq54uh5nmnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8st6h84d on 1852'/1815'/4'/0/4) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano (! sum of ops 8.853202 ADA)
max spendable ~16.0728
★ using mutation 'redelegate to pool'
✔️ transaction 
  DELEGATE 
STATUS (253ms)
  amount: 0 ADA
  estimated fees: 0.172717 ADA
  total spent: 0.172717 ADA
errors: 
warnings: 
✔️ has been signed! (26.8s) 
✔️ broadcasted! (308ms) optimistic operation: 
  -0.172717 ADA      DELEGATE   c8b43697e4a05b7c41571a1ee1027fc155292033d42e1137c616e030196ef302 2025-01-16T05:48
✔️ operation confirmed (1min 41s): 
  -0.172717 ADA      DELEGATE   c8b43697e4a05b7c41571a1ee1027fc155292033d42e1137c616e030196ef302 2025-01-16T05:48
✔️ undefined: 16.0887 ADA (16ops) (addr1qxefwgygmedaxh5ppqfq3ed87eccejy0t0pqcxqq54uh5nmnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8st6h84d on 1852'/1815'/4'/0/4) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano (! sum of ops 8.680485 ADA)(in 1min 41s)


Spec axelar (18)

Spec axelar found 18 Axelar accounts (preload: 797ms). Will use Cosmos 2.36.0 on nanoS 2.1.0
undefined: 0.005682 AXL (14ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 0.923866 AXL (9ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0 AXL (0ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.007651 AXL (6ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0.008039 AXL (9ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 0.000115 AXL (12ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0.013722 AXL (12ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.037508 AXL (14ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0 AXL (12ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.012127 AXL (14ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0 AXL (7ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 1.54534 AXL (20ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 1.17115 AXL (7ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 4.19804 AXL (10ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 3.21125 AXL (1ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 1.21829 AXL (1ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
undefined: 3.44473 AXL (3ops) (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.21ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 0.923866 AXL (9ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64: (! sum of ops 0.900942 AXL) 0.923866 AXL spendable. 

max spendable ~0.916874
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.003182 AXL
TO 
  0.003182 -> axelarvaloper1s0lankh33kprer2l22nank5rvsuh9ksa6utflp
with fees=0.01207
  memo=LedgerLiveBot
STATUS (21.2s)
  amount: 0.003182 AXL
  estimated fees: 0.01207 AXL
  total spent: 0.015252 AXL
errors: 
warnings: 
✔️ has been signed! (17s) 
✔️ broadcasted! (981ms) optimistic operation: 
  -0.015252 AXL      DELEGATE   E0C85AA101CA85F6C1E4BD473823B88FD5987C20A7DD81A27B341891A1FE32CA 2025-01-16T05:43
    to axelarvaloper1s0lankh33kprer2l22nank5rvsuh9ksa6utflp 0.003182 AXL    
✔️ operation confirmed (0.25ms): 
  -0.015252 AXL      DELEGATE   E0C85AA101CA85F6C1E4BD473823B88FD5987C20A7DD81A27B341891A1FE32CA 2025-01-16T05:43
    to axelarvaloper1s0lankh33kprer2l22nank5rvsuh9ksa6utflp 0.003182 AXL    
✔️ undefined: 0.923866 AXL (9ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64: (! sum of ops 0.900942 AXL) 0.923866 AXL spendable. 

necessary accounts resynced in 0.22ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 0.037508 AXL (14ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8: (! sum of ops 0.037473 AXL) 0.036633 AXL spendable. 0.000875 AXL delegated. 
DELEGATIONS
  to axelarvaloper13877kqxl4gftkpjavd2kjjd0d9rfxcu53sq3z3 0.000875 AXL  (claimable 0.000875)
REDELEGATIONS
  from axelarvaloper1gswfh889avkccdt5adqvglel9ttjglhdl0atqr to axelarvaloper13877kqxl4gftkpjavd2kjjd0d9rfxcu53sq3z3 0.000791 AXL

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

with fees=0.006175
STATUS (1510ms)
  amount: 0.030458 AXL
  estimated fees: 0.006175 AXL
  total spent: 0.036633 AXL
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (5.3s) 
✔️ broadcasted! (389ms) optimistic operation: 
  -0.036633 AXL      OUT        5CDB9C30AF4A5B6B3EFC9B2186455769C9DF992B6B4438247EBD1BEE8D321A5F 2025-01-16T05:43
✔️ operation confirmed (0.22ms): 
  -0.036633 AXL      OUT        5CDB9C30AF4A5B6B3EFC9B2186455769C9DF992B6B4438247EBD1BEE8D321A5F 2025-01-16T05:43
✔️ undefined: 0.037508 AXL (14ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8: (! sum of ops 0.037473 AXL) 0.036633 AXL spendable. 0.000875 AXL delegated. 
DELEGATIONS
  to axelarvaloper13877kqxl4gftkpjavd2kjjd0d9rfxcu53sq3z3 0.000875 AXL  (claimable 0.000875)
REDELEGATIONS
  from axelarvaloper1gswfh889avkccdt5adqvglel9ttjglhdl0atqr to axelarvaloper13877kqxl4gftkpjavd2kjjd0d9rfxcu53sq3z3 0.000791 AXL
✔️ destination operation 
  ? -36633           OUT        5CDB9C30AF4A5B6B3EFC9B2186455769C9DF992B6B4438247EBD1BEE8D321A5F 2025-01-16T05:43

necessary accounts resynced in 0.17ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 1.54534 AXL (20ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops 0.430374 AXL) 1.531534 AXL spendable. 0.013812 AXL delegated. 
DELEGATIONS
  to axelarvaloper17q4fqv86dxkes384tnmrvjr9ljp2slunr6k00w 0.013812 AXL  (claimable 0.013812)

max spendable ~1.52453
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.013812 -> axelarvaloper17q4fqv86dxkes384tnmrvjr9ljp2slunr6k00w
with fees=0.016001
  memo=LedgerLiveBot
STATUS (2725ms)
  amount: 0 AXL
  estimated fees: 0.016001 AXL
  total spent: 0.016001 AXL
errors: 
warnings: 
✔️ has been signed! (5.3s) 
✔️ broadcasted! (1099ms) optimistic operation: 
  -0.016001 AXL      UNDELEGATE D5A6CD0BEA7D44FA398EADBCC2F2B78086630575DFC8ACB4B8FF17A96581126B 2025-01-16T05:43
    to axelarvaloper17q4fqv86dxkes384tnmrvjr9ljp2slunr6k00w 0.013812 AXL    
✔️ operation confirmed (0.29ms): 
  -0.016001 AXL      UNDELEGATE D5A6CD0BEA7D44FA398EADBCC2F2B78086630575DFC8ACB4B8FF17A96581126B 2025-01-16T05:43
    to axelarvaloper17q4fqv86dxkes384tnmrvjr9ljp2slunr6k00w 0.013812 AXL    
✔️ undefined: 1.54534 AXL (20ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops 0.430374 AXL) 1.531534 AXL spendable. 0.013812 AXL delegated. 
DELEGATIONS
  to axelarvaloper17q4fqv86dxkes384tnmrvjr9ljp2slunr6k00w 0.013812 AXL  (claimable 0.013812)

necessary accounts resynced in 0.23ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 1.17115 AXL (7ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll: (! sum of ops -0.312534 AXL) 1.171156 AXL spendable. 

max spendable ~1.16415
★ using mutation 'send some'
→ TO undefined: 0.037508 AXL (14ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
✔️ transaction 
SEND  0.392108 AXL
TO axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8

with fees=0.006199
  memo=LedgerLiveBot
STATUS (1693ms)
  amount: 0.392108 AXL
  estimated fees: 0.006199 AXL
  total spent: 0.398307 AXL
errors: 
warnings: 
✔️ has been signed! (6.3s) 
✔️ broadcasted! (1804ms) optimistic operation: 
  -0.398307 AXL      OUT        A4E8144CC2822212B31B630DB9D0B7B9CCF19873F1C12EAD17F22339391FE17E 2025-01-16T05:43
✔️ operation confirmed (10ms): 
  -0.398307 AXL      OUT        A4E8144CC2822212B31B630DB9D0B7B9CCF19873F1C12EAD17F22339391FE17E 2025-01-16T05:43
✔️ undefined: 1.17115 AXL (7ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll: (! sum of ops -0.312534 AXL) 1.171156 AXL spendable. 
✔️ destination operation 
  ? -398307          OUT        A4E8144CC2822212B31B630DB9D0B7B9CCF19873F1C12EAD17F22339391FE17E 2025-01-16T05:43

necessary accounts resynced in 6ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 4.19804 AXL (10ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35: (! sum of ops -3.163631 AXL) 4.067729 AXL spendable. 0.130315 AXL delegated. 
DELEGATIONS
  to axelarvaloper1gktvcgrvmap66r7echsw6hhwfgresqy0cyuf8y 0.130315 AXL  (claimable 0.130315)

max spendable ~4.06073
★ using mutation 'send some'
→ TO undefined: 0.000115 AXL (12ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
✔️ transaction 
SEND  2.035536 AXL
TO axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx

with fees=0.006202
  memo=LedgerLiveBot
STATUS (1451ms)
  amount: 2.035536 AXL
  estimated fees: 0.006202 AXL
  total spent: 2.041738 AXL
errors: 
warnings: 
✔️ has been signed! (4.1s) 
✔️ broadcasted! (504ms) optimistic operation: 
  -2.041738 AXL      OUT        AAB7BF0A5B61DC9E4F2E6C07527389EB43AC29502298E4D2E246AB88C8C38E70 2025-01-16T05:43
✔️ operation confirmed (0.22ms): 
  -2.041738 AXL      OUT        AAB7BF0A5B61DC9E4F2E6C07527389EB43AC29502298E4D2E246AB88C8C38E70 2025-01-16T05:43
✔️ undefined: 4.19804 AXL (10ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35: (! sum of ops -3.163631 AXL) 4.067729 AXL spendable. 0.130315 AXL delegated. 
DELEGATIONS
  to axelarvaloper1gktvcgrvmap66r7echsw6hhwfgresqy0cyuf8y 0.130315 AXL  (claimable 0.130315)
✔️ destination operation 
  ? -2041738         OUT        AAB7BF0A5B61DC9E4F2E6C07527389EB43AC29502298E4D2E246AB88C8C38E70 2025-01-16T05:43


Spec cosmos (17)

Spec cosmos found 17 Cosmos accounts (preload: 664ms). Will use Cosmos 2.36.0 on nanoS 2.1.0
undefined: 0.014678 ATOM (57ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (39ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0.003669 ATOM (44ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0 ATOM (69ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.004332 ATOM (27ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.002036 ATOM (66ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
undefined: 0.004327 ATOM (26ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu:
undefined: 0.156427 ATOM (51ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0 ATOM (33ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 0.073342 ATOM (26ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.006936 ATOM (17ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 0.231874 ATOM (24ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 2.41107 ATOM (7ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
undefined: 0.889454 ATOM (9ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 1.81612 ATOM (5ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
undefined: 3.05866 ATOM (1ops) (cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5 on 44'/118'/15'/0/0) #15 js:2:cosmos:cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5:
undefined: 0 ATOM (0ops) (cosmos1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlus4qs5 on 44'/118'/16'/0/0) #16 js:2:cosmos:cosmos1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlus4qs5:
necessary accounts resynced in 0.18ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 0.014678 ATOM (57ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf: 0.014678 ATOM spendable. 

max spendable ~0.011934
★ using mutation 'send max'
→ TO undefined: 2.41107 ATOM (7ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
✔️ transaction 
SEND MAX
TO cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57

with fees=0.002747
STATUS (1255ms)
  amount: 0.011931 ATOM
  estimated fees: 0.002747 ATOM
  total spent: 0.014678 ATOM
errors: 
warnings: 
✔️ has been signed! (5s) 
✔️ broadcasted! (379ms) optimistic operation: 
  -0.014678 ATOM     OUT        101CE1D0F983D0A2C3CD8CFC72F0757641B7D566AAB393B6A235A1F5B02CED21 2025-01-16T05:40
✔️ operation confirmed (11s): 
  -0.014678 ATOM     OUT        101CE1D0F983D0A2C3CD8CFC72F0757641B7D566AAB393B6A235A1F5B02CED21 2025-01-16T05:40
✔️ undefined: 0 ATOM (58ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf: 0 ATOM spendable. 
(in 11s)
✔️ destination operation 
  +0.011931 ATOM     IN         101CE1D0F983D0A2C3CD8CFC72F0757641B7D566AAB393B6A235A1F5B02CED21 2025-01-16T05:40
(in 10.7s)

necessary accounts resynced in 0.18ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 0.156427 ATOM (51ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.184175 ATOM) 0.14973 ATOM spendable. 0.005238 ATOM delegated. 0.001459 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1et77usu8q2hargvyusl4qzryev8x8t9wwqkxfs 0.005238 ATOM  (claimable 0.005238)
UNDELEGATIONS
  from cosmosvaloper1de7qx00pz2j6gn9k88ntxxylelkazfk3g8fgh9 0.001459 ATOM
REDELEGATIONS
  from cosmosvaloper132juzk0gdmwuxvx4phug7m3ymyatxlh9734g4w to cosmosvaloper1et77usu8q2hargvyusl4qzryev8x8t9wwqkxfs 0.00003 ATOM

max spendable ~0.146984
★ using mutation 'send some'
→ TO undefined: 0.073342 ATOM (26ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
✔️ transaction 
SEND  0.097554 ATOM
TO cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5

with fees=0.002784
  memo=LedgerLiveBot
STATUS (1501ms)
  amount: 0.097554 ATOM
  estimated fees: 0.002784 ATOM
  total spent: 0.100338 ATOM
errors: 
warnings: 
✔️ has been signed! (6.7s) 
✔️ broadcasted! (127ms) optimistic operation: 
  -0.100338 ATOM     OUT        534FC84E1AB7DCBE308528B9326D20B033C5C9EF42F929CB81A1A6E59EF5BBD8 2025-01-16T05:41
✔️ operation confirmed (11s): 
  -0.100338 ATOM     OUT        534FC84E1AB7DCBE308528B9326D20B033C5C9EF42F929CB81A1A6E59EF5BBD8 2025-01-16T05:40
✔️ undefined: 0.056089 ATOM (52ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.083837 ATOM) 0.049392 ATOM spendable. 0.005238 ATOM delegated. 0.001459 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1et77usu8q2hargvyusl4qzryev8x8t9wwqkxfs 0.005238 ATOM  (claimable 0.005238)
UNDELEGATIONS
  from cosmosvaloper1de7qx00pz2j6gn9k88ntxxylelkazfk3g8fgh9 0.001459 ATOM
REDELEGATIONS
  from cosmosvaloper132juzk0gdmwuxvx4phug7m3ymyatxlh9734g4w to cosmosvaloper1et77usu8q2hargvyusl4qzryev8x8t9wwqkxfs 0.00003 ATOM
(in 11s)
✔️ destination operation 
  +0.097554 ATOM     IN         534FC84E1AB7DCBE308528B9326D20B033C5C9EF42F929CB81A1A6E59EF5BBD8 2025-01-16T05:40
(in 11s)

necessary accounts resynced in 0.19ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 0.170896 ATOM (27ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5: (! sum of ops 0.169654 ATOM) 0.097554 ATOM spendable. 0.073342 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj 0.073342 ATOM  (claimable 0.073342)

max spendable ~0.094808
★ using mutation 'claim rewards'
✔️ transaction 
CLAIMREWARD 
TO 
  0.003626 -> cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj
with fees=0.017396
  memo=LedgerLiveBot
STATUS (1065ms)
  amount: 0 ATOM
  estimated fees: 0.017396 ATOM
  total spent: 0.017396 ATOM
errors: 
warnings: claimReward ClaimRewardsFeesWarning
✔️ has been signed! (4.4s) 
✔️ broadcasted! (484ms) optimistic operation: 
  +0 ATOM            REWARD     6CA320AEEA1FD8139B10B936A43E1F31C78E83E1506570A24EBA10C9867675E0 2025-01-16T05:41
    to cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj                 
✔️ operation confirmed (11.1s): 
  +0.003625 ATOM     REWARD     6CA320AEEA1FD8139B10B936A43E1F31C78E83E1506570A24EBA10C9867675E0 2025-01-16T05:41
    to cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj                 
✔️ undefined: 0.157125 ATOM (28ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5: (! sum of ops 0.173279 ATOM) 0.083783 ATOM spendable. 0.073342 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj 0.073342 ATOM 
(in 11.1s)

necessary accounts resynced in 0.17ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 0.231874 ATOM (24ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 0.246502 ATOM) 0.010257 ATOM spendable. 0.221617 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c 0.135496 ATOM  (claimable 0.135496)
  to cosmosvaloper13sduv92y3xdhy3rpmhakrc3v7t37e7ps9l0kpv 0.064593 ATOM  (claimable 0.064593)
  to cosmosvaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpfdn6m9d 0.021528 ATOM  (claimable 0.021528)

max spendable ~0.007512
★ using mutation 'send some'
→ TO undefined: 3.05866 ATOM (1ops) (cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5 on 44'/118'/15'/0/0) #15 js:2:cosmos:cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5:
✔️ transaction 
SEND  0.004566 ATOM
TO cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5

with fees=0.002748
STATUS (1507ms)
  amount: 0.004566 ATOM
  estimated fees: 0.002748 ATOM
  total spent: 0.007314 ATOM
errors: 
warnings: 
✔️ has been signed! (4.5s) 
✔️ broadcasted! (199ms) optimistic operation: 
  -0.007314 ATOM     OUT        EC21558923837E57957B1EE9E928B2DDD6E655B3C47DFD97128E5D3BF2581480 2025-01-16T05:41
✔️ operation confirmed (11.3s): 
  -0.007314 ATOM     OUT        EC21558923837E57957B1EE9E928B2DDD6E655B3C47DFD97128E5D3BF2581480 2025-01-16T05:41
✔️ undefined: 0.22456 ATOM (25ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 0.239188 ATOM) 0.002943 ATOM spendable. 0.221617 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c 0.135496 ATOM  (claimable 0.135496)
  to cosmosvaloper13sduv92y3xdhy3rpmhakrc3v7t37e7ps9l0kpv 0.064593 ATOM  (claimable 0.064593)
  to cosmosvaloper1hjct6q7npsspsg3dgvzk3sdf89spmlpfdn6m9d 0.021528 ATOM  (claimable 0.021528)
(in 11.3s)
✔️ destination operation 
  +0.004566 ATOM     IN         EC21558923837E57957B1EE9E928B2DDD6E655B3C47DFD97128E5D3BF2581480 2025-01-16T05:41
(in 10.7s)

necessary accounts resynced in 0.20ms
▬ Cosmos 2.36.0 on nanoS 2.1.0
→ FROM undefined: 0.889454 ATOM (9ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64: (! sum of ops 0.889435 ATOM) 0.88191 ATOM spendable. 0.006107 ATOM delegated. 0.001437 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1xsgse9yump2j35nfut2tkwh7mdtca5llcgr79d 0.006107 ATOM  (claimable 0.006107)
UNDELEGATIONS
  from cosmosvaloper1gqem6t55xrjc8nqf7y8jyp9xzgnm60zu007nrl 0.001437 ATOM

max spendable ~0.879163
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000468 ATOM
TO 
  0.000468 -> cosmosvaloper1nz3c4q40j8jyvg2hcljkwhe69872mnllf7v9xh
with fees=0.010146
  memo=LedgerLiveBot
STATUS (1705ms)
  amount: 0.000468 ATOM
  estimated fees: 0.010146 ATOM
  total spent: 0.010614 ATOM
errors: 
warnings: 
✔️ has been signed! (6.2s) 
✔️ broadcasted! (78ms) optimistic operation: 
  -0.010614 ATOM     DELEGATE   F2BF823DAD6F489EB0EFAB64C345FC46F3541D956B1EFCCE03FF09B028DFEC51 2025-01-16T05:42
    to cosmosvaloper1nz3c4q40j8jyvg2hcljkwhe69872mnllf7v9xh                 
✔️ operation confirmed (11.1s): 
  -0.010146 ATOM     DELEGATE   F2BF823DAD6F489EB0EFAB64C345FC46F3541D956B1EFCCE03FF09B028DFEC51 2025-01-16T05:42
    to cosmosvaloper1nz3c4q40j8jyvg2hcljkwhe69872mnllf7v9xh                 
✔️ undefined: 0.879308 ATOM (10ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64: (! sum of ops 0.879289 ATOM) 0.871296 ATOM spendable. 0.006575 ATOM delegated. 0.001437 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1xsgse9yump2j35nfut2tkwh7mdtca5llcgr79d 0.006107 ATOM  (claimable 0.006107)
  to cosmosvaloper1nz3c4q40j8jyvg2hcljkwhe69872mnllf7v9xh 0.000468 ATOM 
UNDELEGATIONS
  from cosmosvaloper1gqem6t55xrjc8nqf7y8jyp9xzgnm60zu007nrl 0.001437 ATOM
(in 11.1s)


Spec secret_network (failed)


Spec Avalanche C-Chain (10)

Spec Avalanche C-Chain found 10 Avalanche C-Chain accounts (preload: 174ms). 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.768479 AVAX (4ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:avalanche_c_chain:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
✔️ transaction 
SEND MAX
TO 0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1
STATUS (774ms)
  amount: 0.197308342308504675 AVAX
  estimated fees: 0.000385918304751 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 60.8s – ends at 2025-01-16T05:51:49.089Z)
necessary accounts resynced in 0.17ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.098559662178169837 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (680ms)
  amount: 0.098559662178169837 AVAX
  estimated fees: 0.000063268137114 AVAX
  total spent: 0.098622930315283837 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.8s – ends at 2025-01-16T05:51:49.091Z)
necessary accounts resynced in 0.27ms
▬ 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.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (690ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.000052461091914 AVAX
  total spent: 0.200909620746340997 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.7s – ends at 2025-01-16T05:51:49.093Z)

Spec Binance Smart Chain (10)

Spec Binance Smart Chain found 10 Binance Smart Chain accounts (preload: 641ms). Will use BinanceSmartChain 1.11.3 on nanoS 2.1.0
undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.0242889 BNB (104ops) (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 (87ops) (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 (70ops) (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.15ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'move 50%'
→ TO undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (711ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.00002625 BNB
  total spent: 0.027559081547880244 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.8s – ends at 2025-01-16T05:51:49.100Z)
necessary accounts resynced in 0.16ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (104ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.012998433531152045 BNB)
max spendable ~0.0242889
★ using mutation 'send max'
→ TO undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND MAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (850ms)
  amount: 0.024262685219324468 BNB
  estimated fees: 0.00002625 BNB
  total spent: 0.024288935219324468 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 2025-01-16T05:51:49.106Z)
necessary accounts resynced in 0.20ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (70ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.012112967609641233 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (679ms)
  amount: 0.012112967609641233 BNB
  estimated fees: 0.00002625 BNB
  total spent: 0.012139217609641233 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x8C63f5be03552E33","x":10,"y":17,"w":112,"h":32}
(totally spent 60.7s – ends at 2025-01-16T05:51:49.122Z)

Spec Cronos (failed)


Spec Fantom (failed)


Spec Boba (failed)

Spec Boba found 1 Boba accounts (preload: 51ms). 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 (5)

Spec Telos found 5 Telos accounts (preload: 40ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.00273787 TLOS (21ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:telos_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00274107 TLOS (20ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:telos_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.850631 TLOS (20ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:telos_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 17.7615 TLOS (20ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:telos_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 TLOS (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:telos_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
necessary accounts resynced in 0.14ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 17.7615 TLOS (20ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:telos_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.0026524318593465 TLOS)
max spendable ~17.7269
★ using mutation 'move 50%'
→ TO undefined: 0.00273787 TLOS (21ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:telos_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  8.863484515613203572 TLOS
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (2130ms)
  amount: 8.863484515613203572 TLOS
  estimated fees: 0.01370538683695125 TLOS
  total spent: 8.877189902450154822 TLOS
errors: 
warnings: 
✔️ has been signed! (5.1s) 
✔️ broadcasted! (183ms) optimistic operation: 
  -8.877189902450154822 TLOS OUT        0xfc80a4613f2b2009edabc945802b547d4745f663dd97de01c9470f7a8b404ddb 2025-01-16T05:41
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:telos_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:-0xfc80a4613f2b2009edabc945802b547d4745f663dd97de01c9470f7a8b404ddb-OUT
(totally spent 10min 8s – ends at 2025-01-16T05:51:49.139Z)

Spec Polygon zkEVM (5)

Spec Polygon zkEVM found 5 Polygon zkEVM accounts (preload: 45ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.00602061 ETH (91ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0 ETH (101ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.0128427 ETH (98ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0 ETH (74ops) (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.11ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00602061 ETH (91ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.005966158964578149 ETH)
max spendable ~0.00601898
★ using mutation 'send max'
→ TO undefined: 0 ETH (74ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND MAX
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (1137ms)
  amount: 0.006019968970828149 ETH
  estimated fees: 0.0000006489 ETH
  total spent: 0.006020617870828149 ETH
errors: 
warnings: 
✔️ has been signed! (7.3s) 
✔️ broadcasted! (144ms) optimistic operation: 
  -0.006020617870828149 ETH OUT        0x7cdecd45425d5125cc8df2af0e24a52ed7f4a9f527ee854c824a2c3ad7f922c7 2025-01-16T05:42
✔️ operation confirmed (10.4s): 
  -0.006020617870828149 ETH OUT        0x7cdecd45425d5125cc8df2af0e24a52ed7f4a9f527ee854c824a2c3ad7f922c7 2025-01-16T05:42
✔️ undefined: 0 ETH (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops -0.00005445890625 ETH)(in 10.4s)
✔️ destination operation 
  +0.006019968970828149 ETH IN         0x7cdecd45425d5125cc8df2af0e24a52ed7f4a9f527ee854c824a2c3ad7f922c7 2025-01-16T05:42
(in 10.5s)

necessary accounts resynced in 0.21ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0128427 ETH (98ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops 0.012771678755975851 ETH)
max spendable ~0.012841
★ using mutation 'move 50%'
→ TO undefined: 0 ETH (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.006420504224873425 ETH
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (254ms)
  amount: 0.006420504224873425 ETH
  estimated fees: 0.0000007098 ETH
  total spent: 0.006421214024873425 ETH
errors: 
warnings: 
✔️ has been signed! (4.7s) 
✔️ broadcasted! (171ms) optimistic operation: 
  -0.006421214024873425 ETH OUT        0xe43de30d3c2597fa8c2657fefb4f7193ae477a2e6d4fd66cc3c4d5b236daa5cc 2025-01-16T05:42
✔️ operation confirmed (10.5s): 
  -0.006421214024873425 ETH OUT        0xe43de30d3c2597fa8c2657fefb4f7193ae477a2e6d4fd66cc3c4d5b236daa5cc 2025-01-16T05:42
✔️ undefined: 0.00642158 ETH (99ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops 0.006350464731102426 ETH)(in 10.5s)
✔️ destination operation 
  +0.006420504224873425 ETH IN         0xe43de30d3c2597fa8c2657fefb4f7193ae477a2e6d4fd66cc3c4d5b236daa5cc 2025-01-16T05:42
(in 10.4s)

necessary accounts resynced in 0.25ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00601996 ETH (75ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.005973653306755149 ETH)
max spendable ~0.00601803
★ using mutation 'move 50%'
→ TO undefined: 0.00642158 ETH (99ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.003009017235414074 ETH
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (231ms)
  amount: 0.003009017235414074 ETH
  estimated fees: 0.0000007665 ETH
  total spent: 0.003009783735414074 ETH
errors: 
warnings: 
✔️ has been signed! (3.9s) 
✔️ broadcasted! (104ms) optimistic operation: 
  -0.003009783735414074 ETH OUT        0x7e1a837112e95a75dcbbe305888a263a42c4f043c6c75eed461093e31ac79dca 2025-01-16T05:42
✔️ operation confirmed (10.4s): 
  -0.003009783735414074 ETH OUT        0x7e1a837112e95a75dcbbe305888a263a42c4f043c6c75eed461093e31ac79dca 2025-01-16T05:42
✔️ undefined: 0.00301018 ETH (76ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.002963869571341075 ETH)(in 10.4s)
✔️ destination operation 
  +0.003009017235414074 ETH IN         0x7e1a837112e95a75dcbbe305888a263a42c4f043c6c75eed461093e31ac79dca 2025-01-16T05:42
(in 10.5s)


Spec Filecoin (0)


Spec Polkadot (failed)


Spec Tron (12)

Spec Tron found 12 Tron accounts (preload: 44s). Will use Tron 0.5.0 on nanoSP 1.1.1
undefined: 1.84133 TRX (107ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 47.385 TRX (94ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 192.485 TRX (127ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 0.000002 TRX (76ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 0.000002 TRX (91ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 8.24476 TRX (39ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 0 TRX (49ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 1.94912 TRX (20ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 77.1688 TRX (18ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
undefined: 403.984 TRX (10ops) (TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6 on 44'/195'/9'/0/0) #9 js:2:tron:TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6:
undefined: 5.94246 TRX (1ops) (TAzGLgTWxbVzKo958joUf2ofiBVrUq1cVp on 44'/195'/10'/0/0) #10 js:2:tron:TAzGLgTWxbVzKo958joUf2ofiBVrUq1cVp:
undefined: 0 TRX (0ops) (TWFguNRT5NsuD7rRzASrMpiiyzhsDxCGuF on 44'/195'/11'/0/0) #11 js:2:tron:TWFguNRT5NsuD7rRzASrMpiiyzhsDxCGuF:
necessary accounts resynced in 0.17ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 47.385 TRX (94ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
max spendable ~16.285
★ using mutation 'send max to another account'
→ TO undefined: 8.24476 TRX (39ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
✔️ transaction 
SEND MAX 
TO TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H
STATUS (994ms)
  amount: 17.385001 TRX
  estimated fees: 0 TRX
  total spent: 17.385001 TRX
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (145ms) optimistic operation: 
  -17.385001 TRX     OUT        e9070c9e31e9fa201ad62808f4a86fff8d092c986403647d0896ce92a27097bc 2025-01-16T05:44
✔️ operation confirmed (11.4s): 
  -17.385001 TRX     OUT        e9070c9e31e9fa201ad62808f4a86fff8d092c986403647d0896ce92a27097bc 2025-01-16T05:44
✔️ undefined: 30 TRX (95ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:(in 11.4s)
✔️ destination operation 
  +17.385001 TRX     IN         e9070c9e31e9fa201ad62808f4a86fff8d092c986403647d0896ce92a27097bc 2025-01-16T05:44
(in 11s)

necessary accounts resynced in 9ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 192.485 TRX (127ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
max spendable ~17.385
★ using mutation 'move 50% to another account'
→ TO undefined: 1.94912 TRX (20ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
✔️ transaction 
SEND  8.6925 TRX 
TO TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1
STATUS (937ms)
  amount: 8.6925 TRX
  estimated fees: 0 TRX
  total spent: 8.6925 TRX
errors: 
warnings: 
✔️ has been signed! (4.3s) 
✔️ broadcasted! (112ms) optimistic operation: 
  -8.6925 TRX        OUT        749cedefc4dc56f738eed8fece3a3847352642204881c1d16fe2b70fbbf26ded 2025-01-16T05:44
✔️ operation confirmed (11.7s): 
  -8.6925 TRX        OUT        749cedefc4dc56f738eed8fece3a3847352642204881c1d16fe2b70fbbf26ded 2025-01-16T05:44
✔️ undefined: 183.792 TRX (128ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:(in 11.7s)
✔️ destination operation 
  +8.6925 TRX        IN         749cedefc4dc56f738eed8fece3a3847352642204881c1d16fe2b70fbbf26ded 2025-01-16T05:44
(in 11s)

necessary accounts resynced in 0.21ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 25.6297 TRX (40ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
max spendable ~24.5297
★ using mutation 'move 50% to another account'
→ TO undefined: 10.6416 TRX (21ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
✔️ transaction 
SEND  12.26488 TRX 
TO TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1
STATUS (997ms)
  amount: 12.26488 TRX
  estimated fees: 0 TRX
  total spent: 12.26488 TRX
errors: 
warnings: 
✔️ has been signed! (2577ms) 
✔️ broadcasted! (181ms) optimistic operation: 
  -12.26488 TRX      OUT        ce44d81b177903b3f14ed2df7e66e85f345015dc7f0151f8de3f68ca3f1f1fe5 2025-01-16T05:45
✔️ operation confirmed (11.3s): 
  -12.26488 TRX      OUT        ce44d81b177903b3f14ed2df7e66e85f345015dc7f0151f8de3f68ca3f1f1fe5 2025-01-16T05:45
✔️ undefined: 13.3648 TRX (41ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:(in 11.3s)
✔️ destination operation 
  +12.26488 TRX      IN         ce44d81b177903b3f14ed2df7e66e85f345015dc7f0151f8de3f68ca3f1f1fe5 2025-01-16T05:45
(in 11.3s)


Details of the 39 uncovered mutations

Spec Qtum (1)

  • send max: balance is too low (2)

Spec Decred (3)

  • optimize-size: balance is too low (3)
  • send 1 utxo: balance is too low (3)
  • send OP_RETURN transaction: balance is too low (3)

Spec cardano (2)

  • move ~10% token: balance is too low (3)
  • move ~50%: balance is too low (3)

Spec axelar (2)

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

Spec cosmos (2)

  • undelegate: balance is too low (9), already enough delegations (3)
  • redelegate: balance is too low for redelegate (9), none can redelegate (3)

Spec secret_network (6)

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

Spec Binance Smart Chain (1)

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

Spec Cronos (3)

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

Spec Fantom (3)

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

Spec Boba (3)

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

Spec Telos (1)

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

Spec Filecoin (5)

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

Spec Polkadot (7)

  • send 50%~:
  • send max:
  • bond - bondExtra:
  • unbond:
  • rebond:
  • nominate:
  • withdraw:
Portfolio ($555.77) – Details of the 16 currencies
Spec (accounts) State Remaining Runs (est) funds?
Qtum (6) 499 ops (+6), 2.36212 QTUM ($7.88) 👍 185 MQGCzjycDmruRPhisCtLrPCRPYmPpQuS6i
Decred (5) 420 ops (+4), 1.27787 DCR ($18.67) 💪 999+ DsWfArSNd4YuBVhnHHxNwQfVGaUib187ZcB
cardano (7) 158 ops (+4), 86.7417 ADA ($88.84) 👍 75 addr1qx9xyllht45cg6asn3e9r6rfn7jcdc6mu6u48cjth95mdahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqpwuwvc
axelar (18) 151 ops , 15.6524 AXL ($10.25) 👍 163 axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g
cosmos (17) 509 ops (+8), 8.36373 ATOM ($57.28) 👍 134 cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf
secret_network (0) 0 ops , 🤷‍♂️ ``
Avalanche C-Chain (10) 250 ops , 2.82586 AVAX ($111.20) 💪 553 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Binance Smart Chain (10) 803 ops , 0.118141 BNB ($83.87) 👍 84 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Cronos (0) 0 ops , 🤷‍♂️ ``
Fantom (0) 0 ops , 🤷‍♂️ ``
Boba (1) 0 ops , 0 ETH ($0.00) 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Telos (5) 83 ops (+2), 18.6176 TLOS ($3.93) 💪 999+ 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Polygon zkEVM (5) 370 ops (+6), 0.0188634 ETH ($0.00) 👍 328 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Filecoin (0) 0 ops , 🤷‍♂️ ($0.00) ``
Polkadot (0) 0 ops , 🤷‍♂️ ``
Tron (12) 638 ops (+6), 535 TRX ($173.85) 💪 999+ TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
undefined [segwit]: 0.163394 QTUM (135ops) (MQGCzjycDmruRPhisCtLrPCRPYmPpQuS6i on 49'/88'/0'/0/68) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.418297 QTUM (121ops) (MNYC3a3sxTmQiYZJ22TTrrazwNuaCRrU2p on 49'/88'/1'/0/60) 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.0526192 QTUM (129ops) (QRebWdxuiaGVnP8kVoGbfLkkHsScAtc6un on 44'/88'/0'/0/69) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 1.72167 QTUM (114ops) (QecojAaMqvb1q8kAePkSzMkBUgd2LWeU7W on 44'/88'/1'/0/52) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
undefined: 0.00556409 DCR (123ops) (DsWfArSNd4YuBVhnHHxNwQfVGaUib187ZcB on 44'/42'/0'/0/67) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 1.26689 DCR (104ops) (Dsabk1HdKPcGn5Aw64ecBfduwuJJ9DuFFh3 on 44'/42'/1'/0/50) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.00535013 DCR (99ops) (DsiPXbXhyTAnmVH3jTVC76Yc7zGCYryN7jW on 44'/42'/2'/0/51) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0 DCR (94ops) (DscVFGwxhzvtev9k7yY66nbfGVoD9ctAM3B on 44'/42'/3'/0/42) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
undefined: 0 DCR (0ops) (DskCZ4d3mZkXwLxAEjx2sEM121SFimdgvSv on 44'/42'/4'/0/0) #4 js:2:decred:dpubZEswmUQs2uoMffXvbjYzmFKAA8qiVoRpBd8QwvJKFgG4HaLsEf3yq9JdFJHzvmMqTKUybT8NPDs16zti7N3ehBSQmxZQB76h8MsWKLZDFAX:
undefined: 21.5895 ADA (40ops) (addr1qx9xyllht45cg6asn3e9r6rfn7jcdc6mu6u48cjth95mdahgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqpwuwvc on 1852'/1815'/0'/0/13) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano
undefined: 0 ADA (24ops) (addr1qycsrd228ux4p2t5ec2gpa82kkaucl3m87wxh4ltfsn30gufrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqpghg5a on 1852'/1815'/1'/0/6) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
undefined: 46.5992 ADA (39ops) (addr1q82ccle006c5w4u2scu08d3wpmglezd6c43xpv829hl7rc7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qt6l3l6 on 1852'/1815'/2'/0/14) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
undefined: 0 ADA (22ops) (addr1qyc272pda05k5flre54he7cl2jeqn9duycjs74dntez0wtn39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqf8rvvr on 1852'/1815'/3'/0/9) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
undefined: 16.0887 ADA (16ops) (addr1qxefwgygmedaxh5ppqfq3ed87eccejy0t0pqcxqq54uh5nmnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8st6h84d on 1852'/1815'/4'/0/4) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano
undefined: 0 ADA (17ops) (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.005682 AXL (14ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 0.923866 AXL (9ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0 AXL (0ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.007651 AXL (6ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0.008039 AXL (9ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 0.000115 AXL (12ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0.013722 AXL (12ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.037508 AXL (14ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0 AXL (12ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.012127 AXL (14ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0 AXL (7ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 1.54534 AXL (20ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 1.17115 AXL (7ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 4.19804 AXL (10ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 3.21125 AXL (1ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 1.21829 AXL (1ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
undefined: 3.44473 AXL (3ops) (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 (58ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (39ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0.003669 ATOM (44ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0 ATOM (69ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.004332 ATOM (27ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.002036 ATOM (66ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
undefined: 0.004327 ATOM (26ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu:
undefined: 0.056089 ATOM (52ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0 ATOM (33ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 0.157125 ATOM (28ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.006936 ATOM (17ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 0.22456 ATOM (25ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 2.423 ATOM (8ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
undefined: 0.879308 ATOM (10ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 1.81612 ATOM (5ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
undefined: 3.06323 ATOM (2ops) (cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5 on 44'/118'/15'/0/0) #15 js:2:cosmos:cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5:
undefined: 0 ATOM (0ops) (cosmos1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlus4qs5 on 44'/118'/16'/0/0) #16 js:2:cosmos:cosmos1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlus4qs5:
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 (104ops) (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 (87ops) (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 (70ops) (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 ETH (0ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:boba:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 8.86622 TLOS (22ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:telos_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00274107 TLOS (20ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:telos_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.850631 TLOS (20ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:telos_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 8.8871 TLOS (21ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:telos_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 TLOS (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:telos_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.0064205 ETH (93ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0 ETH (101ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.0094306 ETH (100ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00301018 ETH (76ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 ETH (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:polygon_zk_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 1.84133 TRX (107ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 30 TRX (95ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 183.792 TRX (128ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 0.000002 TRX (76ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 0.000002 TRX (91ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 13.3648 TRX (41ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 0 TRX (49ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 22.9065 TRX (22ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 77.1688 TRX (18ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
undefined: 403.984 TRX (10ops) (TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6 on 44'/195'/9'/0/0) #9 js:2:tron:TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6:
undefined: 5.94246 TRX (1ops) (TAzGLgTWxbVzKo958joUf2ofiBVrUq1cVp on 44'/195'/10'/0/0) #10 js:2:tron:TAzGLgTWxbVzKo958joUf2ofiBVrUq1cVp:
undefined: 0 TRX (0ops) (TWFguNRT5NsuD7rRzASrMpiiyzhsDxCGuF on 44'/195'/11'/0/0) #11 js:2:tron:TWFguNRT5NsuD7rRzASrMpiiyzhsDxCGuF:
Performance ⏲ 12min 43s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 46.5s 10min 53s 1580ms 49.2s 3min 59s 8.9s 8min 16s 2min 41s
Qtum (4) 0.18ms 37.3s 1.27ms 765ms 23.1s 354ms 31.7s 31.9s
Decred (4) 0.37ms 30.4s 1.47ms 607ms 14.1s 514ms 20.9s 21s
cardano (6) 0.64ms 3min 16s 776ms 1198ms 1min 46s 920ms 5min 22s 10.8s
axelar (17) 797ms 2min 44s 15ms 28.6s 38s 4.8s 11ms N/A
cosmos (16) 664ms 54.2s 20ms 7s 26.7s 1266ms 55.4s 32.4s
secret_network (0) N/A N/A N/A N/A N/A N/A N/A N/A
Avalanche C-Chain (9) 174ms 32s 1.96ms 2144ms N/A N/A N/A N/A
Binance Smart Chain (9) 641ms 38.2s 6ms 2240ms N/A N/A N/A N/A
Cronos (0) 81ms N/A N/A N/A N/A N/A N/A N/A
Fantom (0) 88ms N/A N/A N/A N/A N/A N/A N/A
Boba (0) 51ms 7.5s N/A N/A N/A N/A N/A N/A
Telos (4) 40ms 12.5s 694ms 2130ms 5.1s 183ms N/A N/A
Polygon zkEVM (4) 45ms 5.2s 25ms 1622ms 15.9s 418ms 31.2s 31.4s
Filecoin (0) N/A N/A N/A N/A N/A N/A N/A N/A
Polkadot (0) N/A N/A N/A N/A N/A N/A N/A N/A
Tron (11) 44s 76s 38ms 2928ms 9.9s 438ms 34.4s 33.3s

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

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

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

[Bot] Testing with 'Nitrogen' ✅ 3 txs ❌ 1 txs ($10.24) ⏲ 1min 46s

❌ 1 specs have problems: Algorand

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

❌ 1 mutation errors
necessary accounts resynced in 0.19ms
▬ Algorand 2.1.14 on nanoS 2.1.0
→ FROM undefined: 4.91729 ALGO (637ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ: 1.817296 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Exodus: 0 EXIT (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Opulous: 0 OPUL (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~1.81629
★ using mutation 'opt-In ASA available'
→ TO undefined: 4.91729 ALGO (637ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
✔️ transaction 
    OPT_IN 0 ALGO
    TO RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ
    with fees=0.001 ALGO
STATUS (900ms)
  amount: 0 ALGO
  estimated fees: 0.001 ALGO
  total spent: 0.001 ALGO
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Asset ID'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Asset ID": "GP (#403499324)",
+   "Asset ID": "NEXUS (#403499324)",
  }
(totally spent 2960ms – ends at 2025-01-16T07:56:19.507Z)
⚠️ 1 spec hints
  • Spec Algorand:
    • mutations should define a testDestination(): opt-In ASA available
Details of the 4 mutations

Spec Algorand (6)

Spec Algorand found 6 Algorand accounts. Will use Algorand 2.1.14 on nanoS 2.1.0
undefined: 6.90729 ALGO (637ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 3.1 ALGO (636ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 4.08695 ALGO (665ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 5.75824 ALGO (735ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 2.7 ALGO (579ops) (GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI on 44'/283'/4'/0/0) #4 js:2:algorand:GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI:
undefined: 0 ALGO (0ops) (X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU on 44'/283'/5'/0/0) #5 js:2:algorand:X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU:
necessary accounts resynced in 0.19ms
▬ Algorand 2.1.14 on nanoS 2.1.0
→ FROM undefined: 6.90729 ALGO (637ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4: 3.807295 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Exodus: 0 EXIT (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Opulous: 0 OPUL (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~3.80629
★ using mutation 'move ~50%'
→ TO undefined: 3.1 ALGO (636ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
✔️ transaction 
    SEND 1.81729 ALGO
    TO RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ
    with fees=0.001 ALGO
STATUS (884ms)
  amount: 1.817296 ALGO
  estimated fees: 0.001 ALGO
  total spent: 1.818296 ALGO
errors: 
warnings: 
✔️ has been signed! (5s) 
✔️ broadcasted! (68ms) optimistic operation: 
  -1.818296 ALGO     OUT        ADPJ7JLYBNOSKUN6XBECOBXNGSOF64IF6DQICMW7PGJAO5GZ4POA 2025-01-16T07:54
✔️ operation confirmed (10.3s): 
  -1.818296 ALGO     OUT        ADPJ7JLYBNOSKUN6XBECOBXNGSOF64IF6DQICMW7PGJAO5GZ4POA 2025-01-16T07:54 REWARDS : 0 ALGO          
✔️ undefined: 5.08899 ALGO (638ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4: 1.988999 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Exodus: 0 EXIT (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Opulous: 0 OPUL (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)(in 10.3s)
✔️ destination operation 
  +1.817296 ALGO     IN         ADPJ7JLYBNOSKUN6XBECOBXNGSOF64IF6DQICMW7PGJAO5GZ4POA 2025-01-16T07:54 REWARDS : 0 ALGO          
(in 10.4s)

necessary accounts resynced in 0.19ms
▬ Algorand 2.1.14 on nanoS 2.1.0
→ FROM undefined: 4.91729 ALGO (637ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ: 1.817296 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Exodus: 0 EXIT (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Opulous: 0 OPUL (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~1.81629
★ using mutation 'opt-In ASA available'
→ TO undefined: 4.91729 ALGO (637ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
✔️ transaction 
    OPT_IN 0 ALGO
    TO RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ
    with fees=0.001 ALGO
STATUS (900ms)
  amount: 0 ALGO
  estimated fees: 0.001 ALGO
  total spent: 0.001 ALGO
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Asset ID'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Asset ID": "GP (#403499324)",
+   "Asset ID": "NEXUS (#403499324)",
  }
(totally spent 2960ms – ends at 2025-01-16T07:56:19.541Z)
necessary accounts resynced in 0.29ms
▬ Algorand 2.1.14 on nanoS 2.1.0
→ FROM undefined: 4.08695 ALGO (665ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE: 0.98695 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Exodus: 0 EXIT (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Opulous: 0 OPUL (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~0.98595
★ using mutation 'move ~50%'
→ TO undefined: 4.91729 ALGO (637ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
✔️ transaction 
    SEND 0.473185 ALGO
    TO RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ
    with fees=0.001 ALGO
STATUS (964ms)
  amount: 0.473185 ALGO
  estimated fees: 0.001 ALGO
  total spent: 0.474185 ALGO
errors: 
warnings: 
✔️ has been signed! (4.7s) 
✔️ broadcasted! (375ms) optimistic operation: 
  -0.474185 ALGO     OUT        2DAJGWMBF3CS6CMY7WYLHHCLVWYJXXSEQX5WNRAUXYX5F7RGKYNA 2025-01-16T07:55
✔️ operation confirmed (10.3s): 
  -0.474185 ALGO     OUT        2DAJGWMBF3CS6CMY7WYLHHCLVWYJXXSEQX5WNRAUXYX5F7RGKYNA 2025-01-16T07:55 REWARDS : 0 ALGO          
✔️ undefined: 3.61276 ALGO (666ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE: 0.512765 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Exodus: 0 EXIT (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Opulous: 0 OPUL (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)(in 10.3s)
✔️ destination operation 
  +0.473185 ALGO     IN         2DAJGWMBF3CS6CMY7WYLHHCLVWYJXXSEQX5WNRAUXYX5F7RGKYNA 2025-01-16T07:55 REWARDS : 0 ALGO          
(in 10.3s)

necessary accounts resynced in 0.18ms
▬ Algorand 2.1.14 on nanoS 2.1.0
→ FROM undefined: 5.75824 ALGO (735ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA: 2.65824 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Exodus: 0 EXIT (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Opulous: 0 OPUL (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~2.65724
★ using mutation 'send max'
→ TO undefined: 5.39048 ALGO (638ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
✔️ transaction 
    SEND MAX
    TO RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ
    with fees=0.001 ALGO
STATUS (1541ms)
  amount: 2.65724 ALGO
  estimated fees: 0.001 ALGO
  total spent: 2.65824 ALGO
errors: 
warnings: 
✔️ has been signed! (4.8s) 
✔️ broadcasted! (355ms) optimistic operation: 
  -2.65824 ALGO      OUT        K4IENFWL2ALU2HOWBR4BLCWA5RHINE65PVSSVQOAI2WYZPQ4HTZQ 2025-01-16T07:55
✔️ operation confirmed (10.5s): 
  -2.65824 ALGO      OUT        K4IENFWL2ALU2HOWBR4BLCWA5RHINE65PVSSVQOAI2WYZPQ4HTZQ 2025-01-16T07:56 REWARDS : 0 ALGO          
✔️ undefined: 3.1 ALGO (736ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA: 0 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Exodus: 0 EXIT (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Opulous: 0 OPUL (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)(in 10.5s)
✔️ destination operation 
  +2.65724 ALGO      IN         K4IENFWL2ALU2HOWBR4BLCWA5RHINE65PVSSVQOAI2WYZPQ4HTZQ 2025-01-16T07:56 REWARDS : 0 ALGO          
(in 10.3s)


Details of the 2 uncovered mutations

Spec Algorand (2)

  • send ASA ~50%: Spendable balance is too low (2)
  • claim rewards: No pending rewards (2)
Portfolio ($10.24) – Details of the 1 currencies
Spec (accounts) State Remaining Runs (est) funds?
Algorand (6) 3258 ops (+6), 7.45248 ALGO ($10.24) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
undefined: 5.08899 ALGO (638ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 8.04772 ALGO (639ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 3.61276 ALGO (666ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 3.1 ALGO (736ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 2.7 ALGO (579ops) (GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI on 44'/283'/4'/0/0) #4 js:2:algorand:GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI:
undefined: 0 ALGO (0ops) (X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU on 44'/283'/5'/0/0) #5 js:2:algorand:X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU:
Performance ⏲ 1min 46s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 1.12ms 17.3s 1.13ms 4.3s 14.5s 798ms 31.1s 31s
Algorand (5) 1.12ms 17.3s 1.13ms 4.3s 14.5s 798ms 31.1s 31s

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

Please sign in to comment.