Skip to content

Commit

Permalink
Merge pull request #7569 from LedgerHQ/bugfix/LIVE-12412-lld-cls-dete…
Browse files Browse the repository at this point in the history
…ction

[LIVE-12412] fix(lld/MyLedger): custom lock screen not recognized
  • Loading branch information
ofreyssinet-ledger authored Aug 14, 2024
2 parents 45afb26 + fbe9c20 commit 17fe67c
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 17 deletions.
5 changes: 5 additions & 0 deletions .changeset/grumpy-deers-develop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"ledger-live-desktop": patch
---

Fix existing custom lock screen not being recognized in My Ledger ("Add" displayed instead of "Change" and no option to delete the current lock screen picture)
5 changes: 3 additions & 2 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,9 @@ apps/ledger-live-mobile/src/newArch/features/Web3Hub/ @ledgerhq/wallet-api
# Devices team
apps/cli/src/commands/devices @ledgerhq/live-devices
**/src/renderer/screens/manager/ @ledgerhq/live-devices
**/screens/CustomImage @ledgerhq/live-devices
**/components/CustomImage @ledgerhq/live-devices
**/screens/customImage @ledgerhq/live-devices
**/components/CustomImage @ledgerhq/live-devices
**/screens/CustomImage @ledgerhq/live-devices
**/SyncOnboarding/** @ledgerhq/live-devices
**/OnboardingAppInstall/** @ledgerhq/live-devices
**/UpdateFirmwareModal/** @ledgerhq/live-devices
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ type Props = StepProps & {
isShowingNftGallery?: boolean;
setIsShowingNftGallery: (_: boolean) => void;
loading?: boolean;
hasCustomLockScreen?: boolean;
};

const defaultMediaTypes = ["original", "big", "preview"];
Expand All @@ -47,8 +48,15 @@ const extractNftBase64 = (metadata: NFTMetadata) => {
};

const StepChooseImage: React.FC<Props> = props => {
const { loading, setLoading, onResult, onError, isShowingNftGallery, setIsShowingNftGallery } =
props;
const {
loading,
setLoading,
onResult,
onError,
isShowingNftGallery,
setIsShowingNftGallery,
hasCustomLockScreen,
} = props;
const isMounted = useIsMounted();
const { t } = useTranslation();
const track = useTrack();
Expand Down Expand Up @@ -158,7 +166,7 @@ const StepChooseImage: React.FC<Props> = props => {
});
}}
/>
{lastSeenCustomImage?.size ? (
{hasCustomLockScreen || lastSeenCustomImage?.size ? (
<Link
size="medium"
color="error.c60"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ type Props = {
isFromPostOnboardingEntryPoint?: boolean;
reopenPreviousDrawer?: () => void;
deviceModelId: DeviceModelId | null;
hasCustomLockScreen?: boolean;
};

const orderedSteps: Step[] = [
Expand All @@ -55,8 +56,13 @@ const orderedSteps: Step[] = [
const ErrorDisplayV2 = withV2StyleProvider(ErrorDisplay);

const CustomImage: React.FC<Props> = props => {
const { imageUri, isFromNFTEntryPoint, reopenPreviousDrawer, isFromPostOnboardingEntryPoint } =
props;
const {
imageUri,
isFromNFTEntryPoint,
reopenPreviousDrawer,
isFromPostOnboardingEntryPoint,
hasCustomLockScreen,
} = props;
const { t } = useTranslation();
const track = useTrack();
const { setAnalyticsDrawerName } = useContext(analyticsDrawerContext);
Expand Down Expand Up @@ -264,6 +270,7 @@ const CustomImage: React.FC<Props> = props => {
setLoading={setSourceLoading}
isShowingNftGallery={isShowingNftGallery}
setIsShowingNftGallery={setIsShowingNftGallery}
hasCustomLockScreen={hasCustomLockScreen}
/>
</FlowStepper.Indexed.Step>
<FlowStepper.Indexed.Step
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,22 @@ import { useTranslation } from "react-i18next";
import { CLSSupportedDeviceModelId } from "@ledgerhq/live-common/device/use-cases/isCustomLockScreenSupported";
import { setDrawer } from "~/renderer/drawers/Provider";
import CustomImage from "~/renderer/screens/customImage";
import { useSelector } from "react-redux";
import { lastSeenCustomImageSelector } from "~/renderer/reducers/settings";
import ToolTip from "~/renderer/components/Tooltip";
import { withV3StyleProvider } from "~/renderer/styles/StyleProviderV3";

type Props = {
disabled?: boolean;
deviceModelId: CLSSupportedDeviceModelId;
hasCustomLockScreen: boolean;
};

const CustomImageManagerButton = (props: Props) => {
const { t } = useTranslation();
const { disabled, deviceModelId } = props;

const lastSeenCustomImage = useSelector(lastSeenCustomImageSelector);
const { disabled, deviceModelId, hasCustomLockScreen } = props;

const onAdd = useCallback(() => {
setDrawer(CustomImage, { deviceModelId }, { forceDisableFocusTrap: true });
}, [deviceModelId]);
setDrawer(CustomImage, { deviceModelId, hasCustomLockScreen }, { forceDisableFocusTrap: true });
}, [deviceModelId, hasCustomLockScreen]);

return (
<Flex flexDirection="row" columnGap={3} alignItems="center">
Expand Down Expand Up @@ -50,7 +47,7 @@ const CustomImageManagerButton = (props: Props) => {
disabled={disabled}
data-testid="manager-custom-image-button"
>
{lastSeenCustomImage.size ? t("changeCustomLockscreen.cta") : t("common.add")}
{hasCustomLockScreen ? t("changeCustomLockscreen.cta") : t("common.add")}
</Link>
</Flex>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ type Props = {
isIncomplete: boolean;
installQueue: string[];
uninstallQueue: string[];
hasCustomLockScreen: boolean;
};

/**
Expand All @@ -79,6 +80,7 @@ const DeviceInformationSummary = ({
isIncomplete,
installQueue,
uninstallQueue,
hasCustomLockScreen,
}: Props) => {
const navigationLocked = useSelector(isNavigationLocked);

Expand Down Expand Up @@ -164,6 +166,7 @@ const DeviceInformationSummary = ({
<CustomImageManagerButton
disabled={navigationLocked}
deviceModelId={deviceModel.id}
hasCustomLockScreen={hasCustomLockScreen}
/>
</>
) : null}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ const DeviceDashboard = ({
const [appInstallDep, setAppInstallDep] = useState<{ app: App; dependencies: App[] } | undefined>(
undefined,
);

const [appUninstallDep, setAppUninstallDep] = useState<
{ dependents: App[]; app: App } | undefined
>(undefined);
Expand Down Expand Up @@ -165,8 +166,8 @@ const DeviceDashboard = ({
// Not ideal but we have no concept of device ids so we can consider
// an empty custom image size an indicator of not having an image set.
// If this is troublesome we'd have to react by asking the device directly.
if (state.customImageBlocks === 0) reduxDispatch(clearLastSeenCustomImage());
}, [reduxDispatch, state.customImageBlocks]);
if (result.customImageBlocks === 0) reduxDispatch(clearLastSeenCustomImage());
}, [reduxDispatch, result.customImageBlocks]);

const disableFirmwareUpdate = state.installQueue.length > 0 || state.uninstallQueue.length > 0;
return (
Expand Down Expand Up @@ -209,6 +210,7 @@ const DeviceDashboard = ({
device={device}
deviceName={deviceName}
isIncomplete={isIncomplete}
hasCustomLockScreen={result.customImageBlocks !== 0}
/>
<ProviderWarning />
<AppList
Expand Down

1 comment on commit 17fe67c

@github-actions
Copy link

Choose a reason for hiding this comment

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

[Bot] Weekly non-reg on develop with 'Oxygen' ✅ 25 txs ❌ 13 txs 💰 2 miss funds ($338.51) ⏲ 33min 48s

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

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

3 critical spec errors

Spec secret_network failed!

Error: timeout of 60000ms exceeded

Spec cardano failed!

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

Spec Telos failed!

InvalidExplorerResponse: InvalidExplorerResponse
❌ 13 mutation errors
necessary accounts resynced in 0.15ms
▬ Filecoin 0.24.5 on nanoSP 1.1.2
→ FROM undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44 (! sum of ops 0.616356356693009588 FIL)
max spendable ~0.61631
★ using mutation 'Send small to eth address'
✔️ transaction 
SEND  0.0000000000000001 FIL
TO 0x689c9b3232210aa9b84ef444d0ef35d11102ad1f
STATUS (1308ms)
  amount: 0.0000000000000001 FIL
  estimated fees: 0.000112277173006779 FIL
  total spent: 0.000112277173006879 FIL
errors: 
warnings: 
⚠️ Error: 27012 - Data is invalid : ExpertModeRequired
(totally spent 2023ms – ends at 2024-08-15T06:13:29.846Z)
necessary accounts resynced in 0.35ms
▬ Filecoin 0.24.5 on nanoSP 1.1.2
→ FROM undefined [bip44]: 0.618741 FIL (15ops) (f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq on 44'/461'/3'/0/0) filecoinBIP44#3 js:2:filecoin:f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq:filecoinBIP44 (! sum of ops 0.618741388161637256 FIL)
max spendable ~0.618695
★ using mutation 'Send 50%~'
→ TO undefined [bip44]: 0 FIL (20ops) (f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi on 44'/461'/2'/0/0) filecoinBIP44#2 js:2:filecoin:f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi:filecoinBIP44
✔️ transaction 
SEND  0.295848008939002441 FIL
TO f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi
STATUS (1018ms)
  amount: 0.295848008939002441 FIL
  estimated fees: 0.000076036945686618 FIL
  total spent: 0.295924045884689059 FIL
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Value'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Value": "0.295848008939002441",
+   "Value": "FIL 0.295848008939002441",
  }
(totally spent 4.1s – ends at 2024-08-15T06:13:29.865Z)
necessary accounts resynced in 0.28ms
▬ Filecoin 0.24.5 on nanoSP 1.1.2
→ FROM undefined [bip44]: 0.180483 FIL (18ops) (f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q on 44'/461'/4'/0/0) filecoinBIP44#4 js:2:filecoin:f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q:filecoinBIP44 (! sum of ops 0.180483650098951852 FIL)
max spendable ~0.180437
★ using mutation 'Send small to f4 address'
✔️ transaction 
SEND  0.0000000000000001 FIL
TO f410fncojwmrseefktoco6rcnb3zv2eiqfli7muhvqma
STATUS (1157ms)
  amount: 0.0000000000000001 FIL
  estimated fees: 0.000113135954750192 FIL
  total spent: 0.000113135954750292 FIL
errors: 
warnings: 
⚠️ Error: 27012 - Data is invalid : ExpertModeRequired
(totally spent 5.5s – ends at 2024-08-15T06:13:29.869Z)
necessary accounts resynced in 0.45ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~0.197694
★ using mutation 'send max'
→ TO undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND MAX
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (1035ms)
  amount: 0.197093030613255675 AVAX
  estimated fees: 0.00060123 AVAX
  total spent: 0.197694260613255675 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.1s – ends at 2024-08-15T06:13:29.878Z)
necessary accounts resynced in 0.18ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.098559662178169838 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (877ms)
  amount: 0.098559662178169838 AVAX
  estimated fees: 0.00060123 AVAX
  total spent: 0.099160892178169838 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Avalanche","x":33,"y":3,"w":84,"h":12}
{"text":"Ready","x":33,"y":17,"w":84,"h":12}
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.3s – ends at 2024-08-15T06:13:29.889Z)
necessary accounts resynced in 0.19ms
▬ 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 AVAX (36ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:avalanche_c_chain:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (843ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.00060123 AVAX
  total spent: 0.201458389654426997 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Avalanche","x":33,"y":3,"w":84,"h":12}
{"text":"Ready","x":33,"y":17,"w":84,"h":12}
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 60.9s – ends at 2024-08-15T06:13:29.895Z)
necessary accounts resynced in 0.25ms
▬ BinanceSmartChain 1.11.2 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (833ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.0000423234 BNB
  total spent: 0.027575154947880244 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0xF4816c59cd8e24eE","x":9,"y":17,"w":113,"h":32}
(totally spent 60.9s – ends at 2024-08-15T06:13:29.904Z)
necessary accounts resynced in 0.17ms
▬ BinanceSmartChain 1.11.2 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (102ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~0.0242889
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.012144467609662234 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (855ms)
  amount: 0.012144467609662234 BNB
  estimated fees: 0.0000423234 BNB
  total spent: 0.012186791009662234 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 61.1s – ends at 2024-08-15T06:13:29.926Z)
necessary accounts resynced in 0.29ms
▬ BinanceSmartChain 1.11.2 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'send max'
→ TO undefined: 0.00453676 BNB (83ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
✔️ transaction 
SEND MAX
TO 0x9F38B2C32aE3433552C566365D462dc64dd0edC9
STATUS (971ms)
  amount: 0.024183611819282467 BNB
  estimated fees: 0.0000423234 BNB
  total spent: 0.024225935219282467 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x8C63f5be03552E33","x":10,"y":17,"w":112,"h":32}
(totally spent 61s – ends at 2024-08-15T06:13:29.940Z)
necessary accounts resynced in 0.15ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00619234 ETH (75ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.006131449094881111 ETH)
max spendable ~0.00619234
★ using mutation 'move 50%'
→ TO undefined: 0.00901829 ETH (72ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.003096170515629556 ETH
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (273ms)
  amount: 0.003096170515629556 ETH
  estimated fees: 0.0000004578 ETH
  total spent: 0.003096628315629556 ETH
errors: 
warnings: 
✔️ has been signed! (5.4s) 
✔️ broadcasted! (192ms) optimistic operation: 
  -0.003096628315629556 ETH OUT        0xbe114d533e87f07148720712ebad4e2bfcf9a0636e0fe20411680a0324ff4bfe 2024-08-15T05:42
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "3095712715629555"
Received: "3095864719551555"
(totally spent 10min 7s – ends at 2024-08-15T06:13:29.952Z)
necessary accounts resynced in 0.27ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00309586 ETH (76ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.003034820779251555 ETH)
max spendable ~0.00309586
★ using mutation 'move 50%'
→ TO undefined: 0.00381408 ETH (53ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  0.001547932359775778 ETH
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (248ms)
  amount: 0.001547932359775778 ETH
  estimated fees: 0.0000004998 ETH
  total spent: 0.001548432159775778 ETH
errors: 
warnings: 
✔️ has been signed! (3.6s) 
✔️ broadcasted! (156ms) optimistic operation: 
  -0.001548432159775778 ETH OUT        0x3c453a9d041e943f1b5fec2882c82735070746144de45913d3aa07add0cdf195 2024-08-15T05:53
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "1547432559775777"
Received: "1547598508999777"
(totally spent 10min 5s – ends at 2024-08-15T06:13:29.960Z)
necessary accounts resynced in 5.8s
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00154759 ETH (77ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.001486388619475777 ETH)
max spendable ~0.00154759
★ using mutation 'send max'
→ TO undefined: 0.0121144 ETH (73ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND MAX
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (353ms)
  amount: 0.001546987408999777 ETH
  estimated fees: 0.0000006111 ETH
  total spent: 0.001547598508999777 ETH
errors: 
warnings: 
✔️ has been signed! (4.3s) 
✔️ broadcasted! (145ms) optimistic operation: 
  -0.001547598508999777 ETH OUT        0x71b718c21bacff99fca74e626ec0ce9ebcf62d773bfe69486d40293f4740fc8f 2024-08-15T06:03
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "200517198000"
(totally spent 10min 6s – ends at 2024-08-15T06:13:29.978Z)
necessary accounts resynced in 6ms
▬ Polkadot 100.0.8 on nanoSP 1.1.2
→ FROM undefined: 1.26495 DOT (24ops) (16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa on 44'/354'/0'/0'/0') polkadotbip44#0 js:2:polkadot:16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa:polkadotbip44 1.2649558014 DOT spendable. 

max spendable ~1.24913
★ using mutation 'send 50%~'
→ TO undefined: 1.13136 DOT (33ops) (12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy on 44'/354'/2'/0'/0') polkadotbip44#2 js:2:polkadot:12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy:polkadotbip44
✔️ transaction 
SEND  0.1261887005 DOT
TO 12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy
STATUS (721ms)
  amount: 0.1261887005 DOT
  estimated fees: 0.0157107779 DOT
  total spent: 0.1418994784 DOT
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Chain'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Chain": "Polkadot",
+   "Chain": "polkadot",
  }
(totally spent 2258ms – ends at 2024-08-15T06:13:29.992Z)
⚠️ 9 spec hints
  • Spec axelar:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec cosmos:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec Filecoin:
    • mutations should define a test(): Send small to f4 address, Send small to eth address, Send 50%~, Transfer Max
    • mutations should NOT define a testDestination() because there are no 'destination' sibling account found: Send small to eth address, Send small to f4 address
  • Spec Decred:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Cronos:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Boba:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Polkadot:
    • There are not enough accounts (6) to cover all mutations (7).
      Please increase the account target to at least 8 accounts
Details of the 38 mutations

Spec axelar (18)

Spec axelar found 18 Axelar accounts (preload: 313ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 AXL (4ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 0.022348 AXL (13ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0.122251 AXL (14ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.009551 AXL (9ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0 AXL (8ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 0 AXL (22ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0 AXL (13ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.129102 AXL (12ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0.975758 AXL (8ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.960502 AXL (13ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.859483 AXL (4ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 1.12914 AXL (15ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 1.48369 AXL (6ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 7.36976 AXL (9ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 2.58485 AXL (2ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 1.119 AXL (2ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
undefined: 0.125864 AXL (1ops) (axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4 on 44'/118'/16'/0/0) #16 js:2:axelar:axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4:
undefined: 0 AXL (0ops) (axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq on 44'/118'/17'/0/0) #17 js:2:axelar:axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq:
necessary accounts resynced in 0.33ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.122251 AXL (14ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha: (! sum of ops -0.548832 AXL) 0.122251 AXL spendable. 

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

with fees=0.006172
STATUS (373ms)
  amount: 0.063992 AXL
  estimated fees: 0.006172 AXL
  total spent: 0.070164 AXL
errors: 
warnings: 
✔️ has been signed! (8.7s) 
✔️ broadcasted! (68ms) optimistic operation: 
  -0.070164 AXL      OUT        2C143E85F9712A44E4439722DA3F27BC0BDCC0718076A3AED7652CCDC9AA6B22 2024-08-15T05:41
✔️ operation confirmed (0.34ms): 
  -0.070164 AXL      OUT        2C143E85F9712A44E4439722DA3F27BC0BDCC0718076A3AED7652CCDC9AA6B22 2024-08-15T05:41
✔️ undefined: 0.122251 AXL (14ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha: (! sum of ops -0.548832 AXL) 0.122251 AXL spendable. 
✔️ destination operation 
  ? -70164           OUT        2C143E85F9712A44E4439722DA3F27BC0BDCC0718076A3AED7652CCDC9AA6B22 2024-08-15T05:41

necessary accounts resynced in 0.29ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.129102 AXL (12ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8: (! sum of ops -0.927988 AXL) 0.129069 AXL spendable. 0.000033 AXL delegated. 
DELEGATIONS
  to axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5 0.000033 AXL  (claimable 0.000033)

max spendable ~0.122077
★ using mutation 'send max'
→ TO undefined: 0 AXL (8ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
✔️ transaction 
SEND MAX
TO axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f

with fees=0.006173
STATUS (373ms)
  amount: 0.122896 AXL
  estimated fees: 0.006173 AXL
  total spent: 0.129069 AXL
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (9.6s) 
✔️ broadcasted! (60ms) optimistic operation: 
  -0.129069 AXL      OUT        D6AB8CD0B431AC8D82F1799A8480B01643A00DBC3FB5643E12A8728F88B7664D 2024-08-15T05:41
✔️ operation confirmed (0.31ms): 
  -0.129069 AXL      OUT        D6AB8CD0B431AC8D82F1799A8480B01643A00DBC3FB5643E12A8728F88B7664D 2024-08-15T05:41
✔️ undefined: 0.129102 AXL (12ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8: (! sum of ops -0.927988 AXL) 0.129069 AXL spendable. 0.000033 AXL delegated. 
DELEGATIONS
  to axelarvaloper1aqhvg88ghtdv7du6kqlc9eccukpu8l7mhtauk5 0.000033 AXL  (claimable 0.000033)
✔️ destination operation 
  ? -129069          OUT        D6AB8CD0B431AC8D82F1799A8480B01643A00DBC3FB5643E12A8728F88B7664D 2024-08-15T05:41

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

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

with fees=0.006178
STATUS (367ms)
  amount: 0.501916 AXL
  estimated fees: 0.006178 AXL
  total spent: 0.508094 AXL
errors: 
warnings: 
✔️ has been signed! (7.7s) 
✔️ broadcasted! (343ms) optimistic operation: 
  -0.508094 AXL      OUT        2035F12C244B66E2449DA2C254175CB70A78255A6EB8B76B116C5DFB04744A56 2024-08-15T05:41
✔️ operation confirmed (0.33ms): 
  -0.508094 AXL      OUT        2035F12C244B66E2449DA2C254175CB70A78255A6EB8B76B116C5DFB04744A56 2024-08-15T05:41
✔️ undefined: 0.975758 AXL (8ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z: (! sum of ops -3.542014 AXL) 0.975758 AXL spendable. 
✔️ destination operation 
  ? -508094          OUT        2035F12C244B66E2449DA2C254175CB70A78255A6EB8B76B116C5DFB04744A56 2024-08-15T05:41

necessary accounts resynced in 0.22ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.960502 AXL (13ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops -5.171956 AXL) 0.960502 AXL spendable. 

max spendable ~0.95351
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.001342 AXL
TO 
  0.001342 -> axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate
with fees=0.011673
  memo=LedgerLiveBot
STATUS (503ms)
  amount: 0.001342 AXL
  estimated fees: 0.011673 AXL
  total spent: 0.013015 AXL
errors: 
warnings: 
✔️ has been signed! (11.4s) 
✔️ broadcasted! (60ms) optimistic operation: 
  -0.013015 AXL      DELEGATE   375A74708CD1C95B203C2E37EBD22AF8C9FB82AF8950BBA2478ABD2E7671E2FA 2024-08-15T05:42
    to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.001342 AXL    
✔️ operation confirmed (0.27ms): 
  -0.013015 AXL      DELEGATE   375A74708CD1C95B203C2E37EBD22AF8C9FB82AF8950BBA2478ABD2E7671E2FA 2024-08-15T05:42
    to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.001342 AXL    
✔️ undefined: 0.960502 AXL (13ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops -5.171956 AXL) 0.960502 AXL spendable. 

necessary accounts resynced in 0.36ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.12914 AXL (15ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops 0.238035 AXL) 1.128275 AXL spendable. 0.00087 AXL delegated. 
DELEGATIONS
  to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.00087 AXL  (claimable 0.00087)

max spendable ~1.12127
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.00087 -> axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud
with fees=0.014388
  memo=LedgerLiveBot
STATUS (362ms)
  amount: 0 AXL
  estimated fees: 0.014388 AXL
  total spent: 0.014388 AXL
errors: 
warnings: 
✔️ has been signed! (14.3s) 
✔️ broadcasted! (61ms) optimistic operation: 
  -0.014388 AXL      UNDELEGATE 254AAC9AA4583C87DC996C2F8B42505DDF70FCB411082E6C5FCB51038122F209 2024-08-15T05:42
    to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.00087 AXL     
✔️ operation confirmed (0.32ms): 
  -0.014388 AXL      UNDELEGATE 254AAC9AA4583C87DC996C2F8B42505DDF70FCB411082E6C5FCB51038122F209 2024-08-15T05:42
    to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.00087 AXL     
✔️ undefined: 1.12914 AXL (15ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops 0.238035 AXL) 1.128275 AXL spendable. 0.00087 AXL delegated. 
DELEGATIONS
  to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.00087 AXL  (claimable 0.00087)


Spec cosmos (15)

Spec cosmos found 15 Cosmos accounts (preload: 308ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 ATOM (43ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (35ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0 ATOM (32ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.371164 ATOM (54ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.002476 ATOM (19ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.184363 ATOM (51ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
undefined: 0 ATOM (23ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu:
undefined: 0.111523 ATOM (29ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 1.14742 ATOM (15ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 3.28315 ATOM (13ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.47497 ATOM (3ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.22007 ATOM (7ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 0.678092 ATOM (1ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
undefined: 0.043936 ATOM (1ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 0 ATOM (0ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
necessary accounts resynced in 0.27ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.371164 ATOM (54ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4: (! sum of ops 0.385042 ATOM) 0.365591 ATOM spendable. 0.005573 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6 0.005573 ATOM  (claimable 0.005573)
REDELEGATIONS
  from cosmosvaloper14upntdx8lf0f49t987mj99zksxnluanvu6x4lu to cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6 0.000271 ATOM

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

with fees=0.002331
STATUS (1331ms)
  amount: 0.36326 ATOM
  estimated fees: 0.002331 ATOM
  total spent: 0.365591 ATOM
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (9.2s) 
✔️ broadcasted! (561ms) optimistic operation: 
  -0.365591 ATOM     OUT        9E214F741ED4ED48914FC3DF1BB851B6051DCEA39A9613276996A925711F9EDA 2024-08-15T05:41
✔️ operation confirmed (10.9s): 
  -0.365591 ATOM     OUT        9E214F741ED4ED48914FC3DF1BB851B6051DCEA39A9613276996A925711F9EDA 2024-08-15T05:41
✔️ undefined: 0.005573 ATOM (55ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4: (! sum of ops 0.019451 ATOM) 0 ATOM spendable. 0.005573 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6 0.005573 ATOM  (claimable 0.005573)
REDELEGATIONS
  from cosmosvaloper14upntdx8lf0f49t987mj99zksxnluanvu6x4lu to cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6 0.000271 ATOM
(in 10.9s)
✔️ destination operation 
  +0.36326 ATOM      IN         9E214F741ED4ED48914FC3DF1BB851B6051DCEA39A9613276996A925711F9EDA 2024-08-15T05:41
(in 10.6s)

necessary accounts resynced in 0.20ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.184363 ATOM (51ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8: (! sum of ops 0.184209 ATOM) 0.174345 ATOM spendable. 0.010018 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1z8zjv3lntpwxua0rtpvgrcwl0nm0tltgpgs6l7 0.001723 ATOM 
  to cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2 0.008295 ATOM  (claimable 0.008295)

max spendable ~0.171922
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.001723 -> cosmosvaloper1z8zjv3lntpwxua0rtpvgrcwl0nm0tltgpgs6l7
with fees=0.010596
  memo=LedgerLiveBot
STATUS (941ms)
  amount: 0 ATOM
  estimated fees: 0.010596 ATOM
  total spent: 0.010596 ATOM
errors: 
warnings: 
✔️ has been signed! (13.1s) 
✔️ broadcasted! (294ms) optimistic operation: 
  -0.010596 ATOM     UNDELEGATE BEF9288D8B33A4CB1B7558662A9D80F934203E2E4DD25373C4D31F96FF0DDFA6 2024-08-15T05:42
    to cosmosvaloper1z8zjv3lntpwxua0rtpvgrcwl0nm0tltgpgs6l7 0.001723 ATOM   
✔️ operation confirmed (11.3s): 
  -0.010596 ATOM     UNDELEGATE BEF9288D8B33A4CB1B7558662A9D80F934203E2E4DD25373C4D31F96FF0DDFA6 2024-08-15T05:42
    to cosmosvaloper1z8zjv3lntpwxua0rtpvgrcwl0nm0tltgpgs6l7 0.001723 ATOM   
✔️ undefined: 0.173767 ATOM (52ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8: (! sum of ops 0.173613 ATOM) 0.163749 ATOM spendable. 0.008295 ATOM delegated. 0.001723 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1uxlf7mvr8nep3gm7udf2u9remms2jyjqvwdul2 0.008295 ATOM  (claimable 0.008295)
UNDELEGATIONS
  from cosmosvaloper1z8zjv3lntpwxua0rtpvgrcwl0nm0tltgpgs6l7 0.001723 ATOM
(in 11.3s)

necessary accounts resynced in 0.31ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.111523 ATOM (29ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.12492 ATOM) 0.066004 ATOM spendable. 0.045519 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 0.009724 ATOM  (claimable 0.009724)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.035795 ATOM  (claimable 0.035795)

max spendable ~0.063582
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.001001 -> cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm
  source validator=cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6
with fees=0.031754
  memo=LedgerLiveBot
STATUS (395ms)
  amount: 0 ATOM
  estimated fees: 0.031754 ATOM
  total spent: 0.031754 ATOM
errors: 
warnings: 
✔️ has been signed! (10.6s) 
✔️ broadcasted! (111ms) optimistic operation: 
  -0.031754 ATOM     REDELEGATE CA6FA25DE1D03BEFD53554222185A87843C7B431767F82B9D7B62808E452F7E2 2024-08-15T05:42
    to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.001001 ATOM   
✔️ operation confirmed (11.6s): 
  -0.031754 ATOM     REDELEGATE CA6FA25DE1D03BEFD53554222185A87843C7B431767F82B9D7B62808E452F7E2 2024-08-15T05:42
    to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.001001 ATOM   
✔️ undefined: 0.081211 ATOM (30ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.093166 ATOM) 0.035692 ATOM spendable. 0.045519 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 0.008723 ATOM  (claimable 0.008723)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.036796 ATOM  (claimable 0.036796)
REDELEGATIONS
  from cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.001001 ATOM
(in 11.6s)

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

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

with fees=0.002466
  memo=LedgerLiveBot
STATUS (1479ms)
  amount: 0.365298 ATOM
  estimated fees: 0.002466 ATOM
  total spent: 0.367764 ATOM
errors: 
warnings: 
✔️ has been signed! (5.6s) 
✔️ broadcasted! (301ms) optimistic operation: 
  -0.367764 ATOM     OUT        3E6C8A3CD041F10D11C0A67AF79BF81100E98D18585509577F3CD5971D0B04C7 2024-08-15T05:42
✔️ operation confirmed (10.6s): 
  -0.367764 ATOM     OUT        3E6C8A3CD041F10D11C0A67AF79BF81100E98D18585509577F3CD5971D0B04C7 2024-08-15T05:42
✔️ undefined: 0.779663 ATOM (16ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r: 0.779663 ATOM spendable. 
(in 10.6s)
✔️ destination operation 
  +0.365298 ATOM     IN         3E6C8A3CD041F10D11C0A67AF79BF81100E98D18585509577F3CD5971D0B04C7 2024-08-15T05:42
(in 12.7s)

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

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

with fees=0.00234
STATUS (1192ms)
  amount: 1.189845 ATOM
  estimated fees: 0.00234 ATOM
  total spent: 1.192185 ATOM
errors: 
warnings: 
✔️ has been signed! (9.5s) 
✔️ broadcasted! (139ms) optimistic operation: 
  -1.192185 ATOM     OUT        64D8969ACA2CB0439B322A563709E1166DA9A0DA17AA3619479BDD6200991B0D 2024-08-15T05:43
✔️ operation confirmed (10.5s): 
  -1.192185 ATOM     OUT        64D8969ACA2CB0439B322A563709E1166DA9A0DA17AA3619479BDD6200991B0D 2024-08-15T05:43
✔️ undefined: 2.09097 ATOM (14ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5: (! sum of ops 2.090843 ATOM) 2.087301 ATOM spendable. 0.003672 ATOM unbonding. 
UNDELEGATIONS
  from cosmosvaloper17mggn4znyeyg25wd7498qxl7r2jhgue8u4qjcq 0.003672 ATOM
(in 10.5s)
✔️ destination operation 
  +1.189845 ATOM     IN         64D8969ACA2CB0439B322A563709E1166DA9A0DA17AA3619479BDD6200991B0D 2024-08-15T05:43
(in 10.5s)

necessary accounts resynced in 1.45ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 3.22007 ATOM (7ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 3.218986 ATOM) 3.174337 ATOM spendable. 0.045738 ATOM unbonding. 
UNDELEGATIONS
  from cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk 0.045738 ATOM

max spendable ~3.17191
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.031276 ATOM
TO 
  0.031276 -> cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw
with fees=0.008622
  memo=LedgerLiveBot
STATUS (1411ms)
  amount: 0.031276 ATOM
  estimated fees: 0.008622 ATOM
  total spent: 0.039898 ATOM
errors: 
warnings: 
✔️ has been signed! (6.6s) 
✔️ broadcasted! (145ms) optimistic operation: 
  -0.039898 ATOM     DELEGATE   4C797555BE20E751F57829A524E8553807EA381C0987C8067E76A7B10A8D53AD 2024-08-15T05:43
    to cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw 0.031276 ATOM   
✔️ operation confirmed (10.9s): 
  -0.008622 ATOM     DELEGATE   4C797555BE20E751F57829A524E8553807EA381C0987C8067E76A7B10A8D53AD 2024-08-15T05:43
    to cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw 0.031276 ATOM   
✔️ undefined: 3.21145 ATOM (8ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 3.210364 ATOM) 3.134439 ATOM spendable. 0.031276 ATOM delegated. 0.045738 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1we6knm8qartmmh2r0qfpsz6pq0s7emv3e0meuw 0.031276 ATOM  (claimable 0.031276)
UNDELEGATIONS
  from cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk 0.045738 ATOM
(in 10.9s)


Spec secret_network (failed)


Spec Filecoin (13)

Spec Filecoin found 13 Filecoin accounts. Will use Filecoin 0.24.5 on nanoSP 1.1.2
undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44
undefined [bip44]: 0 FIL (20ops) (f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi on 44'/461'/2'/0/0) filecoinBIP44#2 js:2:filecoin:f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi:filecoinBIP44
undefined [bip44]: 0.618741 FIL (15ops) (f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq on 44'/461'/3'/0/0) filecoinBIP44#3 js:2:filecoin:f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq:filecoinBIP44
undefined [bip44]: 0.180483 FIL (18ops) (f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q on 44'/461'/4'/0/0) filecoinBIP44#4 js:2:filecoin:f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q:filecoinBIP44
undefined [bip44]: 0 FIL (18ops) (f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq on 44'/461'/5'/0/0) filecoinBIP44#5 js:2:filecoin:f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq:filecoinBIP44
undefined [bip44]: 0 FIL (6ops) (f1bw4zwsefo5rwk3t536tq6wlgdhivrt5ucmdttji on 44'/461'/6'/0/0) filecoinBIP44#6 js:2:filecoin:f1bw4zwsefo5rwk3t536tq6wlgdhivrt5ucmdttji:filecoinBIP44
undefined [third-party]: 0 FIL (24ops) (f1oqqfytyqkxiuu4k7qtsjurmyfddjfsvpvr7dv7y on 44'/461'/0'/0/0) glif#0 js:2:filecoin:f1oqqfytyqkxiuu4k7qtsjurmyfddjfsvpvr7dv7y:glif
undefined [third-party]: 0 FIL (0ops) (f17ag6fgxl3nnooho4vhthp634njria2dyhwzlg2i on 44'/461'/0'/0/1) glif#1 js:2:filecoin:f17ag6fgxl3nnooho4vhthp634njria2dyhwzlg2i:glif
undefined [third-party]: 0 FIL (0ops) (f1j424bboftp37f7hhy3rybhi24at6lnlhcs6tapy on 44'/461'/0'/0/2) glif#2 js:2:filecoin:f1j424bboftp37f7hhy3rybhi24at6lnlhcs6tapy:glif
undefined [third-party]: 0 FIL (0ops) (f142x56fmpwbtrllzpgqaeicdzye27yrftomuzmva on 44'/461'/0'/0/3) glif#3 js:2:filecoin:f142x56fmpwbtrllzpgqaeicdzye27yrftomuzmva:glif
undefined [third-party]: 0 FIL (0ops) (f1iuq2mwan24jpiwwt3smsnsz4kcgvua2dbsjsnmi on 44'/461'/0'/0/4) glif#4 js:2:filecoin:f1iuq2mwan24jpiwwt3smsnsz4kcgvua2dbsjsnmi:glif
undefined [third-party]: 0 FIL (0ops) (f13psrixi44a5b4kvpxhj4xu7efxns5zpwpedrdpi on 44'/461'/0'/0/5) glif#5 js:2:filecoin:f13psrixi44a5b4kvpxhj4xu7efxns5zpwpedrdpi:glif
undefined [third-party]: 0 FIL (0ops) (f17cwsrt44zvzwwdxjrwautrkbdzoakayizpdyoay on 44'/461'/0'/0/6) glif#6 js:2:filecoin:f17cwsrt44zvzwwdxjrwautrkbdzoakayizpdyoay:glif
necessary accounts resynced in 0.15ms
▬ Filecoin 0.24.5 on nanoSP 1.1.2
→ FROM undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44 (! sum of ops 0.616356356693009588 FIL)
max spendable ~0.61631
★ using mutation 'Send small to eth address'
✔️ transaction 
SEND  0.0000000000000001 FIL
TO 0x689c9b3232210aa9b84ef444d0ef35d11102ad1f
STATUS (1308ms)
  amount: 0.0000000000000001 FIL
  estimated fees: 0.000112277173006779 FIL
  total spent: 0.000112277173006879 FIL
errors: 
warnings: 
⚠️ Error: 27012 - Data is invalid : ExpertModeRequired
(totally spent 2023ms – ends at 2024-08-15T06:13:30.361Z)
necessary accounts resynced in 0.35ms
▬ Filecoin 0.24.5 on nanoSP 1.1.2
→ FROM undefined [bip44]: 0.618741 FIL (15ops) (f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq on 44'/461'/3'/0/0) filecoinBIP44#3 js:2:filecoin:f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq:filecoinBIP44 (! sum of ops 0.618741388161637256 FIL)
max spendable ~0.618695
★ using mutation 'Send 50%~'
→ TO undefined [bip44]: 0 FIL (20ops) (f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi on 44'/461'/2'/0/0) filecoinBIP44#2 js:2:filecoin:f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi:filecoinBIP44
✔️ transaction 
SEND  0.295848008939002441 FIL
TO f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi
STATUS (1018ms)
  amount: 0.295848008939002441 FIL
  estimated fees: 0.000076036945686618 FIL
  total spent: 0.295924045884689059 FIL
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Value'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Value": "0.295848008939002441",
+   "Value": "FIL 0.295848008939002441",
  }
(totally spent 4.1s – ends at 2024-08-15T06:13:30.376Z)
necessary accounts resynced in 0.28ms
▬ Filecoin 0.24.5 on nanoSP 1.1.2
→ FROM undefined [bip44]: 0.180483 FIL (18ops) (f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q on 44'/461'/4'/0/0) filecoinBIP44#4 js:2:filecoin:f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q:filecoinBIP44 (! sum of ops 0.180483650098951852 FIL)
max spendable ~0.180437
★ using mutation 'Send small to f4 address'
✔️ transaction 
SEND  0.0000000000000001 FIL
TO f410fncojwmrseefktoco6rcnb3zv2eiqfli7muhvqma
STATUS (1157ms)
  amount: 0.0000000000000001 FIL
  estimated fees: 0.000113135954750192 FIL
  total spent: 0.000113135954750292 FIL
errors: 
warnings: 
⚠️ Error: 27012 - Data is invalid : ExpertModeRequired
(totally spent 5.5s – ends at 2024-08-15T06:13:30.386Z)

Spec Qtum (6)

Spec Qtum found 6 Qtum accounts. Will use Qtum 2.1.0-rc on nanoS 2.1.0
undefined [segwit]: 0.16901 QTUM (94ops) (M9yrY42RConfoyZb8ck6zNuxHVhA22kNwH on 49'/88'/0'/0/47) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.546074 QTUM (88ops) (M9qXTmGAasm6oXsdXVjXDS2ZdidEigaJXa on 49'/88'/1'/0/44) 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.756819 QTUM (94ops) (QdE494Dm2ohqgL8xhfzLxG3tnCiDGFmwja on 44'/88'/0'/0/49) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 1.06255 QTUM (81ops) (QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J on 44'/88'/1'/0/38) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
necessary accounts resynced in 0.13ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.16901 QTUM (94ops) (M9yrY42RConfoyZb8ck6zNuxHVhA22kNwH on 49'/88'/0'/0/47) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
3 UTXOs
0.137595     MXCS5Tg89F8x7p4V6yvdy3wwNBPsbiLd9b (change) fecb21903246e131d546851a9caf89ec167655037d9385ff8bfbf09959b35670 @1 (18902)
0.0304144    MRDnW5tNSzep13JhzsUEraMBXUC3WTzqUo (change) 85bed81fe0435639d738799b36f95b3da7a85551299cc2c1cc16a918bbbe2d7a @2 (37801)
0.001        MRfREziKmN6UVxTreWoYN733GHTTq1djWG 81a7fc8d9774c4519ae6cc78c3e3448e20144d083b2888b22d9b071e3879d3df @0 (56703)

max spendable ~0.165877
★ using mutation 'optimize-size'
→ TO undefined [segwit]: 0.546074 QTUM (88ops) (M9qXTmGAasm6oXsdXVjXDS2ZdidEigaJXa on 49'/88'/1'/0/44) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
✔️ transaction 
SEND 0.13982326 QTUM
TO M9qXTmGAasm6oXsdXVjXDS2ZdidEigaJXa
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (232ms)
TX INPUTS (2):
0.137595     MXCS5Tg89F8x7p4V6yvdy3wwNBPsbiLd9b fecb21903246e131d546851a9caf89ec167655037d9385ff8bfbf09959b35670@1
0.0304144    MRDnW5tNSzep13JhzsUEraMBXUC3WTzqUo 85bed81fe0435639d738799b36f95b3da7a85551299cc2c1cc16a918bbbe2d7a@2
TX OUTPUTS (2):
0.139823     M9qXTmGAasm6oXsdXVjXDS2ZdidEigaJXa @0 (0)
0.0256345    MHtsv16AMKAmsDGgM9LPZ5SCeNP3VzdRK7 (change) @1 (0)
  amount: 0.13982326 QTUM
  estimated fees: 0.00255255 QTUM
  total spent: 0.14237581 QTUM
errors: 
warnings: 
✔️ has been signed! (15.7s) 
✔️ broadcasted! (112ms) optimistic operation: 
  -0.14237581 QTUM   OUT        40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146 2024-08-15T05:41
✔️ operation confirmed (10.8s): 
  -0.14237581 QTUM   OUT        40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146 2024-08-15T05:41
✔️ undefined [segwit]: 0.0266345 QTUM (95ops) (M9yrY42RConfoyZb8ck6zNuxHVhA22kNwH on 49'/88'/0'/0/47) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
2 UTXOs
0.0256345    MHtsv16AMKAmsDGgM9LPZ5SCeNP3VzdRK7 (change) 40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146 @1 (0)
0.001        MRfREziKmN6UVxTreWoYN733GHTTq1djWG 81a7fc8d9774c4519ae6cc78c3e3448e20144d083b2888b22d9b071e3879d3df @0 (56706)
(in 10.8s)
✔️ destination operation 
  +0.13982326 QTUM   IN         40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146 2024-08-15T05:41
(in 10.6s)

necessary accounts resynced in 0.21ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.685897 QTUM (89ops) (MG2shn3jWdgAubhDk3YZ4RRFRcYTegvSYw on 49'/88'/1'/0/45) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
5 UTXOs
0.470668     MSpBGN1zzJ2DkjVUw7THtDUf2AuQGR9RJS rbf 4060c364e4163a3cd71f2860a7e8e6694e675ac599af6014fda2d66ba3bd68bf @0 (18898)
0.139823     M9qXTmGAasm6oXsdXVjXDS2ZdidEigaJXa 40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146 @0 (0)
0.0729351    M99hX3EQNQdiihDS7JDuByyNvHhQGrEXKR (change) 81a7fc8d9774c4519ae6cc78c3e3448e20144d083b2888b22d9b071e3879d3df @2 (56706)
0.00147014   M9F9RpChmddFyHuXSm6NssyX7yHzuH5dk7 40c1cdebf94215efb377ac49bd38dd071fdfcb0d2f782f64f523937546d406b0 @0 (75588)
...

max spendable ~0.54204
★ using mutation 'send max'
→ TO undefined [segwit]: 0.0266345 QTUM (95ops) (M9yrY42RConfoyZb8ck6zNuxHVhA22kNwH on 49'/88'/0'/0/47) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
✔️ transaction 
SEND MAX
TO M9yrY42RConfoyZb8ck6zNuxHVhA22kNwH
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (154ms)
TX INPUTS (4):
0.00147014   M9F9RpChmddFyHuXSm6NssyX7yHzuH5dk7 40c1cdebf94215efb377ac49bd38dd071fdfcb0d2f782f64f523937546d406b0@0
0.0729351    M99hX3EQNQdiihDS7JDuByyNvHhQGrEXKR 81a7fc8d9774c4519ae6cc78c3e3448e20144d083b2888b22d9b071e3879d3df@2
0.001        MNfEvBwaUu4oVeTZVhgAjkGn7kM459DmpL 85bed81fe0435639d738799b36f95b3da7a85551299cc2c1cc16a918bbbe2d7a@0
0.470668     MSpBGN1zzJ2DkjVUw7THtDUf2AuQGR9RJS 4060c364e4163a3cd71f2860a7e8e6694e675ac599af6014fda2d66ba3bd68bf@0
TX OUTPUTS (1):
0.54204      M9yrY42RConfoyZb8ck6zNuxHVhA22kNwH @0 (0)
  amount: 0.54204015 QTUM
  estimated fees: 0.00403403 QTUM
  total spent: 0.54607418 QTUM
errors: 
warnings: 
✔️ has been signed! (19.2s) 
✔️ broadcasted! (69ms) optimistic operation: 
  -0.00403403 QTUM   OUT        0dfd3ae681474463e3bdfe94909905d9309dff84a83dbf65f698e75e2cda0baa 2024-08-15T05:41
✔️ operation confirmed (10.6s): 
  -0.54607418 QTUM   OUT        0dfd3ae681474463e3bdfe94909905d9309dff84a83dbf65f698e75e2cda0baa 2024-08-15T05:41
✔️ undefined [segwit]: 0.139823 QTUM (90ops) (MG2shn3jWdgAubhDk3YZ4RRFRcYTegvSYw on 49'/88'/1'/0/45) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
1 UTXOs
0.139823     M9qXTmGAasm6oXsdXVjXDS2ZdidEigaJXa 40af5e4d9477dec01c025ebd34704163aa65702cf5f310b148729e1efbdce146 @0 (0)
(in 10.6s)
✔️ destination operation 
  +0.54204015 QTUM   IN         0dfd3ae681474463e3bdfe94909905d9309dff84a83dbf65f698e75e2cda0baa 2024-08-15T05:41
(in 10.4s)

necessary accounts resynced in 0.16ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 0.756819 QTUM (94ops) (QdE494Dm2ohqgL8xhfzLxG3tnCiDGFmwja on 44'/88'/0'/0/49) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
1 UTXOs
0.756819     Qg7vDz6Kr8KefmCUriqz4yHtnpQHSjgm2S fecb21903246e131d546851a9caf89ec167655037d9385ff8bfbf09959b35670 @0 (18903)

max spendable ~0.754897
★ using mutation 'move ~50%'
→ TO undefined [segwit]: 0.139823 QTUM (90ops) (MG2shn3jWdgAubhDk3YZ4RRFRcYTegvSYw on 49'/88'/1'/0/45) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
✔️ transaction 
SEND 0.39581577 QTUM
TO MG2shn3jWdgAubhDk3YZ4RRFRcYTegvSYw
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed RBF-enabled
STATUS (213ms)
TX INPUTS (1):
0.756819     Qg7vDz6Kr8KefmCUriqz4yHtnpQHSjgm2S fecb21903246e131d546851a9caf89ec167655037d9385ff8bfbf09959b35670@0
TX OUTPUTS (2):
0.395815     MG2shn3jWdgAubhDk3YZ4RRFRcYTegvSYw rbf @0 (0)
0.358781     QQQrShfaT8Sf8W9PzmExjEYyuwkyUaMkC4 (change) rbf @1 (0)
  amount: 0.39581577 QTUM
  estimated fees: 0.00222222 QTUM
  total spent: 0.39803799 QTUM
errors: 
warnings: 
✔️ has been signed! (12.9s) 
✔️ broadcasted! (109ms) optimistic operation: 
  -0.39803799 QTUM   OUT        fedc6ae12ad598caf76fcc7517f146b1ba2f31e1f757e0653c4973c9f3affb25 2024-08-15T05:42
✔️ operation confirmed (10.7s): 
  -0.39803799 QTUM   OUT        fedc6ae12ad598caf76fcc7517f146b1ba2f31e1f757e0653c4973c9f3affb25 2024-08-15T05:42
✔️ undefined [legacy]: 0.358781 QTUM (95ops) (QdE494Dm2ohqgL8xhfzLxG3tnCiDGFmwja on 44'/88'/0'/0/49) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
1 UTXOs
0.358781     QQQrShfaT8Sf8W9PzmExjEYyuwkyUaMkC4 (change) rbf fedc6ae12ad598caf76fcc7517f146b1ba2f31e1f757e0653c4973c9f3affb25 @1 (0)
(in 10.7s)
✔️ destination operation 
  +0.39581577 QTUM   IN         fedc6ae12ad598caf76fcc7517f146b1ba2f31e1f757e0653c4973c9f3affb25 2024-08-15T05:42
(in 10.6s)

necessary accounts resynced in 0.27ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 1.06255 QTUM (81ops) (QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J on 44'/88'/1'/0/38) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
2 UTXOs
0.627918     QNPvwmEiTzQdYV2xHzkvZSFn6Eh9sTuCYB 3339e5ae3167be553f1c780620a157031348e0931185ea63bbf580dee49bd21a @0 (18899)
0.434639     QZZRXFVFLDz2ufa8ewJ7PMNezai55B4bSg (change) rbf 4060c364e4163a3cd71f2860a7e8e6694e675ac599af6014fda2d66ba3bd68bf @1 (18896)

max spendable ~1.05915
★ using mutation 'send 1 utxo'
→ TO undefined [legacy]: 0.358781 QTUM (95ops) (QdE494Dm2ohqgL8xhfzLxG3tnCiDGFmwja on 44'/88'/0'/0/49) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
✔️ transaction 
SEND MAX
TO QdE494Dm2ohqgL8xhfzLxG3tnCiDGFmwja
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude 3339e5ae3167be553f1c780620a157031348e0931185ea63bbf580dee49bd21a @0
STATUS (199ms)
TX INPUTS (1):
0.434639     QZZRXFVFLDz2ufa8ewJ7PMNezai55B4bSg 4060c364e4163a3cd71f2860a7e8e6694e675ac599af6014fda2d66ba3bd68bf@1
TX OUTPUTS (1):
0.432717     QdE494Dm2ohqgL8xhfzLxG3tnCiDGFmwja @0 (0)
  amount: 0.43271762 QTUM
  estimated fees: 0.00192192 QTUM
  total spent: 0.43463954 QTUM
errors: 
warnings: 
✔️ has been signed! (6.8s) 
✔️ broadcasted! (126ms) optimistic operation: 
  -0.00192192 QTUM   OUT        38208f6a9ecb6853d6eef45bae3f626a06362149579d65eb18d506097be206e3 2024-08-15T05:43
✔️ operation confirmed (10.4s): 
  -0.43463954 QTUM   OUT        38208f6a9ecb6853d6eef45bae3f626a06362149579d65eb18d506097be206e3 2024-08-15T05:43
✔️ undefined [legacy]: 0.627918 QTUM (82ops) (QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J on 44'/88'/1'/0/38) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
1 UTXOs
0.627918     QNPvwmEiTzQdYV2xHzkvZSFn6Eh9sTuCYB 3339e5ae3167be553f1c780620a157031348e0931185ea63bbf580dee49bd21a @0 (18904)
(in 10.4s)
✔️ destination operation 
  +0.43271762 QTUM   IN         38208f6a9ecb6853d6eef45bae3f626a06362149579d65eb18d506097be206e3 2024-08-15T05:43
(in 10.5s)


Spec Decred (5)

Spec Decred found 5 Decred accounts. Will use Decred 1.3.14 on nanoS 2.1.0
undefined: 0.741369 DCR (79ops) (Dsb8LhZri3fCGuvYamosz7xmeYBNtLdnkrv on 44'/42'/0'/0/39) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.269555 DCR (83ops) (DsYRDQwvMHJpt36xm5KZ6C6gSDvronbM2es on 44'/42'/1'/0/43) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.248261 DCR (69ops) (DsgMQU5dRw1r5bKHi4tik3EpushuVcimEt1 on 44'/42'/2'/0/36) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0.0243089 DCR (63ops) (DsZAosvCi8UhMSh2ubMaYrBbnKksEF1Fr6X on 44'/42'/3'/0/29) #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.28ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.741369 DCR (79ops) (Dsb8LhZri3fCGuvYamosz7xmeYBNtLdnkrv on 44'/42'/0'/0/39) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
3 UTXOs
0.721901     DsRfSWCzC9sqmeWt8Z48LFGfyVcSsd7Gto3 39796b981acdf5fb0efc3e72198d3e03701454be08651ccb7061f46abc901f71 @0 (1976)
0.0193511    DshmaaCvE6UsAiRPsx3uid266fERG7TcV72 (change) 15858e0494791e2c7f3f7000defd6220690ef19b238f0dda9971d5926f9906c1 @1 (1976)
0.00011728   DsVpT6cxdv1XfSnY2DDLmxEHYAKqKHKmcvg 88f95e9acf13f6221344ffcdf063add2fcb4c6471c0201d61f3b93729522911a @0 (6027)

max spendable ~0.741203
★ using mutation 'optimize-size'
→ TO undefined: 0.248261 DCR (69ops) (DsgMQU5dRw1r5bKHi4tik3EpushuVcimEt1 on 44'/42'/2'/0/36) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
✔️ transaction 
SEND 0.5748433 DCR
TO DsgMQU5dRw1r5bKHi4tik3EpushuVcimEt1
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (411ms)
TX INPUTS (1):
0.721901     DsRfSWCzC9sqmeWt8Z48LFGfyVcSsd7Gto3 39796b981acdf5fb0efc3e72198d3e03701454be08651ccb7061f46abc901f71@0
TX OUTPUTS (2):
0.574843     DsgMQU5dRw1r5bKHi4tik3EpushuVcimEt1 @0 (0)
0.14698      DsfVHL9RUMKurFPc85yPoY4PqGJ832ghKXq (change) @1 (0)
  amount: 0.5748433 DCR
  estimated fees: 0.0000775 DCR
  total spent: 0.5749208 DCR
errors: 
warnings: 
✔️ has been signed! (9.1s) 
✔️ broadcasted! (244ms) optimistic operation: 
  -0.5749208 DCR     OUT        ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 2024-08-15T05:41
✔️ operation confirmed (10.4s): 
  -0.5749208 DCR     OUT        ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 2024-08-15T05:41
✔️ undefined: 0.166448 DCR (80ops) (Dsb8LhZri3fCGuvYamosz7xmeYBNtLdnkrv on 44'/42'/0'/0/39) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
3 UTXOs
0.14698      DsfVHL9RUMKurFPc85yPoY4PqGJ832ghKXq (change) ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 @1 (0)
0.0193511    DshmaaCvE6UsAiRPsx3uid266fERG7TcV72 (change) 15858e0494791e2c7f3f7000defd6220690ef19b238f0dda9971d5926f9906c1 @1 (1976)
0.00011728   DsVpT6cxdv1XfSnY2DDLmxEHYAKqKHKmcvg 88f95e9acf13f6221344ffcdf063add2fcb4c6471c0201d61f3b93729522911a @0 (6027)
(in 10.4s)
✔️ destination operation 
  +0.5748433 DCR     IN         ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 2024-08-15T05:41
(in 10.7s)

necessary accounts resynced in 0.50ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.269555 DCR (83ops) (DsYRDQwvMHJpt36xm5KZ6C6gSDvronbM2es on 44'/42'/1'/0/43) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
2 UTXOs
0.269455     DsjTsYkRKTnp5mmTr2WFxeKtyeicZByuRv5 (change) 74b0611218994995e870a5a0c1a755b1f194be919c476b73309b4ab098c917d6 @1 (1976)
0.0001       Dsb6SStih1V3nrnW8qGJ7PGac5N1ypdzWAf 837171e2486520c3a7b6942e8480c7cf94f172861f9093f29534a7ea41e86d87 @0 (4001)

max spendable ~0.269439
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.166448 DCR (80ops) (Dsb8LhZri3fCGuvYamosz7xmeYBNtLdnkrv on 44'/42'/0'/0/39) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
✔️ transaction 
SEND 0.0001 DCR
TO Dsb8LhZri3fCGuvYamosz7xmeYBNtLdnkrv
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (260ms)
TX INPUTS (2):
0.0001       Dsb6SStih1V3nrnW8qGJ7PGac5N1ypdzWAf 837171e2486520c3a7b6942e8480c7cf94f172861f9093f29534a7ea41e86d87@0
0.269455     DsjTsYkRKTnp5mmTr2WFxeKtyeicZByuRv5 74b0611218994995e870a5a0c1a755b1f194be919c476b73309b4ab098c917d6@1
TX OUTPUTS (3):
0.0001       Dsb8LhZri3fCGuvYamosz7xmeYBNtLdnkrv @0 (0)
0            @1 (0)
0.269312     DsXVJmW4cdCY9dhSCK63eWRNEk3zyJjfSMS (change) @2 (0)
  amount: 0.0001 DCR
  estimated fees: 0.0001426 DCR
  total spent: 0.0002426 DCR
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (17.6s) 
✔️ broadcasted! (205ms) optimistic operation: 
  -0.0002426 DCR     OUT        93ecac3c071e72a1321ebfef674eada2e51dc7e5dd939888308c5faf9facb928 2024-08-15T05:41
✔️ operation confirmed (10.5s): 
  -0.0002426 DCR     OUT        93ecac3c071e72a1321ebfef674eada2e51dc7e5dd939888308c5faf9facb928 2024-08-15T05:41
✔️ undefined: 0.269312 DCR (84ops) (DsYRDQwvMHJpt36xm5KZ6C6gSDvronbM2es on 44'/42'/1'/0/43) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
1 UTXOs
0.269312     DsXVJmW4cdCY9dhSCK63eWRNEk3zyJjfSMS (change) 93ecac3c071e72a1321ebfef674eada2e51dc7e5dd939888308c5faf9facb928 @2 (0)
(in 10.5s)
✔️ destination operation 
  +0.0001 DCR        IN         93ecac3c071e72a1321ebfef674eada2e51dc7e5dd939888308c5faf9facb928 2024-08-15T05:41
(in 10.4s)

necessary accounts resynced in 0.24ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.823104 DCR (70ops) (DsnYwxdSYxev6H6ak6fxydh1n9Lky2F1nss on 44'/42'/2'/0/37) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
2 UTXOs
0.574843     DsgMQU5dRw1r5bKHi4tik3EpushuVcimEt1 ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 @0 (0)
0.248261     DskCCnWGB5RvicugP5wP3NsNv2a26YzyRA2 74b0611218994995e870a5a0c1a755b1f194be919c476b73309b4ab098c917d6 @0 (1976)

max spendable ~0.248196
★ using mutation 'send 1 utxo'
→ TO undefined: 0.0243089 DCR (63ops) (DsZAosvCi8UhMSh2ubMaYrBbnKksEF1Fr6X on 44'/42'/3'/0/29) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
✔️ transaction 
SEND MAX
TO DsZAosvCi8UhMSh2ubMaYrBbnKksEF1Fr6X
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 @0
STATUS (371ms)
TX INPUTS (1):
0.248261     DskCCnWGB5RvicugP5wP3NsNv2a26YzyRA2 74b0611218994995e870a5a0c1a755b1f194be919c476b73309b4ab098c917d6@0
TX OUTPUTS (1):
0.248194     DsZAosvCi8UhMSh2ubMaYrBbnKksEF1Fr6X @0 (0)
  amount: 0.24819448 DCR
  estimated fees: 0.00006696 DCR
  total spent: 0.24826144 DCR
errors: 
warnings: 
✔️ has been signed! (8.8s) 
✔️ broadcasted! (240ms) optimistic operation: 
  -0.00006696 DCR    OUT        bdb5cc8e91c25f8415c6023a514a799d70b6d37080c9d080350754dd85df9c49 2024-08-15T05:42
✔️ operation confirmed (10.4s): 
  -0.24826144 DCR    OUT        bdb5cc8e91c25f8415c6023a514a799d70b6d37080c9d080350754dd85df9c49 2024-08-15T05:42
✔️ undefined: 0.574843 DCR (71ops) (DsnYwxdSYxev6H6ak6fxydh1n9Lky2F1nss on 44'/42'/2'/0/37) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
1 UTXOs
0.574843     DsgMQU5dRw1r5bKHi4tik3EpushuVcimEt1 ec74a50f1c4c66a6f93eb90f3dd90f994f0017e29179e939c8a29563917e7c04 @0 (0)
(in 10.4s)
✔️ destination operation 
  +0.24819448 DCR    IN         bdb5cc8e91c25f8415c6023a514a799d70b6d37080c9d080350754dd85df9c49 2024-08-15T05:42
(in 10.3s)

necessary accounts resynced in 6ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.272503 DCR (64ops) (DsoP6nMZ3DMV79TyVCiGNzLyVGSsd4MK19i on 44'/42'/3'/0/30) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
2 UTXOs
0.248194     DsZAosvCi8UhMSh2ubMaYrBbnKksEF1Fr6X bdb5cc8e91c25f8415c6023a514a799d70b6d37080c9d080350754dd85df9c49 @0 (0)
0.0243089    DsTmXJjyGa29H8dQdkABvjQ6g4NMvN1dTqS 15858e0494791e2c7f3f7000defd6220690ef19b238f0dda9971d5926f9906c1 @0 (1976)

max spendable ~0.0242444
★ using mutation 'move ~50%'
→ TO undefined: 0.269312 DCR (84ops) (DsYRDQwvMHJpt36xm5KZ6C6gSDvronbM2es on 44'/42'/1'/0/43) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
✔️ transaction 
SEND 0.01262117 DCR
TO DsYRDQwvMHJpt36xm5KZ6C6gSDvronbM2es
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (237ms)
TX INPUTS (1):
0.0243089    DsTmXJjyGa29H8dQdkABvjQ6g4NMvN1dTqS 15858e0494791e2c7f3f7000defd6220690ef19b238f0dda9971d5926f9906c1@0
TX OUTPUTS (2):
0.0126211    DsYRDQwvMHJpt36xm5KZ6C6gSDvronbM2es @0 (0)
0.0116078    DsmwpU6m6yATkj6w2vmUcmVcVVEjEQzeM2u (change) @1 (0)
  amount: 0.01262117 DCR
  estimated fees: 0.00007998 DCR
  total spent: 0.01270115 DCR
errors: 
warnings: 
✔️ has been signed! (8.3s) 
✔️ broadcasted! (249ms) optimistic operation: 
  -0.01270115 DCR    OUT        48f03507e264102076f4f33bef321d5bb55fde6299679ca0ac37c9ab17624d3c 2024-08-15T05:42
✔️ operation confirmed (10.4s): 
  -0.01270115 DCR    OUT        48f03507e264102076f4f33bef321d5bb55fde6299679ca0ac37c9ab17624d3c 2024-08-15T05:42
✔️ undefined: 0.259802 DCR (65ops) (DsoP6nMZ3DMV79TyVCiGNzLyVGSsd4MK19i on 44'/42'/3'/0/30) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
2 UTXOs
0.248194     DsZAosvCi8UhMSh2ubMaYrBbnKksEF1Fr6X bdb5cc8e91c25f8415c6023a514a799d70b6d37080c9d080350754dd85df9c49 @0 (0)
0.0116078    DsmwpU6m6yATkj6w2vmUcmVcVVEjEQzeM2u (change) 48f03507e264102076f4f33bef321d5bb55fde6299679ca0ac37c9ab17624d3c @1 (0)
(in 10.4s)
✔️ destination operation 
  +0.01262117 DCR    IN         48f03507e264102076f4f33bef321d5bb55fde6299679ca0ac37c9ab17624d3c 2024-08-15T05:42
(in 10.4s)


Spec cardano (failed)


Spec Avalanche C-Chain (10)

Spec Avalanche C-Chain found 10 Avalanche C-Chain accounts (preload: 277ms). 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.45ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~0.197694
★ using mutation 'send max'
→ TO undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND MAX
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (1035ms)
  amount: 0.197093030613255675 AVAX
  estimated fees: 0.00060123 AVAX
  total spent: 0.197694260613255675 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.1s – ends at 2024-08-15T06:13:30.635Z)
necessary accounts resynced in 0.18ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.098559662178169838 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (877ms)
  amount: 0.098559662178169838 AVAX
  estimated fees: 0.00060123 AVAX
  total spent: 0.099160892178169838 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Avalanche","x":33,"y":3,"w":84,"h":12}
{"text":"Ready","x":33,"y":17,"w":84,"h":12}
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.3s – ends at 2024-08-15T06:13:30.645Z)
necessary accounts resynced in 0.19ms
▬ 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 AVAX (36ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:avalanche_c_chain:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (843ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.00060123 AVAX
  total spent: 0.201458389654426997 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Avalanche","x":33,"y":3,"w":84,"h":12}
{"text":"Ready","x":33,"y":17,"w":84,"h":12}
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 60.9s – ends at 2024-08-15T06:13:30.649Z)

Spec Binance Smart Chain (10)

Spec Binance Smart Chain found 10 Binance Smart Chain accounts (preload: 194ms). Will use BinanceSmartChain 1.11.2 on nanoS 2.1.0
undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.0242889 BNB (102ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 BNB (102ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00453676 BNB (83ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.00268087 BNB (98ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:bsc:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 BNB (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:bsc:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
necessary accounts resynced in 0.25ms
▬ BinanceSmartChain 1.11.2 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (833ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.0000423234 BNB
  total spent: 0.027575154947880244 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0xF4816c59cd8e24eE","x":9,"y":17,"w":113,"h":32}
(totally spent 60.9s – ends at 2024-08-15T06:13:30.683Z)
necessary accounts resynced in 0.17ms
▬ BinanceSmartChain 1.11.2 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (102ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~0.0242889
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.012144467609662234 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (855ms)
  amount: 0.012144467609662234 BNB
  estimated fees: 0.0000423234 BNB
  total spent: 0.012186791009662234 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 61.1s – ends at 2024-08-15T06:13:30.692Z)
necessary accounts resynced in 0.29ms
▬ BinanceSmartChain 1.11.2 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'send max'
→ TO undefined: 0.00453676 BNB (83ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
✔️ transaction 
SEND MAX
TO 0x9F38B2C32aE3433552C566365D462dc64dd0edC9
STATUS (971ms)
  amount: 0.024183611819282467 BNB
  estimated fees: 0.0000423234 BNB
  total spent: 0.024225935219282467 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x8C63f5be03552E33","x":10,"y":17,"w":112,"h":32}
(totally spent 61s – ends at 2024-08-15T06:13:30.791Z)

Spec Cronos (6)

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

Spec Fantom (6)

Spec Fantom found 6 Fantom accounts (preload: 77ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.00025289 FTM (70ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 13.4905 FTM (79ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 11.5626 FTM (79ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00025841 FTM (72ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 24.0246 FTM (33ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 FTM (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:fantom:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
necessary accounts resynced in 0.24ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 13.4905 FTM (79ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~13.4898
★ using mutation 'send max'
→ TO undefined: 0.00025289 FTM (70ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND MAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (421ms)
  amount: 13.490262301578968018 FTM
  estimated fees: 0.000267579180834 FTM
  total spent: 13.490529880759802018 FTM
errors: 
warnings: 
✔️ has been signed! (8.7s) 
✔️ broadcasted! (213ms) optimistic operation: 
  -13.490529880759802018 FTM OUT        0x1b81119b9e0d7e435e981e03490b2c75ce5e993ace8dbc6b65b9b29c2a808141 2024-08-15T05:42
✔️ operation confirmed (21s): 
  -13.490399998989770018 FTM OUT        0x1b81119b9e0d7e435e981e03490b2c75ce5e993ace8dbc6b65b9b29c2a808141 2024-08-15T05:42
✔️ undefined: 0.00012988 FTM (80ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:(in 21s)
✔️ destination operation 
  +13.490262301578968018 FTM IN         0x1b81119b9e0d7e435e981e03490b2c75ce5e993ace8dbc6b65b9b29c2a808141 2024-08-15T05:42
(in 21.1s)

necessary accounts resynced in 13ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 11.5626 FTM (79ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~11.5619
★ using mutation 'move 50%'
→ TO undefined: 0.00025841 FTM (72ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  5.780980203138924062 FTM
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (481ms)
  amount: 5.780980203138924062 FTM
  estimated fees: 0.000267547780395 FTM
  total spent: 5.781247750919319062 FTM
errors: 
warnings: 
✔️ has been signed! (7.3s) 
✔️ broadcasted! (258ms) optimistic operation: 
  -5.781247750919319062 FTM OUT        0xe82a9ca08052d4541f4852118a5fe19753d32529f89f2f0c22b23ec069493cae 2024-08-15T05:43
✔️ operation confirmed (21s): 
  -5.781117869149287062 FTM OUT        0xe82a9ca08052d4541f4852118a5fe19753d32529f89f2f0c22b23ec069493cae 2024-08-15T05:43
✔️ undefined: 5.78151 FTM (80ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:(in 21s)
✔️ destination operation 
  +5.780980203138924062 FTM IN         0xe82a9ca08052d4541f4852118a5fe19753d32529f89f2f0c22b23ec069493cae 2024-08-15T05:43
(in 21s)

necessary accounts resynced in 10ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 5.78123 FTM (73ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~5.78056
★ using mutation 'move 50%'
→ TO undefined: 24.0246 FTM (33ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND  2.890281708848811531 FTM
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (309ms)
  amount: 2.890281708848811531 FTM
  estimated fees: 0.000267529587003 FTM
  total spent: 2.890549238435814531 FTM
errors: 
warnings: 
✔️ has been signed! (4.8s) 
✔️ broadcasted! (157ms) optimistic operation: 
  -2.890549238435814531 FTM OUT        0x94b2f44ce3f304e9fe53dda1f9b579e773b9f93ea52ea143da1f5898a7b82749 2024-08-15T05:44
✔️ operation confirmed (21s): 
  -2.890419356665782531 FTM OUT        0x94b2f44ce3f304e9fe53dda1f9b579e773b9f93ea52ea143da1f5898a7b82749 2024-08-15T05:44
✔️ undefined: 2.89081 FTM (74ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:(in 21s)
✔️ destination operation 
  +2.890281708848811531 FTM IN         0x94b2f44ce3f304e9fe53dda1f9b579e773b9f93ea52ea143da1f5898a7b82749 2024-08-15T05:44
(in 21s)


Spec Boba (failed)

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

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

Spec Telos (failed)


Spec Polygon zkEVM (4)

Spec Polygon zkEVM found 5 Polygon zkEVM accounts (preload: 33ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.00619234 ETH (75ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00000013 ETH (78ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00901829 ETH (72ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00381408 ETH (53ops) (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.15ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00619234 ETH (75ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.006131449094881111 ETH)
max spendable ~0.00619234
★ using mutation 'move 50%'
→ TO undefined: 0.00901829 ETH (72ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.003096170515629556 ETH
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (273ms)
  amount: 0.003096170515629556 ETH
  estimated fees: 0.0000004578 ETH
  total spent: 0.003096628315629556 ETH
errors: 
warnings: 
✔️ has been signed! (5.4s) 
✔️ broadcasted! (192ms) optimistic operation: 
  -0.003096628315629556 ETH OUT        0xbe114d533e87f07148720712ebad4e2bfcf9a0636e0fe20411680a0324ff4bfe 2024-08-15T05:42
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "3095712715629555"
Received: "3095864719551555"
(totally spent 10min 7s – ends at 2024-08-15T06:13:31.043Z)
necessary accounts resynced in 0.27ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00309586 ETH (76ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.003034820779251555 ETH)
max spendable ~0.00309586
★ using mutation 'move 50%'
→ TO undefined: 0.00381408 ETH (53ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  0.001547932359775778 ETH
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (248ms)
  amount: 0.001547932359775778 ETH
  estimated fees: 0.0000004998 ETH
  total spent: 0.001548432159775778 ETH
errors: 
warnings: 
✔️ has been signed! (3.6s) 
✔️ broadcasted! (156ms) optimistic operation: 
  -0.001548432159775778 ETH OUT        0x3c453a9d041e943f1b5fec2882c82735070746144de45913d3aa07add0cdf195 2024-08-15T05:53
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "1547432559775777"
Received: "1547598508999777"
(totally spent 10min 5s – ends at 2024-08-15T06:13:31.084Z)
necessary accounts resynced in 5.8s
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00154759 ETH (77ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.001486388619475777 ETH)
max spendable ~0.00154759
★ using mutation 'send max'
→ TO undefined: 0.0121144 ETH (73ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND MAX
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (353ms)
  amount: 0.001546987408999777 ETH
  estimated fees: 0.0000006111 ETH
  total spent: 0.001547598508999777 ETH
errors: 
warnings: 
✔️ has been signed! (4.3s) 
✔️ broadcasted! (145ms) optimistic operation: 
  -0.001547598508999777 ETH OUT        0x71b718c21bacff99fca74e626ec0ce9ebcf62d773bfe69486d40293f4740fc8f 2024-08-15T06:03
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "200517198000"
(totally spent 10min 6s – ends at 2024-08-15T06:13:31.151Z)

Spec Polkadot (6)

Spec Polkadot found 6 Polkadot accounts (preload: 1782ms). Will use Polkadot 100.0.8 on nanoSP 1.1.2
undefined: 1.26495 DOT (24ops) (16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa on 44'/354'/0'/0'/0') polkadotbip44#0 js:2:polkadot:16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa:polkadotbip44
undefined: 1.12899 DOT (44ops) (1Fxs6gCxLVmx4PVwpeqqd53Fve3BFfjsqinREqyzeE3qMtm on 44'/354'/1'/0'/0') polkadotbip44#1 js:2:polkadot:1Fxs6gCxLVmx4PVwpeqqd53Fve3BFfjsqinREqyzeE3qMtm:polkadotbip44
undefined: 1.13136 DOT (33ops) (12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy on 44'/354'/2'/0'/0') polkadotbip44#2 js:2:polkadot:12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy:polkadotbip44
undefined: 1.11777 DOT (22ops) (14NHRVm4ezgnAodCZcV6o6E8DqDXQi2VgsJRD4gKDyhxrNPi on 44'/354'/3'/0'/0') polkadotbip44#3 js:2:polkadot:14NHRVm4ezgnAodCZcV6o6E8DqDXQi2VgsJRD4gKDyhxrNPi:polkadotbip44
undefined: 1.1167 DOT (27ops) (16Woo4M3FMUUUXNKphUyx42LH42cHYgThQm959Z2DARJUePT on 44'/354'/4'/0'/0') polkadotbip44#4 js:2:polkadot:16Woo4M3FMUUUXNKphUyx42LH42cHYgThQm959Z2DARJUePT:polkadotbip44
undefined: 0 DOT (0ops) (15qDxnyJ2rSYTT5w17NEPWBESxqmVippsymSGMkJCLQruev on 44'/354'/5'/0'/0') polkadotbip44#5 js:2:polkadot:15qDxnyJ2rSYTT5w17NEPWBESxqmVippsymSGMkJCLQruev:polkadotbip44
necessary accounts resynced in 6ms
▬ Polkadot 100.0.8 on nanoSP 1.1.2
→ FROM undefined: 1.26495 DOT (24ops) (16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa on 44'/354'/0'/0'/0') polkadotbip44#0 js:2:polkadot:16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa:polkadotbip44 1.2649558014 DOT spendable. 

max spendable ~1.24913
★ using mutation 'send 50%~'
→ TO undefined: 1.13136 DOT (33ops) (12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy on 44'/354'/2'/0'/0') polkadotbip44#2 js:2:polkadot:12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy:polkadotbip44
✔️ transaction 
SEND  0.1261887005 DOT
TO 12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy
STATUS (721ms)
  amount: 0.1261887005 DOT
  estimated fees: 0.0157107779 DOT
  total spent: 0.1418994784 DOT
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Chain'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Chain": "Polkadot",
+   "Chain": "polkadot",
  }
(totally spent 2258ms – ends at 2024-08-15T06:13:31.217Z)

Spec Tron (9)

Spec Tron found 9 Tron accounts (preload: 46s). Will use Tron 0.5.0 on nanoSP 1.1.1
undefined: 13.8569 TRX (83ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 30 TRX (75ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 174 TRX (86ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 0.690555 TRX (58ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 43.453 TRX (48ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 0.000007 TRX (24ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 305.048 TRX (18ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 175.251 TRX (10ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 0 TRX (0ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
necessary accounts resynced in 0.27ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 13.8569 TRX (83ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
max spendable ~12.7569
★ using mutation 'send max to another account'
→ TO undefined: 305.048 TRX (18ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
✔️ transaction 
SEND MAX 
TO TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD
STATUS (1410ms)
  amount: 13.856926 TRX
  estimated fees: 0 TRX
  total spent: 13.856926 TRX
errors: 
warnings: 
✔️ has been signed! (4.3s) 
✔️ broadcasted! (200ms) optimistic operation: 
  -13.856926 TRX     OUT        31f83ec84b7a96f875e783093dc333624d5373b84159be0acf3da8b14e0aa9c4 2024-08-15T05:44
✔️ operation confirmed (11.5s): 
  -13.856926 TRX     OUT        31f83ec84b7a96f875e783093dc333624d5373b84159be0acf3da8b14e0aa9c4 2024-08-15T05:44
✔️ undefined: 0 TRX (84ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:(in 11.5s)
✔️ destination operation 
  +13.856926 TRX     IN         31f83ec84b7a96f875e783093dc333624d5373b84159be0acf3da8b14e0aa9c4 2024-08-15T05:44
(in 11.4s)

necessary accounts resynced in 0.36ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 43.453 TRX (48ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
max spendable ~42.353
★ using mutation 'move 50% to another account'
→ TO undefined: 0 TRX (84ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
✔️ transaction 
SEND  21.176523 TRX 
TO TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
STATUS (984ms)
  amount: 21.176523 TRX
  estimated fees: 0 TRX
  total spent: 21.176523 TRX
errors: 
warnings: 
✔️ has been signed! (4.2s) 
✔️ broadcasted! (333ms) optimistic operation: 
  -21.176523 TRX     OUT        173453701d15be72fe4764feb2f93c786daf3c029f83b5650454f3454491f960 2024-08-15T05:45
✔️ operation confirmed (11.3s): 
  -21.176523 TRX     OUT        173453701d15be72fe4764feb2f93c786daf3c029f83b5650454f3454491f960 2024-08-15T05:45
✔️ undefined: 22.2765 TRX (49ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:(in 11.3s)
✔️ destination operation 
  +21.176523 TRX     IN         173453701d15be72fe4764feb2f93c786daf3c029f83b5650454f3454491f960 2024-08-15T05:45
(in 11.5s)

necessary accounts resynced in 0.25ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 318.905 TRX (20ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
max spendable ~317.805
★ using mutation 'move 50% to another account'
→ TO undefined: 21.1765 TRX (86ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
✔️ transaction 
SEND  158.902885 TRX 
TO TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
STATUS (914ms)
  amount: 158.902885 TRX
  estimated fees: 0 TRX
  total spent: 158.902885 TRX
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (152ms) optimistic operation: 
  -158.902885 TRX    OUT        a0ac589dd25ef7eb151f5617b10ac7887ab67d32e7034e7208c7fcfef6eaf839 2024-08-15T05:45
✔️ operation confirmed (11.2s): 
  -158.902885 TRX    OUT        a0ac589dd25ef7eb151f5617b10ac7887ab67d32e7034e7208c7fcfef6eaf839 2024-08-15T05:45
✔️ undefined: 160.002 TRX (21ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:(in 11.2s)
✔️ destination operation 
  +158.902885 TRX    IN         a0ac589dd25ef7eb151f5617b10ac7887ab67d32e7034e7208c7fcfef6eaf839 2024-08-15T05:45
(in 11.6s)


Details of the 34 uncovered mutations

Spec axelar (2)

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

Spec cosmos (1)

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

Spec secret_network (6)

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

Spec Filecoin (1)

  • Transfer Max: balance is too low (10)

Spec Qtum (1)

  • send OP_RETURN transaction: balance is too low (2)

Spec Decred (1)

  • send max: balance is too low (1)

Spec cardano (6)

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

Spec Binance Smart Chain (1)

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

Spec Cronos (3)

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

Spec Fantom (1)

  • move some ERC20 like (ERC20, BEP20, etc...): fantom balance is too low (2), no erc20 account (1)

Spec Boba (3)

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

Spec Telos (2)

  • move 50%:
  • send max:

Spec Polkadot (6)

  • send max: send is too low to activate account (4), balance is too low (1)
  • bond - bondExtra: not enough balance to bond (4), balance is too low (1)
  • unbond: can't unbond (4), balance is too low (1)
  • rebond: can't rebond (4), balance is too low (1)
  • nominate: can't nominate (4), balance is too low (1)
  • withdraw: nothing to withdraw (4), balance is too low (1)
Portfolio ($338.51) – Details of the 16 currencies
Spec (accounts) State Remaining Runs (est) funds?
axelar (18) 155 ops , 16.868 AXL ($9.01) 👍 178 axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g
cosmos (15) 335 ops (+9), 9.40666 ATOM ($44.76) 👍 152 cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf
secret_network (0) 0 ops , 🤷‍♂️ ``
Filecoin (13) 126 ops , 1.41558 FIL ($5.12) 💪 999+ f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq
Qtum (6) 365 ops (+8), 2.53446 QTUM ($5.74) 👍 197 MCZGG7Zi5u7x2xkiLfPv1aFTvKDM7MkH44
Decred (5) 302 ops (+8), 1.28349 DCR ($12.41) 💪 999+ DsgQencDEsb66Nc6oHd8co14kgSWWbRNLMi
cardano (0) 0 ops , 🤷‍♂️ ``
Avalanche C-Chain (10) 250 ops , 2.82586 AVAX ($58.59) 💪 553 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Binance Smart Chain (10) 798 ops , 0.118141 BNB ($61.40) 👍 84 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Cronos (6) 625 ops , 5.08708 CRO ($0.48) ⚠️ 11 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Fantom (6) 339 ops (+6), 49.0782 FTM ($18.03) 💪 999+ 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Boba (1) 0 ops , 0 ETH ($0.00) 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Telos (0) 0 ops , 🤷‍♂️ ``
Polygon zkEVM (5) 282 ops (+4), 0.0190248 ETH ($0.00) 👍 258 0x2141e8D44753FC7720C471233740c133D79459fC
Polkadot (6) 150 ops , 5.7598 DOT ($25.35) ⚠️ 28 16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa
Tron (9) 413 ops (+11), 538.3 TRX ($97.62) 💪 999+ TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
undefined: 0 AXL (4ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 0.022348 AXL (13ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0.122251 AXL (14ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.009551 AXL (9ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0 AXL (8ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 0 AXL (22ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0 AXL (13ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.129102 AXL (12ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0.975758 AXL (8ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.960502 AXL (13ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.859483 AXL (4ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 1.12914 AXL (15ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 1.48369 AXL (6ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 7.36976 AXL (9ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 2.58485 AXL (2ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 1.119 AXL (2ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
undefined: 0.125864 AXL (1ops) (axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4 on 44'/118'/16'/0/0) #16 js:2:axelar:axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4:
undefined: 0 AXL (0ops) (axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq on 44'/118'/17'/0/0) #17 js:2:axelar:axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq:
undefined: 0 ATOM (43ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (35ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0.365298 ATOM (33ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.005573 ATOM (55ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.002476 ATOM (19ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.173767 ATOM (52ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
undefined: 0 ATOM (23ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu:
undefined: 1.27105 ATOM (31ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0.779663 ATOM (16ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 2.09097 ATOM (14ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.47497 ATOM (3ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.21145 ATOM (8ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 0.678092 ATOM (1ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
undefined: 0.407196 ATOM (2ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 0 ATOM (0ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44
undefined [bip44]: 0 FIL (20ops) (f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi on 44'/461'/2'/0/0) filecoinBIP44#2 js:2:filecoin:f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi:filecoinBIP44
undefined [bip44]: 0.618741 FIL (15ops) (f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq on 44'/461'/3'/0/0) filecoinBIP44#3 js:2:filecoin:f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq:filecoinBIP44
undefined [bip44]: 0.180483 FIL (18ops) (f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q on 44'/461'/4'/0/0) filecoinBIP44#4 js:2:filecoin:f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q:filecoinBIP44
undefined [bip44]: 0 FIL (18ops) (f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq on 44'/461'/5'/0/0) filecoinBIP44#5 js:2:filecoin:f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq:filecoinBIP44
undefined [bip44]: 0 FIL (6ops) (f1bw4zwsefo5rwk3t536tq6wlgdhivrt5ucmdttji on 44'/461'/6'/0/0) filecoinBIP44#6 js:2:filecoin:f1bw4zwsefo5rwk3t536tq6wlgdhivrt5ucmdttji:filecoinBIP44
undefined [third-party]: 0 FIL (24ops) (f1oqqfytyqkxiuu4k7qtsjurmyfddjfsvpvr7dv7y on 44'/461'/0'/0/0) glif#0 js:2:filecoin:f1oqqfytyqkxiuu4k7qtsjurmyfddjfsvpvr7dv7y:glif
undefined [third-party]: 0 FIL (0ops) (f17ag6fgxl3nnooho4vhthp634njria2dyhwzlg2i on 44'/461'/0'/0/1) glif#1 js:2:filecoin:f17ag6fgxl3nnooho4vhthp634njria2dyhwzlg2i:glif
undefined [third-party]: 0 FIL (0ops) (f1j424bboftp37f7hhy3rybhi24at6lnlhcs6tapy on 44'/461'/0'/0/2) glif#2 js:2:filecoin:f1j424bboftp37f7hhy3rybhi24at6lnlhcs6tapy:glif
undefined [third-party]: 0 FIL (0ops) (f142x56fmpwbtrllzpgqaeicdzye27yrftomuzmva on 44'/461'/0'/0/3) glif#3 js:2:filecoin:f142x56fmpwbtrllzpgqaeicdzye27yrftomuzmva:glif
undefined [third-party]: 0 FIL (0ops) (f1iuq2mwan24jpiwwt3smsnsz4kcgvua2dbsjsnmi on 44'/461'/0'/0/4) glif#4 js:2:filecoin:f1iuq2mwan24jpiwwt3smsnsz4kcgvua2dbsjsnmi:glif
undefined [third-party]: 0 FIL (0ops) (f13psrixi44a5b4kvpxhj4xu7efxns5zpwpedrdpi on 44'/461'/0'/0/5) glif#5 js:2:filecoin:f13psrixi44a5b4kvpxhj4xu7efxns5zpwpedrdpi:glif
undefined [third-party]: 0 FIL (0ops) (f17cwsrt44zvzwwdxjrwautrkbdzoakayizpdyoay on 44'/461'/0'/0/6) glif#6 js:2:filecoin:f17cwsrt44zvzwwdxjrwautrkbdzoakayizpdyoay:glif
undefined [segwit]: 0.568674 QTUM (96ops) (MCZGG7Zi5u7x2xkiLfPv1aFTvKDM7MkH44 on 49'/88'/0'/0/48) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.535639 QTUM (91ops) (MVFdmkS3Br3rTTxaoQLmpFuMuFj8xVvSv9 on 49'/88'/1'/0/46) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
undefined [segwit]: 0 QTUM (0ops) (MR3A49zXnWaH7Vhm7YKeiaREazdKZxie6r on 49'/88'/2'/0/0) segwit#2 js:2:qtum:xpub6BvfSTHRWubyX78dqB3tVcgps5JtUKukFsbkwrxQhEvBr2UmTUjNEdcZRvmBb6PczEcKUrnVvQvQ2BafHcw1wBkqbVLzNyEN912tNDDd8M9:segwit
undefined [legacy]: 0.791498 QTUM (96ops) (QLmSuaM8utunmE1U5e8BLYX6SNvDA7bz2v on 44'/88'/0'/0/50) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.627918 QTUM (82ops) (QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J on 44'/88'/1'/0/38) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
undefined: 0.166548 DCR (81ops) (DsgQencDEsb66Nc6oHd8co14kgSWWbRNLMi on 44'/42'/0'/0/40) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.281933 DCR (85ops) (DsXNgbfvkFHhMxkS4wb7eKg9bdcLCr22Bdb on 44'/42'/1'/0/44) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.574843 DCR (71ops) (DsnYwxdSYxev6H6ak6fxydh1n9Lky2F1nss on 44'/42'/2'/0/37) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0.259802 DCR (65ops) (DsoP6nMZ3DMV79TyVCiGNzLyVGSsd4MK19i on 44'/42'/3'/0/30) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
undefined: 0 DCR (0ops) (DskCZ4d3mZkXwLxAEjx2sEM121SFimdgvSv on 44'/42'/4'/0/0) #4 js:2:decred:dpubZEswmUQs2uoMffXvbjYzmFKAA8qiVoRpBd8QwvJKFgG4HaLsEf3yq9JdFJHzvmMqTKUybT8NPDs16zti7N3ehBSQmxZQB76h8MsWKLZDFAX:
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 (102ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 BNB (102ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00453676 BNB (83ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.00268087 BNB (98ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:bsc:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 BNB (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:bsc:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
undefined: 0.105 CRO (143ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:cronos:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 1.17124 CRO (183ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:cronos:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 1.37452 CRO (154ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:cronos:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 1.4986 CRO (127ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:cronos:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.937713 CRO (18ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:cronos:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 CRO (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:cronos:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 13.4905 FTM (71ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00012988 FTM (80ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 5.78151 FTM (80ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 2.89081 FTM (74ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 26.9148 FTM (34ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 FTM (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:fantom:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0 ETH (0ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:boba:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0121144 ETH (73ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00000013 ETH (78ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00536201 ETH (54ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.00154759 ETH (77ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0 ETH (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:polygon_zk_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 1.26495 DOT (24ops) (16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa on 44'/354'/0'/0'/0') polkadotbip44#0 js:2:polkadot:16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa:polkadotbip44
undefined: 1.12899 DOT (44ops) (1Fxs6gCxLVmx4PVwpeqqd53Fve3BFfjsqinREqyzeE3qMtm on 44'/354'/1'/0'/0') polkadotbip44#1 js:2:polkadot:1Fxs6gCxLVmx4PVwpeqqd53Fve3BFfjsqinREqyzeE3qMtm:polkadotbip44
undefined: 1.13136 DOT (33ops) (12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy on 44'/354'/2'/0'/0') polkadotbip44#2 js:2:polkadot:12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy:polkadotbip44
undefined: 1.11777 DOT (22ops) (14NHRVm4ezgnAodCZcV6o6E8DqDXQi2VgsJRD4gKDyhxrNPi on 44'/354'/3'/0'/0') polkadotbip44#3 js:2:polkadot:14NHRVm4ezgnAodCZcV6o6E8DqDXQi2VgsJRD4gKDyhxrNPi:polkadotbip44
undefined: 1.1167 DOT (27ops) (16Woo4M3FMUUUXNKphUyx42LH42cHYgThQm959Z2DARJUePT on 44'/354'/4'/0'/0') polkadotbip44#4 js:2:polkadot:16Woo4M3FMUUUXNKphUyx42LH42cHYgThQm959Z2DARJUePT:polkadotbip44
undefined: 0 DOT (0ops) (15qDxnyJ2rSYTT5w17NEPWBESxqmVippsymSGMkJCLQruev on 44'/354'/5'/0'/0') polkadotbip44#5 js:2:polkadot:15qDxnyJ2rSYTT5w17NEPWBESxqmVippsymSGMkJCLQruev:polkadotbip44
undefined: 180.079 TRX (90ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 30 TRX (75ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 174 TRX (86ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 0.690555 TRX (58ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 22.2765 TRX (49ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 0.000007 TRX (24ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 160.002 TRX (21ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 175.251 TRX (10ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 0 TRX (0ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
Performance ⏲ 33min 48s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 49.2s 12min 47s 12.3s 25.8s 4min 10s 5.3s 4min 7s 3min 35s
axelar (17) 313ms 68.6s 18ms 1977ms 51.7s 592ms 1.56ms N/A
cosmos (14) 308ms 70.5s 29ms 6.7s 54.6s 1552ms 65.8s 33.8s
secret_network (0) N/A N/A N/A N/A N/A N/A N/A N/A
Filecoin (7) 1.84ms 79.6s 4.27ms 3.5s N/A N/A N/A N/A
Qtum (4) 0.47ms 50.4s 1.35ms 798ms 54.5s 416ms 42.5s 42.2s
Decred (4) 0.18ms 44.7s 7ms 1278ms 43.8s 938ms 41.7s 41.9s
cardano (0) N/A N/A N/A N/A N/A N/A N/A N/A
Avalanche C-Chain (9) 277ms 47.3s 14ms 2756ms N/A N/A N/A N/A
Binance Smart Chain (9) 194ms 48.2s 2.64ms 2659ms N/A N/A N/A N/A
Cronos (5) 92ms 1min 59s 1.48ms N/A N/A N/A N/A N/A
Fantom (5) 77ms 98.4s 23ms 1211ms 20.8s 628ms 63s 63.1s
Boba (0) 28ms 5.8s N/A N/A N/A N/A N/A N/A
Telos (0) 56ms N/A N/A N/A N/A N/A N/A N/A
Polygon zkEVM (4) 33ms 10.7s 12.1s 874ms 13.2s 493ms N/A N/A
Polkadot (5) 1782ms 78.6s 16ms 721ms N/A N/A N/A N/A
Tron (8) 46s 45.6s 15ms 3.3s 11.8s 684ms 34s 34.5s

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

Please sign in to comment.