Skip to content

Commit

Permalink
Merge pull request #7980 from LedgerHQ/feat/key-ring-protocol-cli
Browse files Browse the repository at this point in the history
Add Ledger Key Ring Protocol commands in CLI
  • Loading branch information
KVNLS authored Oct 2, 2024
2 parents 07a242d + 2f6defb commit b81643c
Show file tree
Hide file tree
Showing 6 changed files with 225 additions and 1 deletion.
19 changes: 19 additions & 0 deletions apps/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,25 @@ Usage: ledger-live i18n # Test e2e functionality for device localization s
Usage: ledger-live listApps # list all installed apps on the device
-d, --device <String> : provide a specific HID path of a device
Usage: ledger-live ledgerKeyRingProtocol # Ledger Key Ring Protocol command
-d, --device <String> : provide a specific HID path of a device
--initMemberCredentials : Init member credentials for Ledger Key Ring Protocol
--getKeyRingTree : Get or create a Ledger Key Ring Protocol Tree
--encryptUserData : Encrypt user data with the current private key secured by the Ledger Key Ring Protocol
--decryptUserData : Encrypt user data with the current private key secured by the Ledger Key Ring Protocol
--getMembers : Get members of the Ledger Key Ring Protocol Tree
--restoreKeyRingTree : Restore a Ledger Key Ring Protocol Tree
--destroyKeyRingTree : Destroy a Ledger Key Ring Protocol Tree
--pubKey <String> : pubkey for Ledger Key Ring Protocol Tree retrieved from initMemberCredentials result
--privateKey <String> : privatekey for Ledger Key Ring Protocol Tree retrieved from initMemberCredentials result
--rootId <String> : The immutable id of the Tree root retrieved from getKeyRingTree result
--walletSyncEncryptionKey <String>: The secret used to encrypt/decrypt the wallet sync data retrieved from getKeyRingTree result
--applicationPath <String>: privatekey for Ledger Key Ring Protocol Tree from initMemberCredentials result
--message <String> : message to be encrypted/decrypted
--applicationId <Number> : application identifier
--name <String> : name of the instance
--apiBaseUrl <String> : api base url for Ledger Key Ring Protocol
Usage: ledger-live liveData # utility for Ledger Live app.json file
-d, --device <String> : provide a specific HID path of a device
--xpub <String> : use an xpub (alternatively to --device) [DEPRECATED: prefer use of id]
Expand Down
2 changes: 2 additions & 0 deletions apps/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
"@ledgerhq/device-core": "workspace:^",
"@ledgerhq/devices": "workspace:^",
"@ledgerhq/errors": "workspace:^",
"@ledgerhq/ledger-key-ring-protocol": "workspace:^",
"@ledgerhq/hw-app-btc": "workspace:^",
"@ledgerhq/hw-ledger-key-ring-protocol": "workspace:^",
"@ledgerhq/hw-transport": "workspace:^",
"@ledgerhq/hw-transport-http": "workspace:^",
"@ledgerhq/hw-transport-mocker": "workspace:^",
Expand Down
2 changes: 2 additions & 0 deletions apps/cli/src/commands-index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ import balanceHistory from "./commands/live/balanceHistory";
import countervalues from "./commands/live/countervalues";
import envs from "./commands/live/envs";
import exportAccounts from "./commands/live/exportAccounts";
import ledgerKeyRingProtocol from "./commands/live/ledgerKeyRingProtocol";
import liveData from "./commands/live/liveData";
import portfolio from "./commands/live/portfolio";
import synchronousOnboarding from "./commands/live/synchronousOnboarding";
Expand Down Expand Up @@ -118,6 +119,7 @@ export default {
countervalues,
envs,
exportAccounts,
ledgerKeyRingProtocol,
liveData,
portfolio,
synchronousOnboarding,
Expand Down
195 changes: 195 additions & 0 deletions apps/cli/src/commands/live/ledgerKeyRingProtocol.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
import { getSdk } from "@ledgerhq/ledger-key-ring-protocol/index";
import { crypto } from "@ledgerhq/hw-ledger-key-ring-protocol";
import { withDevice } from "@ledgerhq/live-common/hw/deviceAccess";
import { getEnv } from "@ledgerhq/live-env";
import { deviceOpt } from "../../scan";

export default {
description: "Ledger Key Ring Protocol command",
args: [
deviceOpt,
{
name: "initMemberCredentials",
type: Boolean,
desc: "Init member credentials for Ledger Key Ring Protocol",
},
{
name: "getKeyRingTree",
type: Boolean,
desc: "Get or create a Ledger Key Ring Protocol Tree",
},
{
name: "encryptUserData",
type: Boolean,
desc: "Encrypt user data with the current private key secured by the Ledger Key Ring Protocol",
},
{
name: "decryptUserData",
type: Boolean,
desc: "Encrypt user data with the current private key secured by the Ledger Key Ring Protocol",
},
{
name: "getMembers",
type: Boolean,
desc: "Get members of the Ledger Key Ring Protocol Tree",
},
{
name: "restoreKeyRingTree",
type: Boolean,
desc: "Restore a Ledger Key Ring Protocol Tree",
},
{
name: "destroyKeyRingTree",
type: Boolean,
desc: "Destroy a Ledger Key Ring Protocol Tree",
},
{
name: "pubKey",
type: String,
desc: "pubkey for Ledger Key Ring Protocol Tree retrieved from initMemberCredentials result",
},
{
name: "privateKey",
type: String,
desc: "privatekey for Ledger Key Ring Protocol Tree retrieved from initMemberCredentials result",
},
{
name: "rootId",
type: String,
desc: "The immutable id of the Tree root retrieved from getKeyRingTree result",
},
{
name: "walletSyncEncryptionKey",
type: String,
desc: "The secret used to encrypt/decrypt the wallet sync data retrieved from getKeyRingTree result",
},
{
name: "applicationPath",
type: String,
desc: "privatekey for Ledger Key Ring Protocol Tree from initMemberCredentials result",
},
{
name: "message",
type: String,
desc: "message to be encrypted/decrypted",
},
{
name: "applicationId",
type: Number,
default: 16,
desc: "application identifier",
},
{
name: "name",
type: String,
default: "CLI",
desc: "name of the instance",
},
{
name: "apiBaseUrl",
type: String,
default: getEnv("TRUSTCHAIN_API_STAGING"),
desc: "api base url for Ledger Key Ring Protocol",
},
],
job: ({
device,
initMemberCredentials,
getKeyRingTree,
encryptUserData,
decryptUserData,
getMembers,
restoreKeyRingTree,
destroyKeyRingTree,
pubKey,
privateKey,
rootId,
walletSyncEncryptionKey,
applicationPath,
message,
applicationId = 16,
name = "CLI",
apiBaseUrl = getEnv("TRUSTCHAIN_API_STAGING"),
}: Partial<{
device: string;
initMemberCredentials: boolean;
getKeyRingTree: boolean;
getMembers: boolean;
encryptUserData: boolean;
decryptUserData: boolean;
restoreKeyRingTree: boolean;
destroyKeyRingTree: boolean;
pubKey: string;
privateKey: string;
rootId: string;
walletSyncEncryptionKey: string;
applicationPath: string;
message: string;
applicationId: number;
name: string;
apiBaseUrl: string;
}>) => {
if (!applicationId) return "applicationId is required";
if (!name) return "name is required";
if (!apiBaseUrl) return "apiBaseUrl is required";

const context = {
applicationId,
name,
apiBaseUrl,
};
const sdk = getSdk(false, context, withDevice);

if (initMemberCredentials) {
return sdk.initMemberCredentials();
}

if (getKeyRingTree) {
if (!pubKey || !privateKey) return "pubKey and privateKey are required";
return sdk
.getOrCreateTrustchain(device || "", { pubkey: pubKey, privatekey: privateKey })
.then(result => result.trustchain);
}

if (getMembers || restoreKeyRingTree || destroyKeyRingTree) {
if (!pubKey || !privateKey) return "pubKey and privateKey are required";
if (!rootId) return "pubKey and privateKey are required";
if (!walletSyncEncryptionKey) return "walletSyncEncryptionKey is required";
if (!applicationPath) return "applicationPath is required";

const sdkMethod = getMembers
? "getMembers"
: restoreKeyRingTree
? "restoreTrustchain"
: "destroyTrustchain";
return sdk[sdkMethod](
{ rootId, walletSyncEncryptionKey, applicationPath },
{ pubkey: pubKey, privatekey: privateKey },
);
}

if (encryptUserData || decryptUserData) {
if (!rootId) return "rootId is required";
if (!walletSyncEncryptionKey) return "walletSyncEncryptionKey is required";
if (!applicationPath) return "applicationPath is required";
if (!message) return "message is required";

if (encryptUserData) {
return sdk
.encryptUserData(
{ rootId, walletSyncEncryptionKey, applicationPath },
new TextEncoder().encode(message),
)
.then(array => Buffer.from(array).toString("hex"));
}
return sdk
.decryptUserData(
{ rootId, walletSyncEncryptionKey, applicationPath },
crypto.from_hex(message),
)
.then(array => new TextDecoder().decode(array));
}

return "command does not exist";
},
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"doc:ljs": "pnpm turbo doc --no-daemon --filter=\"./libs/ledgerjs/**\"",
"watch:ljs": "pnpm turbo watch --no-daemon --filter=\"./libs/ledgerjs/**\"",
"watch:common": "pnpm turbo watch --no-daemon --filter=./libs/ledger-live-common",
"dev:cli": "pnpm turbo watch --no-daemon --filter=@ledgerhq/live-cli",
"dev:cli": "pnpm turbo watch --filter=@ledgerhq/live-cli",
"dev:lld": "pnpm turbo start --no-daemon --filter=ledger-live-desktop",
"dev:lld:debug": "DEV_TOOLS=1 LEDGER_INTERNAL_ARGS=--inspect ELECTRON_ARGS=--remote-debugging-port=8315 pnpm turbo start --no-daemon --filter=ledger-live-desktop",
"dev:llm": "pnpm turbo start --no-daemon --filter=live-mobile",
Expand Down
6 changes: 6 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit b81643c

@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' ✅ 27 txs ❌ 12 txs 💰 2 miss funds ($424.78) ⏲ 8min 49s

✅ 7 specs are successful: Qtum, Decred, axelar, cosmos, Fantom, Polygon zkEVM, Tron
❌ 4 specs have problems: cardano, Avalanche C-Chain, Binance Smart Chain, 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 Filecoin failed!

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

Spec secret_network failed!

AxiosError: timeout of 60000ms exceeded

Spec Telos failed!

InvalidExplorerResponse: InvalidExplorerResponse
❌ 12 mutation errors
necessary accounts resynced in 0.16ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.2
→ FROM undefined: 10.9929 ADA (20ops) (addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63 on 1852'/1815'/1'/0/5) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano (! sum of ops 3.558145 ADA)
max spendable ~10.8275
★ using mutation 'delegate to pool'
✔️ transaction 
  DELEGATE 
STATUS (265ms)
  amount: 0 ADA
  estimated fees: 0.174213 ADA
  total spent: 0.174213 ADA
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"m/1852'/1815'/1'/2/0","x":14,"y":21,"w":101,"h":9}
{"text":"Confirm","x":42,"y":29,"w":45,"h":9}
{"text":"delegation?","x":30,"y":43,"w":68,"h":12}
{"text":"Confirm","x":42,"y":29,"w":45,"h":9}
{"text":"transaction?","x":28,"y":43,"w":72,"h":9}
(totally spent 60.3s – ends at 2024-10-03T05:50:11.124Z)
necessary accounts resynced in 0.30ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.2
→ FROM undefined: 8.25899 ADA (33ops) (addr1qyzynlpar04xkej42kq08ct8rk9jgkgdzxvlhj96wqu2luxtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3ql3ax7w on 1852'/1815'/2'/0/12) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano (! sum of ops -4.034228 ADA)
max spendable ~8.08157
★ using mutation 'redelegate to pool'
✔️ transaction 
  DELEGATE 
STATUS (301ms)
  amount: 0 ADA
  estimated fees: 0.174301 ADA
  total spent: 0.174301 ADA
errors: 
warnings: 
✔️ has been signed! (56.5s) {"operation":{"id":"js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano-46073bbc1f92e11732d38206382fdbea30216fa4db999202f1737bc162f59740-DELEGATE","hash":"46073bbc1f92e11732d38206382fdbea30216fa4db999202f1737bc162f59740","type":"DELEGATE","senders":["addr1q8zsfh5vls05mtjcjujykat2uexs879zrse490fnglmxmv7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3ql36hdx"],"recipients":["addr1q9c27s5mqszzk6ads43xgaahwlc8qy84lwy9d4v3yqdq0axtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qkshz2r"],"accountId":"js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano","blockHeight":null,"extra":{"rewards":"0.007117 ADA"},"date":"2024-10-03T05:49:12.062Z","value":"174301","fee":"174301"},"signature":"84a60081825820276cd06682a6227802c0ad66ccc97e34fa1047316309939fbf2ad66af9a10e5b000181a20058390170af429b04042b6bad85626477b777f07010f5fb8856d591201a07f4cbc45ffaa402bfbc5dc4429a0ae62fd787cd63cfe2e7482d822f70e2011a0047d77e021a0002a8dd031a0820ec6c048183028200581ccbc45ffaa402bfbc5dc4429a0ae62fd787cd63cfe2e7482d822f70e2581cda50099e7aa1d926e1888990b1c404caf554dd6f68a1cb0322999d1d05a1581de1cbc45ffaa402bfbc5dc4429a0ae62fd787cd63cfe2e7482d822f70e2191bcda10082825820514678bb47265af6b9fd4c4b0df9bde5b2b1f04e1e11f12546692613e0fec6f8584010bb968e109bec02166fe21bb2e81f9a5184bd7281ee5c9dceb4470751073f27bfe4fbbcb5f3da5d3de9c2a7057a9d403fa7ce64d504a6a571c6d342a493810e8258208f222dfc3217d66ac6fb768f24e8d9943ecd369a12570190d0932dee8380cc995840a7f2d996c6cc81ec5b6deb69fa3d5380084a388040068d03d6b00bfcae19107dd8a3ed2c7f5c0ee9e945dee031562839c76f56b20099c1e62f40fb6aa0dd0609f5f6"}
⚠️ TEST during broadcast
LedgerAPI4xx: API HTTP 403 https://cardano.coin.ledger.com/api/v1/transaction/submit
(totally spent 57s – ends at 2024-10-03T05:50:11.126Z)
necessary accounts resynced in 760ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.2
→ FROM undefined: 36.1896 ADA (18ops) (addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf on 1852'/1815'/3'/0/8) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano (! sum of ops 32.532249 ADA)
max spendable ~36.0122
★ using mutation 'send max'
→ TO undefined: 10.9929 ADA (20ops) (addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63 on 1852'/1815'/1'/0/5) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
✔️ transaction 
  SEND MAX
TO addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63
STATUS (335ms)
  amount: 36.012206 ADA
  estimated fees: 0.177425 ADA
  total spent: 36.189631 ADA
errors: 
warnings: 
✔️ has been signed! (20.3s) {"operation":{"id":"js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano-6c5450fb8ee1760fcea5da3813964a1d407061ee05318930ed13fc8589a3e953-OUT","hash":"6c5450fb8ee1760fcea5da3813964a1d407061ee05318930ed13fc8589a3e953","type":"OUT","senders":["addr1q8gakq5kagagz3patsxeuqy0kufk8ya38tz7wt9sgt8p5zt39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcq7tx0n6","addr1q8n9vyavu6jggfq3zqlfry9srh05uf99n0hapjerwcnkezr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqnwme06","addr1qxw004zq0fgehslza7zez7dnaqtxkz7t7nxwmypx0y5pnrt39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcq8lxhey"],"recipients":["addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63"],"accountId":"js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano","blockHeight":null,"extra":{},"date":"2024-10-03T05:49:37.198Z","value":"36189631","fee":"177425"},"signature":"84a400838258205f8d8a47d41eb61b2c348a4ea612c946f5a99c064f7b781bb555a6befd7026d7018258208779c067491ed9a4628bddbd251a3e610561fbd8cb2a2f61cb5395f249ec0035008258205122b5b083fb88f3caea9e443b33194a6af9a3e1b32d10cb9a74c71010c41080000181a200583901996155ca0be457dd01a620bad70db38db8ed96614894fe6488a70070891c2d3f103997d31667fc604b0d735d832888bc4109dbd38f9009b0011a022580ae021a0002b511031a0820eca9a100838258204dc5176884885f45768837b67b6d543bdf35887bbfa33ea62279312324658d0f5840057a25a307b5077457d5e9ab37bdf95c650a71d9f7a7656cf1d9bd545ac1f5954b8579d514fbc4756393fbd1c67fdc2d4c78d9af1d05e7c71c5046f5c9dbba0f825820b66cac60d42d241596168d10946e9cbc340f364fb5b9d3f2251bc312b6af480d584093157c2c98570bcf16b07b9c659d3bd404674749239cd8dd4f086c8d9272d859f3d41511ef071f4b1d5003b9c2f5b612dc7dab8ae5a75b6a5eaad24dc0ca6d0a8258205a97b52dd95be568965ce539b84f106d2b4ff35617ec70466b924f792e0494a55840c99e45165f93d3619ae021b6830cf89c810ffe0c8873216176c140e31ebe63047cda6ff0a5f52111dfd21d537c99a8cea73be5345b4a230e7178540829d84108f5f6"}
⚠️ TEST during broadcast
LedgerAPI4xx: API HTTP 403 https://cardano.coin.ledger.com/api/v1/transaction/submit
(totally spent 20.7s – ends at 2024-10-03T05:50:11.128Z)
necessary accounts resynced in 8ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.2
→ FROM undefined: 33.2785 ADA (16ops) (addr1qx3g49fdnmh20r9er454frtsdzd56q58nr2f9f3p8auct9gyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq8m32rm on 1852'/1815'/5'/0/4) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano (! sum of ops 29.571843 ADA)
max spendable ~33.1011
★ using mutation 'move ~50%'
→ TO undefined: 36.1896 ADA (18ops) (addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf on 1852'/1815'/3'/0/8) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
✔️ transaction 
  SEND  16.639263 ADA
TO addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf
STATUS (379ms)
  amount: 16.639263 ADA
  estimated fees: 0.171089 ADA
  total spent: 16.810352 ADA
errors: 
warnings: 
✔️ has been signed! (22s) {"operation":{"id":"js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano-1b3b68bf7964ebb752e4b5d40b597ee2c4983a777b4094eb274a42f38c6a93cd-OUT","hash":"1b3b68bf7964ebb752e4b5d40b597ee2c4983a777b4094eb274a42f38c6a93cd","type":"OUT","senders":["addr1q9096r4f5kg7ct4d8l4ln7t8phpuxv549uew9dnwx0vjlsgyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeqxsxuee"],"recipients":["addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf","addr1qyzk23vp2v57q96du8vvqsywkexg426l040x6n5xpj6sjgqyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeqgf6dpa"],"accountId":"js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano","blockHeight":null,"extra":{"memo":"LedgerLiveBot"},"date":"2024-10-03T05:50:05.585Z","value":"16810352","fee":"171089"},"signature":"84a50081825820c4adcbebcccdbf24a0cf8c87e3aca27afe005efe94f18d7289eb80e0b9f14933000182a200583901b05337c0aef07a86f43ba185ec7dede8827c4411fb0122ffa042c7b8712871d9cbcb1a350676dae9fdd6b19c52ea8838318e1d9e46758cb0011a00fde51fa200583901056545815329e0174de1d8c0408eb64c8aab5f7d5e6d4e860cb509200410771fc7d27f8aaf83ef936dbaadd76d18260578c3a78b41a9e8b2011a008fe6c5021a00029c51031a0820ecc4075820e30d681b6b8f30aa6c42cde49f6482b1f10416b94d32176a42fd7c3d9e52dcdda100818258209e02e251c46b97ec19d3c603e1c97818915c40aa275a0d16d1c8b9a93ec4688b584086ed0c93a1e9e0c748bf78354e9392dd6c296b987062e70931782f8ca9d5217d0ac888736b4deb81ed0e9e309511e739a20cf33696d68ac5e8f78cae9e12da0ff5d90103a100a11902a2a1636d7367816d4c65646765724c697665426f74"}
⚠️ TEST during broadcast
LedgerAPI4xx: API HTTP 403 https://cardano.coin.ledger.com/api/v1/transaction/submit
(totally spent 22.5s – ends at 2024-10-03T05:50:11.132Z)
necessary accounts resynced in 0.29ms
▬ 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 AVAX (51ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:avalanche_c_chain:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND MAX
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (703ms)
  amount: 0.197109660309681675 AVAX
  estimated fees: 0.000584600303574 AVAX
  total spent: 0.197694260613255675 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 60.8s – ends at 2024-10-03T05:50:11.157Z)
necessary accounts resynced in 0.17ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.098559662178169837 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (574ms)
  amount: 0.098559662178169837 AVAX
  estimated fees: 0.000579568320009 AVAX
  total spent: 0.099139230498178837 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.6s – ends at 2024-10-03T05:50:11.188Z)
necessary accounts resynced in 0.22ms
▬ 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 (22ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:avalanche_c_chain:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x9F38B2C32aE3433552C566365D462dc64dd0edC9
STATUS (671ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.0005760607503 AVAX
  total spent: 0.201433220404726997 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.7s – ends at 2024-10-03T05:50:11.190Z)
necessary accounts resynced in 0.30ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'send max'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND MAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (1126ms)
  amount: 0.055037491197684488 BNB
  estimated fees: 0.000028171898076 BNB
  total spent: 0.055065663095760488 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 61.2s – ends at 2024-10-03T05:50:11.204Z)
necessary accounts resynced in 0.17ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~0.0242889
★ using mutation 'move 50%'
→ TO undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.012144467609662234 BNB
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (899ms)
  amount: 0.012144467609662234 BNB
  estimated fees: 0.000027262485789 BNB
  total spent: 0.012171730095451234 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"is ready","x":44,"y":17,"w":78,"h":32}
{"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 61s – ends at 2024-10-03T05:50:11.207Z)
necessary accounts resynced in 0.26ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'move 50%'
→ TO undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND  0.012112967609641233 BNB
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (3.2s)
  amount: 0.012112967609641233 BNB
  estimated fees: 0.000063126 BNB
  total spent: 0.012176093609641233 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 77.7s – ends at 2024-10-03T05:50:11.244Z)
necessary accounts resynced in 0.28ms
▬ 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. 

⚠️ LedgerAPI5xx: API HTTP 520 https://polkadot-sidecar.coin.ledger.com/transaction/fee-estimate

necessary accounts resynced in 0.33ms
▬ 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.1357819016 DOT
TO 12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy
STATUS (527ms)
  amount: 0.1357819016 DOT
  estimated fees: 0.0157154905 DOT
  total spent: 0.1514973921 DOT
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Chain'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Chain": "Polkadot",
+   "Chain": "polkadot",
  }
(totally spent 2259ms – ends at 2024-10-03T05:50:11.256Z)
⚠️ 4 spec hints
  • Spec Qtum:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Decred:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec Cronos:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Boba:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
Details of the 39 mutations

Spec Filecoin (0)


Spec Qtum (6)

Spec Qtum found 6 Qtum accounts. Will use Qtum 2.1.0-rc on nanoS 2.1.0
undefined [segwit]: 1.36491 QTUM (109ops) (MKabfnw96FDmKqzdJJx6kFdsqrXux4q99v on 49'/88'/0'/0/55) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.456345 QTUM (99ops) (MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD on 49'/88'/1'/0/50) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
undefined [segwit]: 0 QTUM (0ops) (MR3A49zXnWaH7Vhm7YKeiaREazdKZxie6r on 49'/88'/2'/0/0) segwit#2 js:2:qtum:xpub6BvfSTHRWubyX78dqB3tVcgps5JtUKukFsbkwrxQhEvBr2UmTUjNEdcZRvmBb6PczEcKUrnVvQvQ2BafHcw1wBkqbVLzNyEN912tNDDd8M9:segwit
undefined [legacy]: 0.553565 QTUM (105ops) (QgxWAuKyUAeY56HjpUUsYFdmkMVRGhdfEz on 44'/88'/0'/0/55) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.100443 QTUM (90ops) (QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa on 44'/88'/1'/0/41) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
necessary accounts resynced in 0.29ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 1.36491 QTUM (109ops) (MKabfnw96FDmKqzdJJx6kFdsqrXux4q99v on 49'/88'/0'/0/55) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
4 UTXOs
0.94099      MRawkYkRU2ZTHYXJ3UN9ZBKAt9Lmtwcj8g (change) bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08 @2 (37799)
0.279569     MEfRekbEkmbKJS4bLZtrt4U76MgAzkZjKB f0735b029b62beb456dc25ffa4de16cbe27216576dd50936b9c24521c981a2ba @0 (18897)
0.143358     M8S1fVFuLho8Vi5XxdeWmfTJByQLba2wmG 60c6ca980b1a54d9693671a741b479105b8fc06278c652d924b79b9c564a6708 @0 (18899)
0.001        MCZ6LJevNVQ7o6oQW1zcnMsnwcrt4bpi1H 0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24 @0 (18896)

max spendable ~1.36088
★ using mutation 'move ~50%'
→ TO undefined [legacy]: 0.553565 QTUM (105ops) (QgxWAuKyUAeY56HjpUUsYFdmkMVRGhdfEz on 44'/88'/0'/0/55) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
✔️ transaction 
SEND 0.67735801 QTUM
TO QgxWAuKyUAeY56HjpUUsYFdmkMVRGhdfEz
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed RBF-enabled
STATUS (236ms)
TX INPUTS (1):
0.94099      MRawkYkRU2ZTHYXJ3UN9ZBKAt9Lmtwcj8g bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08@2
TX OUTPUTS (2):
0.677358     QgxWAuKyUAeY56HjpUUsYFdmkMVRGhdfEz rbf @0 (0)
0.261955     MGtd5KmFiqy2NM3qSbLfyxHyLhgAoobVCc (change) rbf @1 (0)
  amount: 0.67735801 QTUM
  estimated fees: 0.00167668 QTUM
  total spent: 0.67903469 QTUM
errors: 
warnings: 
✔️ has been signed! (15.4s) 
✔️ broadcasted! (117ms) optimistic operation: 
  -0.67903469 QTUM   OUT        9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f 2024-10-03T05:42
✔️ operation confirmed (10.9s): 
  -0.67903469 QTUM   OUT        9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f 2024-10-03T05:42
✔️ undefined [segwit]: 0.685883 QTUM (110ops) (MKabfnw96FDmKqzdJJx6kFdsqrXux4q99v on 49'/88'/0'/0/55) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
4 UTXOs
0.279569     MEfRekbEkmbKJS4bLZtrt4U76MgAzkZjKB f0735b029b62beb456dc25ffa4de16cbe27216576dd50936b9c24521c981a2ba @0 (18898)
0.261955     MGtd5KmFiqy2NM3qSbLfyxHyLhgAoobVCc (change) rbf 9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f @1 (0)
0.143358     M8S1fVFuLho8Vi5XxdeWmfTJByQLba2wmG 60c6ca980b1a54d9693671a741b479105b8fc06278c652d924b79b9c564a6708 @0 (18900)
0.001        MCZ6LJevNVQ7o6oQW1zcnMsnwcrt4bpi1H 0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24 @0 (18897)
(in 10.9s)
✔️ destination operation 
  +0.67735801 QTUM   IN         9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f 2024-10-03T05:42
(in 10.8s)

necessary accounts resynced in 0.30ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.456345 QTUM (99ops) (MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD on 49'/88'/1'/0/50) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
3 UTXOs
0.393279     MNVG3xBkAvDqXwBcqvVq3RiXDJpAitGmun (change) rbf affb39e21a4bb62b5e9412736ff3ff88383fb88808ba7931e23a098ed2f93fed @1 (56684)
0.062066     MDxv62YrGejXBetNPDbrvpj7NVR9AwPKRL (change) 60c6ca980b1a54d9693671a741b479105b8fc06278c652d924b79b9c564a6708 @1 (18899)
0.001        M9ihTUQN1iivesd4fah18o6vNFq5cDMTNp bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08 @0 (37799)

max spendable ~0.453212
★ using mutation 'optimize-size'
→ TO undefined [legacy]: 0.100443 QTUM (90ops) (QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa on 44'/88'/1'/0/41) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
✔️ transaction 
SEND 0.27339765 QTUM
TO QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (223ms)
TX INPUTS (1):
0.393279     MNVG3xBkAvDqXwBcqvVq3RiXDJpAitGmun affb39e21a4bb62b5e9412736ff3ff88383fb88808ba7931e23a098ed2f93fed@1
TX OUTPUTS (2):
0.273397     QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa @0 (0)
0.11821      MMhXW94DDx6sEVJkSJq5tJje8EgsofbrXz (change) @1 (0)
  amount: 0.27339765 QTUM
  estimated fees: 0.00167167 QTUM
  total spent: 0.27506932 QTUM
errors: 
warnings: 
✔️ has been signed! (9.1s) 
✔️ broadcasted! (96ms) optimistic operation: 
  -0.27506932 QTUM   OUT        3aa29b0430f432b32dd09a370588a81a7aeeb4475043dc27cd8a56fc0b204e8d 2024-10-03T05:43
✔️ operation confirmed (11.2s): 
  -0.27506932 QTUM   OUT        3aa29b0430f432b32dd09a370588a81a7aeeb4475043dc27cd8a56fc0b204e8d 2024-10-03T05:43
✔️ undefined [segwit]: 0.181276 QTUM (100ops) (MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD on 49'/88'/1'/0/50) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
3 UTXOs
0.11821      MMhXW94DDx6sEVJkSJq5tJje8EgsofbrXz (change) 3aa29b0430f432b32dd09a370588a81a7aeeb4475043dc27cd8a56fc0b204e8d @1 (0)
0.062066     MDxv62YrGejXBetNPDbrvpj7NVR9AwPKRL (change) 60c6ca980b1a54d9693671a741b479105b8fc06278c652d924b79b9c564a6708 @1 (18903)
0.001        M9ihTUQN1iivesd4fah18o6vNFq5cDMTNp bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08 @0 (37803)
(in 11.2s)
✔️ destination operation 
  +0.27339765 QTUM   IN         3aa29b0430f432b32dd09a370588a81a7aeeb4475043dc27cd8a56fc0b204e8d 2024-10-03T05:43
(in 10.6s)

necessary accounts resynced in 0.23ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 1.23092 QTUM (106ops) (QYChtxjK1HVh5m5P5Ngend5JEagrZhmobS on 44'/88'/0'/0/56) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
2 UTXOs
0.677358     QgxWAuKyUAeY56HjpUUsYFdmkMVRGhdfEz rbf 9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f @0 (0)
0.553565     QXvPLbfaASKXmTKk1UWZ6tGDCifkbRr5aR fce12915125f044a9ad94ebb90370211cee31df069d475fe0f3282a96bca2e09 @0 (18902)

max spendable ~0.551643
★ using mutation 'send OP_RETURN transaction'
→ TO undefined [segwit]: 0.181276 QTUM (100ops) (MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD on 49'/88'/1'/0/50) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
✔️ transaction 
SEND 0.001 QTUM
TO MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (121ms)
TX INPUTS (1):
0.553565     QXvPLbfaASKXmTKk1UWZ6tGDCifkbRr5aR fce12915125f044a9ad94ebb90370211cee31df069d475fe0f3282a96bca2e09@0
TX OUTPUTS (3):
0.001        MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD @0 (0)
0            @1 (0)
0.550042     QYyEXCWJ5KnYwuJU5L4zUrjCiYjaW1BXtR (change) @2 (0)
  amount: 0.001 QTUM
  estimated fees: 0.00252252 QTUM
  total spent: 0.00352252 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (13.5s) 
✔️ broadcasted! (95ms) optimistic operation: 
  -0.00352252 QTUM   OUT        2683ad595e20cedfe908176b5eb8beb605e0019df44788468d1a7a96f5e75f4b 2024-10-03T05:43
✔️ operation confirmed (10.6s): 
  -0.00352252 QTUM   OUT        2683ad595e20cedfe908176b5eb8beb605e0019df44788468d1a7a96f5e75f4b 2024-10-03T05:43
✔️ undefined [legacy]: 1.2274 QTUM (107ops) (QYChtxjK1HVh5m5P5Ngend5JEagrZhmobS on 44'/88'/0'/0/56) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
2 UTXOs
0.677358     QgxWAuKyUAeY56HjpUUsYFdmkMVRGhdfEz rbf 9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f @0 (1)
0.550042     QYyEXCWJ5KnYwuJU5L4zUrjCiYjaW1BXtR (change) 2683ad595e20cedfe908176b5eb8beb605e0019df44788468d1a7a96f5e75f4b @2 (0)
(in 10.6s)
✔️ destination operation 
  +0.001 QTUM        IN         2683ad595e20cedfe908176b5eb8beb605e0019df44788468d1a7a96f5e75f4b 2024-10-03T05:43
(in 10.6s)

necessary accounts resynced in 0.29ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 0.373841 QTUM (91ops) (QVtf3MuQbnUWssshbFxyouqHJDsFArVaZn on 44'/88'/1'/0/42) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
2 UTXOs
0.273397     QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa 3aa29b0430f432b32dd09a370588a81a7aeeb4475043dc27cd8a56fc0b204e8d @0 (0)
0.100443     QSMypG3Gz5PhoEzho2Ay8ZMX5EUdUM9E5n (change) 0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24 @2 (18900)

max spendable ~0.0985214
★ using mutation 'send max'
→ TO undefined [legacy]: 1.2274 QTUM (107ops) (QYChtxjK1HVh5m5P5Ngend5JEagrZhmobS on 44'/88'/0'/0/56) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
✔️ transaction 
SEND MAX
TO QYChtxjK1HVh5m5P5Ngend5JEagrZhmobS
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (154ms)
TX INPUTS (1):
0.100443     QSMypG3Gz5PhoEzho2Ay8ZMX5EUdUM9E5n 0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24@2
TX OUTPUTS (1):
0.0985214    QYChtxjK1HVh5m5P5Ngend5JEagrZhmobS @0 (0)
  amount: 0.09852147 QTUM
  estimated fees: 0.00192192 QTUM
  total spent: 0.10044339 QTUM
errors: 
warnings: 
✔️ has been signed! (7.9s) 
✔️ broadcasted! (98ms) optimistic operation: 
  -0.00192192 QTUM   OUT        f8e8c01ca5594f25543ea3afff4508abb5c08d0cf169001cff694446057fb917 2024-10-03T05:44
✔️ operation confirmed (10.9s): 
  -0.10044339 QTUM   OUT        f8e8c01ca5594f25543ea3afff4508abb5c08d0cf169001cff694446057fb917 2024-10-03T05:44
✔️ undefined [legacy]: 0.273397 QTUM (92ops) (QVtf3MuQbnUWssshbFxyouqHJDsFArVaZn on 44'/88'/1'/0/42) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
1 UTXOs
0.273397     QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa 3aa29b0430f432b32dd09a370588a81a7aeeb4475043dc27cd8a56fc0b204e8d @0 (0)
(in 10.9s)
✔️ destination operation 
  +0.09852147 QTUM   IN         f8e8c01ca5594f25543ea3afff4508abb5c08d0cf169001cff694446057fb917 2024-10-03T05:44
(in 10.5s)


Spec Decred (5)

Spec Decred found 5 Decred accounts (preload: 10ms). Will use Decred 1.3.14 on nanoS 2.1.0
undefined: 1.06636 DCR (96ops) (DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY on 44'/42'/0'/0/49) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.214191 DCR (94ops) (DsSDUo2SHS1k9uPx3qqgJqbAau8hTjmWCAP on 44'/42'/1'/0/47) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.0001 DCR (81ops) (Dsch9c5v5gjk1JjSYBifSR5foqVnUhjT6J2 on 44'/42'/2'/0/43) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0 DCR (75ops) (DseAagk4eo2qH9sNtBdPLRNr9wgysPT8Eyh on 44'/42'/3'/0/34) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
undefined: 0 DCR (0ops) (DskCZ4d3mZkXwLxAEjx2sEM121SFimdgvSv on 44'/42'/4'/0/0) #4 js:2:decred:dpubZEswmUQs2uoMffXvbjYzmFKAA8qiVoRpBd8QwvJKFgG4HaLsEf3yq9JdFJHzvmMqTKUybT8NPDs16zti7N3ehBSQmxZQB76h8MsWKLZDFAX:
necessary accounts resynced in 0.36ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 1.06636 DCR (96ops) (DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY on 44'/42'/0'/0/49) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
3 UTXOs
0.720983     Dsc9hRnaVy45h5vKEkSdWneCCbhx8Gcmnsh c3d0d4b86dfaebcae78b08397cfa5e9ef7f293893d2ce970e58a3af35bcf1c03 @0 (2003)
0.227724     Dse6yJRd18bRWjP2aP1uTADpEHAaRTKsEu4 rbf 0f89c5fd15bfb0e781206ee319c8a5e7d37cd0083833bc976c7cfa67822c3b65 @0 (2003)
0.117657     DsSMi8SrJ8JvfkP23tN1TQJ2fttvpPEVbdJ (change) d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d @2 (2003)

max spendable ~1.06619
★ using mutation 'move ~50%'
→ TO undefined: 0.0001 DCR (81ops) (Dsch9c5v5gjk1JjSYBifSR5foqVnUhjT6J2 on 44'/42'/2'/0/43) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
✔️ transaction 
SEND 0.5154832 DCR
TO Dsch9c5v5gjk1JjSYBifSR5foqVnUhjT6J2
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed RBF-enabled
STATUS (416ms)
TX INPUTS (3):
0.117657     DsSMi8SrJ8JvfkP23tN1TQJ2fttvpPEVbdJ d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d@2
0.227724     Dse6yJRd18bRWjP2aP1uTADpEHAaRTKsEu4 0f89c5fd15bfb0e781206ee319c8a5e7d37cd0083833bc976c7cfa67822c3b65@0
0.720983     Dsc9hRnaVy45h5vKEkSdWneCCbhx8Gcmnsh c3d0d4b86dfaebcae78b08397cfa5e9ef7f293893d2ce970e58a3af35bcf1c03@0
TX OUTPUTS (2):
0.515483     Dsch9c5v5gjk1JjSYBifSR5foqVnUhjT6J2 rbf @0 (0)
0.5507       DsVR7UsFTjWt6vXjqsWPTNtQ5gLK5etrt5G (change) rbf @1 (0)
  amount: 0.5154832 DCR
  estimated fees: 0.00018166 DCR
  total spent: 0.51566486 DCR
errors: 
warnings: 
✔️ has been signed! (24.3s) 
✔️ broadcasted! (204ms) optimistic operation: 
  -0.51566486 DCR    OUT        5d278d9cdcb131bd1d232af3ddae302affbe95967fa21a5130f67adbe37702c4 2024-10-03T05:42
✔️ operation confirmed (10.5s): 
  -0.51566486 DCR    OUT        5d278d9cdcb131bd1d232af3ddae302affbe95967fa21a5130f67adbe37702c4 2024-10-03T05:42
✔️ undefined: 0.5507 DCR (97ops) (DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY on 44'/42'/0'/0/49) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
1 UTXOs
0.5507       DsVR7UsFTjWt6vXjqsWPTNtQ5gLK5etrt5G (change) rbf 5d278d9cdcb131bd1d232af3ddae302affbe95967fa21a5130f67adbe37702c4 @1 (0)
(in 10.5s)
✔️ destination operation 
  +0.5154832 DCR     IN         5d278d9cdcb131bd1d232af3ddae302affbe95967fa21a5130f67adbe37702c4 2024-10-03T05:42
(in 10.6s)

necessary accounts resynced in 0.30ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.214191 DCR (94ops) (DsSDUo2SHS1k9uPx3qqgJqbAau8hTjmWCAP on 44'/42'/1'/0/47) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
3 UTXOs
0.136505     DseskB1DNNtndiHdgVcP7HCv8scdAkVi16p (change) rbf 0f89c5fd15bfb0e781206ee319c8a5e7d37cd0083833bc976c7cfa67822c3b65 @1 (2003)
0.0775859    DsiyVUWhGmyW1qUSGD7PXJcRJv6PC6bQ51Y (change) 2700212b608477bff3bdfd82d1ebea46f40307e2c2c37658f0f4d00793deb808 @2 (4015)
0.0001       DsZn6CBws1wru72D2oLKAada3JDCvL9hhXm d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d @0 (2003)

max spendable ~0.214025
★ using mutation 'send 1 utxo'
→ TO undefined: 0.515583 DCR (82ops) (DsTpUrb6G4QDibn8XNgoxpXnoJXJ9bM2NG1 on 44'/42'/2'/0/44) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
✔️ transaction 
SEND MAX
TO DsTpUrb6G4QDibn8XNgoxpXnoJXJ9bM2NG1
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude 2700212b608477bff3bdfd82d1ebea46f40307e2c2c37658f0f4d00793deb808 @2
exclude d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d @0
STATUS (321ms)
TX INPUTS (1):
0.136505     DseskB1DNNtndiHdgVcP7HCv8scdAkVi16p 0f89c5fd15bfb0e781206ee319c8a5e7d37cd0083833bc976c7cfa67822c3b65@1
TX OUTPUTS (1):
0.136439     DsTpUrb6G4QDibn8XNgoxpXnoJXJ9bM2NG1 @0 (0)
  amount: 0.13643901 DCR
  estimated fees: 0.00006696 DCR
  total spent: 0.13650597 DCR
errors: 
warnings: 
✔️ has been signed! (7.3s) 
✔️ broadcasted! (251ms) optimistic operation: 
  -0.00006696 DCR    OUT        eaf2a8619ef2402375c1a3cb69781b3ad2f756a7c5ea60705e3d096796e0587b 2024-10-03T05:43
✔️ operation confirmed (10.5s): 
  -0.13650597 DCR    OUT        eaf2a8619ef2402375c1a3cb69781b3ad2f756a7c5ea60705e3d096796e0587b 2024-10-03T05:43
✔️ undefined: 0.0776859 DCR (95ops) (DsSDUo2SHS1k9uPx3qqgJqbAau8hTjmWCAP on 44'/42'/1'/0/47) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
2 UTXOs
0.0775859    DsiyVUWhGmyW1qUSGD7PXJcRJv6PC6bQ51Y (change) 2700212b608477bff3bdfd82d1ebea46f40307e2c2c37658f0f4d00793deb808 @2 (4015)
0.0001       DsZn6CBws1wru72D2oLKAada3JDCvL9hhXm d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d @0 (2003)
(in 10.5s)
✔️ destination operation 
  +0.13643901 DCR    IN         eaf2a8619ef2402375c1a3cb69781b3ad2f756a7c5ea60705e3d096796e0587b 2024-10-03T05:43
(in 10.4s)


Spec cardano (7)

Spec cardano found 7 Cardano accounts. Will use CardanoADA 6.1.2 on nanoSP 1.1.2
undefined: 0.003632 ADA (37ops) (addr1qx7wsgcsg0t5lac6tty6j6v89can4tfn26nklmkuw5kf6ehgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq2tfxdt on 1852'/1815'/0'/0/11) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano
undefined: 10.9929 ADA (20ops) (addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63 on 1852'/1815'/1'/0/5) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
undefined: 8.25899 ADA (33ops) (addr1qyzynlpar04xkej42kq08ct8rk9jgkgdzxvlhj96wqu2luxtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3ql3ax7w on 1852'/1815'/2'/0/12) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
undefined: 36.1896 ADA (18ops) (addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf on 1852'/1815'/3'/0/8) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
undefined: 0.014881 ADA (12ops) (addr1q8jpkrreuh29tzkg83vz9anzew9nhce52x4dkwl3ed6jmrmnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8srk7x0s on 1852'/1815'/4'/0/3) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano
undefined: 33.2785 ADA (16ops) (addr1qx3g49fdnmh20r9er454frtsdzd56q58nr2f9f3p8auct9gyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq8m32rm on 1852'/1815'/5'/0/4) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano
undefined: 0 ADA (0ops) (addr1q9nue3h5y9ct7j04yzgp828z80n9tvdlmytha0hq6klu9zj5jsy50zjdsvtn930t9rspyvwfr9e4kkagmggflzec8cjq7xqj36 on 1852'/1815'/6'/0/0) cardano#6 js:2:cardano:e0576116d690cadac40fa0c3265e4efceaca261b9ef737f32d35629c299a0147053d9d5ace97f7a602a51e4fe0a3dfb95f88dfe82677f5b0c52c2eb26e1ac87e:cardano
necessary accounts resynced in 0.16ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.2
→ FROM undefined: 10.9929 ADA (20ops) (addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63 on 1852'/1815'/1'/0/5) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano (! sum of ops 3.558145 ADA)
max spendable ~10.8275
★ using mutation 'delegate to pool'
✔️ transaction 
  DELEGATE 
STATUS (265ms)
  amount: 0 ADA
  estimated fees: 0.174213 ADA
  total spent: 0.174213 ADA
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"m/1852'/1815'/1'/2/0","x":14,"y":21,"w":101,"h":9}
{"text":"Confirm","x":42,"y":29,"w":45,"h":9}
{"text":"delegation?","x":30,"y":43,"w":68,"h":12}
{"text":"Confirm","x":42,"y":29,"w":45,"h":9}
{"text":"transaction?","x":28,"y":43,"w":72,"h":9}
(totally spent 60.3s – ends at 2024-10-03T05:50:11.464Z)
necessary accounts resynced in 0.30ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.2
→ FROM undefined: 8.25899 ADA (33ops) (addr1qyzynlpar04xkej42kq08ct8rk9jgkgdzxvlhj96wqu2luxtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3ql3ax7w on 1852'/1815'/2'/0/12) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano (! sum of ops -4.034228 ADA)
max spendable ~8.08157
★ using mutation 'redelegate to pool'
✔️ transaction 
  DELEGATE 
STATUS (301ms)
  amount: 0 ADA
  estimated fees: 0.174301 ADA
  total spent: 0.174301 ADA
errors: 
warnings: 
✔️ has been signed! (56.5s) {"operation":{"id":"js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano-46073bbc1f92e11732d38206382fdbea30216fa4db999202f1737bc162f59740-DELEGATE","hash":"46073bbc1f92e11732d38206382fdbea30216fa4db999202f1737bc162f59740","type":"DELEGATE","senders":["addr1q8zsfh5vls05mtjcjujykat2uexs879zrse490fnglmxmv7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3ql36hdx"],"recipients":["addr1q9c27s5mqszzk6ads43xgaahwlc8qy84lwy9d4v3yqdq0axtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qkshz2r"],"accountId":"js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano","blockHeight":null,"extra":{"rewards":"0.007117 ADA"},"date":"2024-10-03T05:49:12.062Z","value":"174301","fee":"174301"},"signature":"84a60081825820276cd06682a6227802c0ad66ccc97e34fa1047316309939fbf2ad66af9a10e5b000181a20058390170af429b04042b6bad85626477b777f07010f5fb8856d591201a07f4cbc45ffaa402bfbc5dc4429a0ae62fd787cd63cfe2e7482d822f70e2011a0047d77e021a0002a8dd031a0820ec6c048183028200581ccbc45ffaa402bfbc5dc4429a0ae62fd787cd63cfe2e7482d822f70e2581cda50099e7aa1d926e1888990b1c404caf554dd6f68a1cb0322999d1d05a1581de1cbc45ffaa402bfbc5dc4429a0ae62fd787cd63cfe2e7482d822f70e2191bcda10082825820514678bb47265af6b9fd4c4b0df9bde5b2b1f04e1e11f12546692613e0fec6f8584010bb968e109bec02166fe21bb2e81f9a5184bd7281ee5c9dceb4470751073f27bfe4fbbcb5f3da5d3de9c2a7057a9d403fa7ce64d504a6a571c6d342a493810e8258208f222dfc3217d66ac6fb768f24e8d9943ecd369a12570190d0932dee8380cc995840a7f2d996c6cc81ec5b6deb69fa3d5380084a388040068d03d6b00bfcae19107dd8a3ed2c7f5c0ee9e945dee031562839c76f56b20099c1e62f40fb6aa0dd0609f5f6"}
⚠️ TEST during broadcast
LedgerAPI4xx: API HTTP 403 https://cardano.coin.ledger.com/api/v1/transaction/submit
(totally spent 57s – ends at 2024-10-03T05:50:11.466Z)
necessary accounts resynced in 760ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.2
→ FROM undefined: 36.1896 ADA (18ops) (addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf on 1852'/1815'/3'/0/8) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano (! sum of ops 32.532249 ADA)
max spendable ~36.0122
★ using mutation 'send max'
→ TO undefined: 10.9929 ADA (20ops) (addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63 on 1852'/1815'/1'/0/5) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
✔️ transaction 
  SEND MAX
TO addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63
STATUS (335ms)
  amount: 36.012206 ADA
  estimated fees: 0.177425 ADA
  total spent: 36.189631 ADA
errors: 
warnings: 
✔️ has been signed! (20.3s) {"operation":{"id":"js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano-6c5450fb8ee1760fcea5da3813964a1d407061ee05318930ed13fc8589a3e953-OUT","hash":"6c5450fb8ee1760fcea5da3813964a1d407061ee05318930ed13fc8589a3e953","type":"OUT","senders":["addr1q8gakq5kagagz3patsxeuqy0kufk8ya38tz7wt9sgt8p5zt39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcq7tx0n6","addr1q8n9vyavu6jggfq3zqlfry9srh05uf99n0hapjerwcnkezr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqnwme06","addr1qxw004zq0fgehslza7zez7dnaqtxkz7t7nxwmypx0y5pnrt39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcq8lxhey"],"recipients":["addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63"],"accountId":"js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano","blockHeight":null,"extra":{},"date":"2024-10-03T05:49:37.198Z","value":"36189631","fee":"177425"},"signature":"84a400838258205f8d8a47d41eb61b2c348a4ea612c946f5a99c064f7b781bb555a6befd7026d7018258208779c067491ed9a4628bddbd251a3e610561fbd8cb2a2f61cb5395f249ec0035008258205122b5b083fb88f3caea9e443b33194a6af9a3e1b32d10cb9a74c71010c41080000181a200583901996155ca0be457dd01a620bad70db38db8ed96614894fe6488a70070891c2d3f103997d31667fc604b0d735d832888bc4109dbd38f9009b0011a022580ae021a0002b511031a0820eca9a100838258204dc5176884885f45768837b67b6d543bdf35887bbfa33ea62279312324658d0f5840057a25a307b5077457d5e9ab37bdf95c650a71d9f7a7656cf1d9bd545ac1f5954b8579d514fbc4756393fbd1c67fdc2d4c78d9af1d05e7c71c5046f5c9dbba0f825820b66cac60d42d241596168d10946e9cbc340f364fb5b9d3f2251bc312b6af480d584093157c2c98570bcf16b07b9c659d3bd404674749239cd8dd4f086c8d9272d859f3d41511ef071f4b1d5003b9c2f5b612dc7dab8ae5a75b6a5eaad24dc0ca6d0a8258205a97b52dd95be568965ce539b84f106d2b4ff35617ec70466b924f792e0494a55840c99e45165f93d3619ae021b6830cf89c810ffe0c8873216176c140e31ebe63047cda6ff0a5f52111dfd21d537c99a8cea73be5345b4a230e7178540829d84108f5f6"}
⚠️ TEST during broadcast
LedgerAPI4xx: API HTTP 403 https://cardano.coin.ledger.com/api/v1/transaction/submit
(totally spent 20.7s – ends at 2024-10-03T05:50:11.475Z)
necessary accounts resynced in 8ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.2
→ FROM undefined: 33.2785 ADA (16ops) (addr1qx3g49fdnmh20r9er454frtsdzd56q58nr2f9f3p8auct9gyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq8m32rm on 1852'/1815'/5'/0/4) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano (! sum of ops 29.571843 ADA)
max spendable ~33.1011
★ using mutation 'move ~50%'
→ TO undefined: 36.1896 ADA (18ops) (addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf on 1852'/1815'/3'/0/8) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
✔️ transaction 
  SEND  16.639263 ADA
TO addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf
STATUS (379ms)
  amount: 16.639263 ADA
  estimated fees: 0.171089 ADA
  total spent: 16.810352 ADA
errors: 
warnings: 
✔️ has been signed! (22s) {"operation":{"id":"js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano-1b3b68bf7964ebb752e4b5d40b597ee2c4983a777b4094eb274a42f38c6a93cd-OUT","hash":"1b3b68bf7964ebb752e4b5d40b597ee2c4983a777b4094eb274a42f38c6a93cd","type":"OUT","senders":["addr1q9096r4f5kg7ct4d8l4ln7t8phpuxv549uew9dnwx0vjlsgyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeqxsxuee"],"recipients":["addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf","addr1qyzk23vp2v57q96du8vvqsywkexg426l040x6n5xpj6sjgqyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeqgf6dpa"],"accountId":"js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano","blockHeight":null,"extra":{"memo":"LedgerLiveBot"},"date":"2024-10-03T05:50:05.585Z","value":"16810352","fee":"171089"},"signature":"84a50081825820c4adcbebcccdbf24a0cf8c87e3aca27afe005efe94f18d7289eb80e0b9f14933000182a200583901b05337c0aef07a86f43ba185ec7dede8827c4411fb0122ffa042c7b8712871d9cbcb1a350676dae9fdd6b19c52ea8838318e1d9e46758cb0011a00fde51fa200583901056545815329e0174de1d8c0408eb64c8aab5f7d5e6d4e860cb509200410771fc7d27f8aaf83ef936dbaadd76d18260578c3a78b41a9e8b2011a008fe6c5021a00029c51031a0820ecc4075820e30d681b6b8f30aa6c42cde49f6482b1f10416b94d32176a42fd7c3d9e52dcdda100818258209e02e251c46b97ec19d3c603e1c97818915c40aa275a0d16d1c8b9a93ec4688b584086ed0c93a1e9e0c748bf78354e9392dd6c296b987062e70931782f8ca9d5217d0ac888736b4deb81ed0e9e309511e739a20cf33696d68ac5e8f78cae9e12da0ff5d90103a100a11902a2a1636d7367816d4c65646765724c697665426f74"}
⚠️ TEST during broadcast
LedgerAPI4xx: API HTTP 403 https://cardano.coin.ledger.com/api/v1/transaction/submit
(totally spent 22.5s – ends at 2024-10-03T05:50:11.478Z)

Spec axelar (18)

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

max spendable ~0.028379
★ using mutation 'send some'
→ TO undefined: 1.9517 AXL (1ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
✔️ transaction 
SEND  0.011181 AXL
TO axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll

with fees=0.006178
STATUS (411ms)
  amount: 0.011181 AXL
  estimated fees: 0.006178 AXL
  total spent: 0.017359 AXL
errors: 
warnings: 
✔️ has been signed! (7.8s) 
✔️ broadcasted! (1494ms) optimistic operation: 
  -0.017359 AXL      OUT        69495D5A73211E4B155CA18B042D007960181EF5F7D86346FE46B0B4B2DF68E0 2024-10-03T05:43
✔️ operation confirmed (0.36ms): 
  -0.017359 AXL      OUT        69495D5A73211E4B155CA18B042D007960181EF5F7D86346FE46B0B4B2DF68E0 2024-10-03T05:43
✔️ undefined: 0.035364 AXL (2ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g: 0.035364 AXL spendable. 
✔️ destination operation 
  ? -17359           OUT        69495D5A73211E4B155CA18B042D007960181EF5F7D86346FE46B0B4B2DF68E0 2024-10-03T05:43

necessary accounts resynced in 0.25ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.059305 AXL (1ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5: (! sum of ops 0.049754 AXL) 0.059305 AXL spendable. 

max spendable ~0.05232
★ using mutation 'send max'
→ TO undefined: 1.9517 AXL (1ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
✔️ transaction 
SEND MAX
TO axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll

with fees=0.006175
STATUS (1318ms)
  amount: 0.05313 AXL
  estimated fees: 0.006175 AXL
  total spent: 0.059305 AXL
errors: 
warnings: 
✔️ has been signed! (9.2s) 
✔️ broadcasted! (66ms) optimistic operation: 
  -0.059305 AXL      OUT        DAE08C57629095F937DBD23534DB8DCB76E7BB8A45A671CBA0AC7C8F838C2D04 2024-10-03T05:43
✔️ operation confirmed (0.33ms): 
  -0.059305 AXL      OUT        DAE08C57629095F937DBD23534DB8DCB76E7BB8A45A671CBA0AC7C8F838C2D04 2024-10-03T05:43
✔️ undefined: 0.059305 AXL (1ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5: (! sum of ops 0.049754 AXL) 0.059305 AXL spendable. 
✔️ destination operation 
  ? -59305           OUT        DAE08C57629095F937DBD23534DB8DCB76E7BB8A45A671CBA0AC7C8F838C2D04 2024-10-03T05:43

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

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

with fees=0.006169
STATUS (406ms)
  amount: 0.017176 AXL
  estimated fees: 0.006169 AXL
  total spent: 0.023345 AXL
errors: 
warnings: 
✔️ has been signed! (10s) 
✔️ broadcasted! (64ms) optimistic operation: 
  -0.023345 AXL      OUT        245CE7577407FDA335A82D782799228B6E2B302D9EA14040F0AFC9BE9FF12AEA 2024-10-03T05:43
✔️ operation confirmed (0.22ms): 
  -0.023345 AXL      OUT        245CE7577407FDA335A82D782799228B6E2B302D9EA14040F0AFC9BE9FF12AEA 2024-10-03T05:43
✔️ undefined: 0.043582 AXL (6ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z: (! sum of ops -0.173416 AXL) 0.043582 AXL spendable. 
✔️ destination operation 
  ? -23345           OUT        245CE7577407FDA335A82D782799228B6E2B302D9EA14040F0AFC9BE9FF12AEA 2024-10-03T05:43

necessary accounts resynced in 0.29ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.00402 AXL (5ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops 0.022103 AXL) 0.979636 AXL spendable. 0.024391 AXL delegated. 
DELEGATIONS
  to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.024391 AXL  (claimable 0.024391)

max spendable ~0.972644
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.024391 -> axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud
with fees=0.015521
  memo=LedgerLiveBot
STATUS (442ms)
  amount: 0 AXL
  estimated fees: 0.015521 AXL
  total spent: 0.015521 AXL
errors: 
warnings: 
✔️ has been signed! (7.7s) 
✔️ broadcasted! (64ms) optimistic operation: 
  -0.015521 AXL      UNDELEGATE EBCCD0C4C4ECCCAA7D0D9B928521A89E2334FADFA200DAF3990F2AD732E19B6D 2024-10-03T05:43
    to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.024391 AXL    
✔️ operation confirmed (0.17ms): 
  -0.015521 AXL      UNDELEGATE EBCCD0C4C4ECCCAA7D0D9B928521A89E2334FADFA200DAF3990F2AD732E19B6D 2024-10-03T05:43
    to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.024391 AXL    
✔️ undefined: 1.00402 AXL (5ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops 0.022103 AXL) 0.979636 AXL spendable. 0.024391 AXL delegated. 
DELEGATIONS
  to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.024391 AXL  (claimable 0.024391)

necessary accounts resynced in 0.21ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.46154 AXL (5ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops 0.346764 AXL) 1.443666 AXL spendable. 0.017874 AXL delegated. 
DELEGATIONS
  to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.013023 AXL  (claimable 0.013023)
  to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.004851 AXL 

max spendable ~1.43666
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.013023 -> axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv
  source validator=axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate
with fees=0.023326
  memo=LedgerLiveBot
STATUS (299ms)
  amount: 0 AXL
  estimated fees: 0.023326 AXL
  total spent: 0.023326 AXL
errors: 
warnings: 
✔️ has been signed! (13.1s) 
✔️ broadcasted! (61ms) optimistic operation: 
  -0.023326 AXL      REDELEGATE 27336B8467CCB144920C75F767EBAFBDCE8D3D6BAB791B2A1A34F8E076B6F6E2 2024-10-03T05:43
    to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.013023 AXL    
✔️ operation confirmed (0.27ms): 
  -0.023326 AXL      REDELEGATE 27336B8467CCB144920C75F767EBAFBDCE8D3D6BAB791B2A1A34F8E076B6F6E2 2024-10-03T05:43
    to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.013023 AXL    
✔️ undefined: 1.46154 AXL (5ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops 0.346764 AXL) 1.443666 AXL spendable. 0.017874 AXL delegated. 
DELEGATIONS
  to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.013023 AXL  (claimable 0.013023)
  to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.004851 AXL 

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

max spendable ~7.36276
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.00884 AXL
TO 
  0.00884 -> axelarvaloper1n56swda49evz92zhcw2xc8esx6kzt8qmvfvgp6
with fees=0.011913
  memo=LedgerLiveBot
STATUS (600ms)
  amount: 0.00884 AXL
  estimated fees: 0.011913 AXL
  total spent: 0.020753 AXL
errors: 
warnings: 
✔️ has been signed! (10.1s) 
✔️ broadcasted! (63ms) optimistic operation: 
  -0.020753 AXL      DELEGATE   134F589E4987260072E466F4C4F3D7B6E7B0C4D33C8A41EDA4CAE8B7A5A15E50 2024-10-03T05:44
    to axelarvaloper1n56swda49evz92zhcw2xc8esx6kzt8qmvfvgp6 0.00884 AXL     
✔️ operation confirmed (0.27ms): 
  -0.020753 AXL      DELEGATE   134F589E4987260072E466F4C4F3D7B6E7B0C4D33C8A41EDA4CAE8B7A5A15E50 2024-10-03T05:44
    to axelarvaloper1n56swda49evz92zhcw2xc8esx6kzt8qmvfvgp6 0.00884 AXL     
✔️ undefined: 7.36976 AXL (0ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35: (! sum of ops 0 AXL) 7.36976 AXL spendable. 


Spec cosmos (16)

Spec cosmos found 16 Cosmos accounts (preload: 874ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 ATOM (48ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (37ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0 ATOM (38ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.186295 ATOM (60ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.018543 ATOM (24ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.005801 ATOM (56ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
undefined: 0 ATOM (23ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu:
undefined: 0.066629 ATOM (36ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0.136023 ATOM (21ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 2.05261 ATOM (19ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.49371 ATOM (4ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.36253 ATOM (13ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 0.678092 ATOM (1ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
undefined: 0.938338 ATOM (4ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 1.27014 ATOM (1ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
undefined: 0 ATOM (0ops) (cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5 on 44'/118'/15'/0/0) #15 js:2:cosmos:cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5:
necessary accounts resynced in 0.50ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.186295 ATOM (60ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4: (! sum of ops 0.200045 ATOM) 0.172597 ATOM spendable. 0.002653 ATOM delegated. 0.011045 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll 0.002653 ATOM  (claimable 0.002653)
UNDELEGATIONS
  from cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q 0.005472 ATOM
  from cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6 0.005573 ATOM

max spendable ~0.169851
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.002653 -> cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll
with fees=0.015199
  memo=LedgerLiveBot
STATUS (1325ms)
  amount: 0 ATOM
  estimated fees: 0.015199 ATOM
  total spent: 0.015199 ATOM
errors: 
warnings: 
✔️ has been signed! (5.9s) 
✔️ broadcasted! (371ms) optimistic operation: 
  -0.015199 ATOM     UNDELEGATE 8499AFEF461C85DDE2375961AE118C534F05A27595630C09F8DD4A76CE540E86 2024-10-03T05:43
    to cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll                 
✔️ operation confirmed (11.6s): 
  -0.015199 ATOM     UNDELEGATE 8499AFEF461C85DDE2375961AE118C534F05A27595630C09F8DD4A76CE540E86 2024-10-03T05:43
    to cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll                 
✔️ undefined: 0.171104 ATOM (61ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4: (! sum of ops 0.184846 ATOM) 0.157406 ATOM spendable. 0.013698 ATOM unbonding. 
UNDELEGATIONS
  from cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q 0.005472 ATOM
  from cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6 0.005573 ATOM
  from cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll 0.002653 ATOM
(in 11.6s)

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

max spendable ~0.015799
★ using mutation 'send some'
→ TO undefined: 0.005801 ATOM (56ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
✔️ transaction 
SEND  0.006288 ATOM
TO cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8

with fees=0.002745
STATUS (1171ms)
  amount: 0.006288 ATOM
  estimated fees: 0.002745 ATOM
  total spent: 0.009033 ATOM
errors: 
warnings: 
✔️ has been signed! (8.4s) 
✔️ broadcasted! (512ms) optimistic operation: 
  -0.009033 ATOM     OUT        8D5CDF3899E152976E593D990BF645034152007EFE019444F8942F3D460F637E 2024-10-03T05:43
✔️ operation confirmed (10.9s): 
  -0.009033 ATOM     OUT        8D5CDF3899E152976E593D990BF645034152007EFE019444F8942F3D460F637E 2024-10-03T05:43
✔️ undefined: 0.00951 ATOM (25ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg: 0.00951 ATOM spendable. 
(in 10.9s)
✔️ destination operation 
  +0.006288 ATOM     IN         8D5CDF3899E152976E593D990BF645034152007EFE019444F8942F3D460F637E 2024-10-03T05:43
(in 10.9s)

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

max spendable ~0.009346
★ using mutation 'send some'
→ TO undefined: 0.00951 ATOM (25ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
✔️ transaction 
SEND  0.00366 ATOM
TO cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg

with fees=0.002783
  memo=LedgerLiveBot
STATUS (2852ms)
  amount: 0.00366 ATOM
  estimated fees: 0.002783 ATOM
  total spent: 0.006443 ATOM
errors: 
warnings: 
✔️ has been signed! (8.7s) 
✔️ broadcasted! (399ms) optimistic operation: 
  -0.006443 ATOM     OUT        4F19C443371E7FCB4C5EF843F362D1B4BF69DD857D4DD3D750DA69B16B97B54A 2024-10-03T05:44
✔️ operation confirmed (11.5s): 
  -0.006443 ATOM     OUT        4F19C443371E7FCB4C5EF843F362D1B4BF69DD857D4DD3D750DA69B16B97B54A 2024-10-03T05:44
✔️ undefined: 0.005646 ATOM (58ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8: (! sum of ops 0.005335 ATOM) 0.005646 ATOM spendable. 
(in 11.5s)
✔️ destination operation 
  +0.00366 ATOM      IN         4F19C443371E7FCB4C5EF843F362D1B4BF69DD857D4DD3D750DA69B16B97B54A 2024-10-03T05:44
(in 11s)

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

max spendable ~0.017096
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.000573 -> cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte
with fees=0.016025
  memo=LedgerLiveBot
STATUS (1407ms)
  amount: 0 ATOM
  estimated fees: 0.016025 ATOM
  total spent: 0.016025 ATOM
errors: 
warnings: 
✔️ has been signed! (5.8s) 
✔️ broadcasted! (695ms) optimistic operation: 
  -0.016025 ATOM     UNDELEGATE 82BA698079C339D60AE4BC87B13FF8ED8D9AA53B5901C7F8FC97074B75D46311 2024-10-03T05:44
    to cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte                 
✔️ operation confirmed (12.3s): 
  -0.016025 ATOM     UNDELEGATE 82BA698079C339D60AE4BC87B13FF8ED8D9AA53B5901C7F8FC97074B75D46311 2024-10-03T05:44
    to cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte                 
✔️ undefined: 0.050622 ATOM (37ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.062411 ATOM) 0.003833 ATOM spendable. 0.046216 ATOM delegated. 0.000573 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte 0.000697 ATOM  (claimable 0.000697)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.045519 ATOM  (claimable 0.045519)
UNDELEGATIONS
  from cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte 0.000573 ATOM
(in 12.3s)

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

max spendable ~0.133277
★ using mutation 'send max'
→ TO undefined: 1.27014 ATOM (1ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
✔️ transaction 
SEND MAX
TO cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h

with fees=0.002747
STATUS (5s)
  amount: 0.133276 ATOM
  estimated fees: 0.002747 ATOM
  total spent: 0.136023 ATOM
errors: 
warnings: 
✔️ has been signed! (11.2s) 
✔️ broadcasted! (72ms) optimistic operation: 
  -0.136023 ATOM     OUT        9B73804B473B32E3B775FAE6F6B8A3155D5CBCF171A1B1AE8ADBE30A69F5731E 2024-10-03T05:45
✔️ operation confirmed (10.7s): 
  -0.136023 ATOM     OUT        9B73804B473B32E3B775FAE6F6B8A3155D5CBCF171A1B1AE8ADBE30A69F5731E 2024-10-03T05:45
✔️ undefined: 0 ATOM (22ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r: 0 ATOM spendable. 
(in 10.7s)
✔️ destination operation 
  +0.133276 ATOM     IN         9B73804B473B32E3B775FAE6F6B8A3155D5CBCF171A1B1AE8ADBE30A69F5731E 2024-10-03T05:45
(in 10.6s)

necessary accounts resynced in 23ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 2.05261 ATOM (19ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5: (! sum of ops 2.051906 ATOM) 1.99177 ATOM spendable. 0.060848 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1urxrvt5dmkqpe50gwrerjly2z6nvk9exjz2j3h 0.060848 ATOM  (claimable 0.060848)
REDELEGATIONS
  from cosmosvaloper1ddle9tczl87gsvmeva3c48nenyng4n56nghmjk to cosmosvaloper1urxrvt5dmkqpe50gwrerjly2z6nvk9exjz2j3h 0.030091 ATOM

max spendable ~1.98902
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.012501 ATOM
TO 
  0.012501 -> cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj
with fees=0.009235
  memo=LedgerLiveBot
STATUS (2143ms)
  amount: 0.012501 ATOM
  estimated fees: 0.009235 ATOM
  total spent: 0.021736 ATOM
errors: 
warnings: 
✔️ has been signed! (6.4s) 
✔️ broadcasted! (303ms) optimistic operation: 
  -0.021736 ATOM     DELEGATE   CDA899083C92702B214D4B3396FDE2F71CEAA8C5094407ADC6FEDF90359687A7 2024-10-03T05:45
    to cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj                 
✔️ operation confirmed (11.3s): 
  -0.009235 ATOM     DELEGATE   CDA899083C92702B214D4B3396FDE2F71CEAA8C5094407ADC6FEDF90359687A7 2024-10-03T05:45
    to cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj                 
✔️ undefined: 2.04338 ATOM (20ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5: (! sum of ops 2.042671 ATOM) 1.970034 ATOM spendable. 0.073348 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj 0.0125 ATOM 
  to cosmosvaloper1urxrvt5dmkqpe50gwrerjly2z6nvk9exjz2j3h 0.060848 ATOM  (claimable 0.060848)
REDELEGATIONS
  from cosmosvaloper1ddle9tczl87gsvmeva3c48nenyng4n56nghmjk to cosmosvaloper1urxrvt5dmkqpe50gwrerjly2z6nvk9exjz2j3h 0.030091 ATOM
(in 11.3s)


Spec secret_network (failed)


Spec Avalanche C-Chain (10)

Spec Avalanche C-Chain found 10 Avalanche C-Chain accounts (preload: 158ms). 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.29ms
▬ 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 AVAX (51ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:avalanche_c_chain:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND MAX
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (703ms)
  amount: 0.197109660309681675 AVAX
  estimated fees: 0.000584600303574 AVAX
  total spent: 0.197694260613255675 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 60.8s – ends at 2024-10-03T05:50:11.644Z)
necessary accounts resynced in 0.17ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.098559662178169837 AVAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (574ms)
  amount: 0.098559662178169837 AVAX
  estimated fees: 0.000579568320009 AVAX
  total spent: 0.099139230498178837 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.6s – ends at 2024-10-03T05:50:11.647Z)
necessary accounts resynced in 0.22ms
▬ 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 (22ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:avalanche_c_chain:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x9F38B2C32aE3433552C566365D462dc64dd0edC9
STATUS (671ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.0005760607503 AVAX
  total spent: 0.201433220404726997 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.7s – ends at 2024-10-03T05:50:11.680Z)

Spec Binance Smart Chain (10)

Spec Binance Smart Chain found 10 Binance Smart Chain accounts (preload: 554ms). Will use BinanceSmartChain 1.11.3 on nanoS 2.1.0
undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 BNB (102ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00453676 BNB (83ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.00268087 BNB (98ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:bsc:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 BNB (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:bsc:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
necessary accounts resynced in 0.30ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'send max'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND MAX
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (1126ms)
  amount: 0.055037491197684488 BNB
  estimated fees: 0.000028171898076 BNB
  total spent: 0.055065663095760488 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 61.2s – ends at 2024-10-03T05:50:11.683Z)
necessary accounts resynced in 0.17ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~0.0242889
★ using mutation 'move 50%'
→ TO undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.012144467609662234 BNB
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (899ms)
  amount: 0.012144467609662234 BNB
  estimated fees: 0.000027262485789 BNB
  total spent: 0.012171730095451234 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"is ready","x":44,"y":17,"w":78,"h":32}
{"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 61s – ends at 2024-10-03T05:50:11.692Z)
necessary accounts resynced in 0.26ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'move 50%'
→ TO undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND  0.012112967609641233 BNB
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (3.2s)
  amount: 0.012112967609641233 BNB
  estimated fees: 0.000063126 BNB
  total spent: 0.012176093609641233 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 77.7s – ends at 2024-10-03T05:50:11.695Z)

Spec Cronos (6)

Spec Cronos found 6 Cronos accounts (preload: 83ms). 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: 94ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 1.59611 FTM (81ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 9.80043 FTM (92ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 37.6779 FTM (87ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00019929 FTM (79ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.00020378 FTM (36ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 FTM (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:fantom:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
necessary accounts resynced in 0.77ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 1.59611 FTM (81ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~1.5943
★ using mutation 'move 50%'
→ TO undefined: 0.00019929 FTM (79ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  0.797154603881904285 FTM
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (216ms)
  amount: 0.797154603881904285 FTM
  estimated fees: 0.000714894912312 FTM
  total spent: 0.797869498794216285 FTM
errors: 
warnings: 
✔️ has been signed! (10.6s) 
✔️ broadcasted! (111ms) optimistic operation: 
  -0.797869498794216285 FTM OUT        0x24d717deb141a05fc65ee666f5829fb80e55b95104a884047a47da411e0d2d38 2024-10-03T05:45
✔️ operation confirmed (20.9s): 
  -0.797520166001169285 FTM OUT        0x24d717deb141a05fc65ee666f5829fb80e55b95104a884047a47da411e0d2d38 2024-10-03T05:45
✔️ undefined: 0.798593 FTM (82ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:(in 20.9s)
✔️ destination operation 
  +0.797154603881904285 FTM IN         0x24d717deb141a05fc65ee666f5829fb80e55b95104a884047a47da411e0d2d38 2024-10-03T05:45
(in 36.4s)

necessary accounts resynced in 9ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 9.80043 FTM (92ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~9.79863
★ using mutation 'move 50%'
→ TO undefined: 0.00020378 FTM (36ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND  4.899315430605659235 FTM
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (155ms)
  amount: 4.899315430605659235 FTM
  estimated fees: 0.000714049180803 FTM
  total spent: 4.900029479786462235 FTM
errors: 
warnings: 
✔️ has been signed! (7.3s) 
✔️ broadcasted! (159ms) optimistic operation: 
  -4.900029479786462235 FTM OUT        0xe67931901c9416dd82a5b8803f088f610ea78147e0f43ac83e619230a146195e 2024-10-03T05:46
✔️ operation confirmed (20.9s): 
  -4.899680146993415235 FTM OUT        0xe67931901c9416dd82a5b8803f088f610ea78147e0f43ac83e619230a146195e 2024-10-03T05:46
✔️ undefined: 4.90075 FTM (93ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:(in 20.9s)
✔️ destination operation 
  +4.899315430605659235 FTM IN         0xe67931901c9416dd82a5b8803f088f610ea78147e0f43ac83e619230a146195e 2024-10-03T05:46
(in 20.9s)

necessary accounts resynced in 11ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 37.6779 FTM (87ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~37.6761
★ using mutation 'send max'
→ TO undefined: 0.798593 FTM (82ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND MAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (238ms)
  amount: 37.677233408433235959 FTM
  estimated fees: 0.000713684494572 FTM
  total spent: 37.677947092927807959 FTM
errors: 
warnings: 
✔️ has been signed! (6.2s) 
✔️ broadcasted! (145ms) optimistic operation: 
  -37.677947092927807959 FTM OUT        0x741eac27d7b694a02aa55152caf334c5a01cf7bc7b88e4d17970e7ee63b5195c 2024-10-03T05:46
✔️ operation confirmed (20.9s): 
  -37.677597760134760959 FTM OUT        0x741eac27d7b694a02aa55152caf334c5a01cf7bc7b88e4d17970e7ee63b5195c 2024-10-03T05:46
✔️ undefined: 0.00034933 FTM (88ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:(in 20.9s)
✔️ destination operation 
  +37.677233408433235959 FTM IN         0x741eac27d7b694a02aa55152caf334c5a01cf7bc7b88e4d17970e7ee63b5195c 2024-10-03T05:46
(in 20.9s)


Spec Boba (failed)

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

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

Spec Telos (failed)


Spec Polygon zkEVM (5)

Spec Polygon zkEVM found 5 Polygon zkEVM accounts (preload: 62ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.0000002 ETH (78ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00950753 ETH (79ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00951342 ETH (77ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00000007 ETH (56ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 ETH (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:polygon_zk_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
necessary accounts resynced in 0.20ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00950753 ETH (79ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0: (! sum of ops 0.0093196930325295 ETH)
max spendable ~0.00950434
★ using mutation 'move 50%'
→ TO undefined: 0.00000007 ETH (56ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  0.00475217289596275 ETH
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (240ms)
  amount: 0.00475217289596275 ETH
  estimated fees: 0.0000012642 ETH
  total spent: 0.00475343709596275 ETH
errors: 
warnings: 
✔️ has been signed! (5.8s) 
✔️ broadcasted! (153ms) optimistic operation: 
  -0.00475343709596275 ETH OUT        0x363ebfd8bf995a5aa0bbd2c9613ca54226e209e6b0cd0ed973a04f32cd7ac47f 2024-10-03T05:44
✔️ operation confirmed (21.6s): 
  -0.00475343709596275 ETH OUT        0x363ebfd8bf995a5aa0bbd2c9613ca54226e209e6b0cd0ed973a04f32cd7ac47f 2024-10-03T05:44
✔️ undefined: 0.00475409 ETH (80ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0: (! sum of ops 0.00456625593656675 ETH)(in 21.6s)
✔️ destination operation 
  +0.00475217289596275 ETH IN         0x363ebfd8bf995a5aa0bbd2c9613ca54226e209e6b0cd0ed973a04f32cd7ac47f 2024-10-03T05:44
(in 10.3s)

necessary accounts resynced in 0.35ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00951342 ETH (77ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops 0.0094423075997065 ETH)
max spendable ~0.00951034
★ using mutation 'send max'
→ TO undefined: 0.0000002 ETH (78ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND MAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (411ms)
  amount: 0.0095122820934775 ETH
  estimated fees: 0.0000011466 ETH
  total spent: 0.0095134286934775 ETH
errors: 
warnings: 
✔️ has been signed! (8s) 
✔️ broadcasted! (117ms) optimistic operation: 
  -0.0095134286934775 ETH OUT        0x9c931fd920c46031df59156c8bb3f278f22ba13c9f6298a59a87dc457e59391f 2024-10-03T05:45
✔️ operation confirmed (20.4s): 
  -0.0095134286934775 ETH OUT        0x9c931fd920c46031df59156c8bb3f278f22ba13c9f6298a59a87dc457e59391f 2024-10-03T05:45
✔️ undefined: 0 ETH (78ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops -0.000071121093771 ETH)(in 20.4s)
✔️ destination operation 
  +0.0095122820934775 ETH IN         0x9c931fd920c46031df59156c8bb3f278f22ba13c9f6298a59a87dc457e59391f 2024-10-03T05:45
(in 10.3s)

necessary accounts resynced in 0.31ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00475225 ETH (57ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.00470593484986375 ETH)
max spendable ~0.00474925
★ using mutation 'move 50%'
→ TO undefined: 0.00475409 ETH (80ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND  0.002374628006968375 ETH
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (253ms)
  amount: 0.002374628006968375 ETH
  estimated fees: 0.0000011865 ETH
  total spent: 0.002375814506968375 ETH
errors: 
warnings: 
✔️ has been signed! (4.2s) 
✔️ broadcasted! (121ms) optimistic operation: 
  -0.002375814506968375 ETH OUT        0x03bdb9056b94d64de38b80c6ebdc4d7bba7d7b6067950889cbabaa5bfb2424d8 2024-10-03T05:45
✔️ operation confirmed (20.4s): 
  -0.002375814506968375 ETH OUT        0x03bdb9056b94d64de38b80c6ebdc4d7bba7d7b6067950889cbabaa5bfb2424d8 2024-10-03T05:45
✔️ undefined: 0.00237643 ETH (58ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.002330120342895375 ETH)(in 20.4s)
✔️ destination operation 
  +0.002374628006968375 ETH IN         0x03bdb9056b94d64de38b80c6ebdc4d7bba7d7b6067950889cbabaa5bfb2424d8 2024-10-03T05:45
(in 10.5s)


Spec Polkadot (9)

Spec Polkadot found 9 Polkadot accounts (preload: 8.1s). 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.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 0.28ms
▬ 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. 

⚠️ LedgerAPI5xx: API HTTP 520 https://polkadot-sidecar.coin.ledger.com/transaction/fee-estimate

necessary accounts resynced in 0.33ms
▬ 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.1357819016 DOT
TO 12TaEe4DmNMsv6sufAiUx4rz3ypMksuUr19jC3a99U7p9ipy
STATUS (527ms)
  amount: 0.1357819016 DOT
  estimated fees: 0.0157154905 DOT
  total spent: 0.1514973921 DOT
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Chain'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Chain": "Polkadot",
+   "Chain": "polkadot",
  }
(totally spent 2259ms – ends at 2024-10-03T05:50:11.728Z)

Spec Tron (11)

Spec Tron found 11 Tron accounts (preload: 43.8s). Will use Tron 0.5.0 on nanoSP 1.1.1
undefined: 0.000002 TRX (103ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 30 TRX (75ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 178.388 TRX (109ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 0.690555 TRX (58ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 93.4411 TRX (69ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 0.000001 TRX (28ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 89.0528 TRX (28ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 254.056 TRX (14ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 86.2447 TRX (4ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
undefined: 8.22643 TRX (1ops) (TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6 on 44'/195'/9'/0/0) #9 js:2:tron:TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6:
undefined: 0 TRX (0ops) (TAzGLgTWxbVzKo958joUf2ofiBVrUq1cVp on 44'/195'/10'/0/0) #10 js:2:tron:TAzGLgTWxbVzKo958joUf2ofiBVrUq1cVp:
necessary accounts resynced in 0.32ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 178.388 TRX (109ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
max spendable ~3.28821
★ using mutation 'move 50% to another account'
→ TO undefined: 0.000002 TRX (103ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
✔️ transaction 
SEND  1.644108 TRX 
TO TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
STATUS (986ms)
  amount: 1.644108 TRX
  estimated fees: 0 TRX
  total spent: 1.644108 TRX
errors: 
warnings: 
✔️ has been signed! (4.8s) 
✔️ broadcasted! (95ms) optimistic operation: 
  -1.644108 TRX      OUT        9f6e0d9e883eec4b6d40855302f2e2e82931612e44f9dd45a5eb2faeb79e2da2 2024-10-03T05:47
✔️ operation confirmed (11.5s): 
  -1.644108 TRX      OUT        9f6e0d9e883eec4b6d40855302f2e2e82931612e44f9dd45a5eb2faeb79e2da2 2024-10-03T05:47
✔️ undefined: 176.744 TRX (110ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:(in 11.5s)
✔️ destination operation 
  +1.644108 TRX      IN         9f6e0d9e883eec4b6d40855302f2e2e82931612e44f9dd45a5eb2faeb79e2da2 2024-10-03T05:47
(in 11.5s)

necessary accounts resynced in 0.27ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 93.4411 TRX (69ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
max spendable ~92.3411
★ using mutation 'move 50% to another account'
→ TO undefined: 89.0528 TRX (28ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
✔️ transaction 
SEND  46.17055 TRX 
TO TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD
STATUS (1000ms)
  amount: 46.17055 TRX
  estimated fees: 0 TRX
  total spent: 46.17055 TRX
errors: 
warnings: 
✔️ has been signed! (5.3s) 
✔️ broadcasted! (143ms) optimistic operation: 
  -46.17055 TRX      OUT        d9614846c79bac48cd080ef00003c78e30c3806e350caaf42bb841a9589bc353 2024-10-03T05:47
✔️ operation confirmed (11.5s): 
  -46.17055 TRX      OUT        d9614846c79bac48cd080ef00003c78e30c3806e350caaf42bb841a9589bc353 2024-10-03T05:47
✔️ undefined: 47.2705 TRX (70ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:(in 11.5s)
✔️ destination operation 
  +46.17055 TRX      IN         d9614846c79bac48cd080ef00003c78e30c3806e350caaf42bb841a9589bc353 2024-10-03T05:47
(in 11.3s)

necessary accounts resynced in 0.24ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 135.223 TRX (29ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
max spendable ~134.123
★ using mutation 'send max to another account'
→ TO undefined: 0.690555 TRX (58ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
✔️ transaction 
SEND MAX 
TO TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN
STATUS (981ms)
  amount: 135.22343 TRX
  estimated fees: 0 TRX
  total spent: 135.22343 TRX
errors: 
warnings: 
✔️ has been signed! (5s) 
✔️ broadcasted! (132ms) optimistic operation: 
  -135.22343 TRX     OUT        e316dbbd0f42dbac079af2a1354d535f484521a5c2706a6046a2ecb819cb2fc2 2024-10-03T05:48
✔️ operation confirmed (11.2s): 
  -135.22343 TRX     OUT        e316dbbd0f42dbac079af2a1354d535f484521a5c2706a6046a2ecb819cb2fc2 2024-10-03T05:48
✔️ undefined: 0 TRX (30ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:(in 11.2s)
✔️ destination operation 
  +135.22343 TRX     IN         e316dbbd0f42dbac079af2a1354d535f484521a5c2706a6046a2ecb819cb2fc2 2024-10-03T05:48
(in 11.3s)


Details of the 36 uncovered mutations

Spec Filecoin (5)

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

Spec Qtum (1)

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

Spec Decred (3)

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

Spec cardano (2)

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

Spec axelar (1)

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

Spec cosmos (2)

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

Spec secret_network (6)

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

Spec Binance Smart Chain (1)

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

Spec Cronos (3)

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

Spec Fantom (1)

  • move some ERC20 like (ERC20, BEP20, etc...): fantom balance is too low (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 (6), balance is too low (1)
  • bond - bondExtra: not enough balance to bond (6), balance is too low (1)
  • unbond: can't unbond (6), balance is too low (1)
  • rebond: can't rebond (6), balance is too low (1)
  • nominate: can't nominate (6), balance is too low (1)
  • withdraw: nothing to withdraw (6), balance is too low (1)
Portfolio ($424.78) – Details of the 16 currencies
Spec (accounts) State Remaining Runs (est) funds?
Filecoin (0) 0 ops , 🤷‍♂️ ($0.00) ``
Qtum (6) 411 ops (+8), 2.47527 QTUM ($5.87) 👍 193 MKabfnw96FDmKqzdJJx6kFdsqrXux4q99v
Decred (5) 350 ops (+4), 1.28065 DCR ($14.78) 💪 999+ DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY
cardano (7) 136 ops , 88.7129 ADA ($30.75) 👍 78 addr1qx7wsgcsg0t5lac6tty6j6v89can4tfn26nklmkuw5kf6ehgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq2tfxdt
axelar (18) 31 ops , 16.528 AXL ($10.53) 👍 190 axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g
cosmos (16) 394 ops (+9), 9.04193 ATOM ($40.94) 👍 145 cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf
secret_network (0) 0 ops , 🤷‍♂️ ``
Avalanche C-Chain (10) 250 ops , 2.82586 AVAX ($71.97) 💪 553 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Binance Smart Chain (10) 799 ops , 0.118141 BNB ($64.88) 👍 84 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Cronos (6) 625 ops , 5.08708 CRO ($0.43) ⚠️ 11 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Fantom (6) 381 ops (+6), 49.0748 FTM ($31.86) 💪 999+ 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Boba (1) 0 ops , 0 ETH ($0.00) 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Telos (0) 0 ops , 🤷‍♂️ ``
Polygon zkEVM (5) 296 ops (+6), 0.0190212 ETH ($0.00) 👍 276 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Polkadot (9) 251 ops , 9.28512 DOT ($38.33) ⚠️ 45 16KwUHz2qkSqXwpiAsH2b6PZrYkxhGYi33E2TLU1FD6o7bVa
Tron (11) 496 ops (+7), 536.1 TRX ($114.44) 💪 999+ TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
undefined [segwit]: 0.685883 QTUM (110ops) (MKabfnw96FDmKqzdJJx6kFdsqrXux4q99v on 49'/88'/0'/0/55) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.182276 QTUM (101ops) (MJN3JWwbZJXQfENDCfzTyPevdBAUP6s7oJ on 49'/88'/1'/0/51) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
undefined [segwit]: 0 QTUM (0ops) (MR3A49zXnWaH7Vhm7YKeiaREazdKZxie6r on 49'/88'/2'/0/0) segwit#2 js:2:qtum:xpub6BvfSTHRWubyX78dqB3tVcgps5JtUKukFsbkwrxQhEvBr2UmTUjNEdcZRvmBb6PczEcKUrnVvQvQ2BafHcw1wBkqbVLzNyEN912tNDDd8M9:segwit
undefined [legacy]: 1.32592 QTUM (108ops) (Qh32vdiDcPqzhT1bQa741GCS983Fvg167A on 44'/88'/0'/0/57) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.273397 QTUM (92ops) (QVtf3MuQbnUWssshbFxyouqHJDsFArVaZn on 44'/88'/1'/0/42) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
undefined: 0.5507 DCR (97ops) (DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY on 44'/42'/0'/0/49) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.0776859 DCR (95ops) (DsSDUo2SHS1k9uPx3qqgJqbAau8hTjmWCAP on 44'/42'/1'/0/47) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.652022 DCR (83ops) (DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA on 44'/42'/2'/0/45) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0 DCR (75ops) (DseAagk4eo2qH9sNtBdPLRNr9wgysPT8Eyh on 44'/42'/3'/0/34) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
undefined: 0 DCR (0ops) (DskCZ4d3mZkXwLxAEjx2sEM121SFimdgvSv on 44'/42'/4'/0/0) #4 js:2:decred:dpubZEswmUQs2uoMffXvbjYzmFKAA8qiVoRpBd8QwvJKFgG4HaLsEf3yq9JdFJHzvmMqTKUybT8NPDs16zti7N3ehBSQmxZQB76h8MsWKLZDFAX:
undefined: 0.003632 ADA (37ops) (addr1qx7wsgcsg0t5lac6tty6j6v89can4tfn26nklmkuw5kf6ehgyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamq2tfxdt on 1852'/1815'/0'/0/11) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano
undefined: 10.9929 ADA (20ops) (addr1qxvkz4w2p0j90hgp5cst44cdkwxm3mvkv9yfflny3znsquyfrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcqk59w63 on 1852'/1815'/1'/0/5) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
undefined: 8.25899 ADA (33ops) (addr1qyzynlpar04xkej42kq08ct8rk9jgkgdzxvlhj96wqu2luxtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3ql3ax7w on 1852'/1815'/2'/0/12) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
undefined: 36.1896 ADA (18ops) (addr1qxc9xd7q4mc84ph58wsctmraah5gylzyz8aszghl5ppv0wr39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqkfqyaf on 1852'/1815'/3'/0/8) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
undefined: 0.014881 ADA (12ops) (addr1q8jpkrreuh29tzkg83vz9anzew9nhce52x4dkwl3ed6jmrmnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8srk7x0s on 1852'/1815'/4'/0/3) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano
undefined: 33.2785 ADA (16ops) (addr1qx3g49fdnmh20r9er454frtsdzd56q58nr2f9f3p8auct9gyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq8m32rm on 1852'/1815'/5'/0/4) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano
undefined: 0 ADA (0ops) (addr1q9nue3h5y9ct7j04yzgp828z80n9tvdlmytha0hq6klu9zj5jsy50zjdsvtn930t9rspyvwfr9e4kkagmggflzec8cjq7xqj36 on 1852'/1815'/6'/0/0) cardano#6 js:2:cardano:e0576116d690cadac40fa0c3265e4efceaca261b9ef737f32d35629c299a0147053d9d5ace97f7a602a51e4fe0a3dfb95f88dfe82677f5b0c52c2eb26e1ac87e:cardano
undefined: 0.035364 AXL (2ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 0.022348 AXL (0ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0 AXL (0ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.059305 AXL (1ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0 AXL (4ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 0.009194 AXL (0ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0 AXL (3ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.000033 AXL (0ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0.043582 AXL (6ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 1.00402 AXL (5ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.241072 AXL (3ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 1.46154 AXL (5ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 1.9517 AXL (1ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 7.36976 AXL (0ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 3.0598 AXL (0ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 1.21829 AXL (1ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
undefined: 0.125864 AXL (0ops) (axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4 on 44'/118'/16'/0/0) #16 js:2:axelar:axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4:
undefined: 0 AXL (0ops) (axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq on 44'/118'/17'/0/0) #17 js:2:axelar:axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq:
undefined: 0 ATOM (48ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (37ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0 ATOM (38ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.171104 ATOM (61ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.01317 ATOM (26ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.005646 ATOM (58ops) (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.050622 ATOM (37ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0 ATOM (22ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 2.04338 ATOM (20ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.49371 ATOM (4ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.36253 ATOM (13ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 0.678092 ATOM (1ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
undefined: 0.938338 ATOM (4ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 1.40342 ATOM (2ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
undefined: 0 ATOM (0ops) (cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5 on 44'/118'/15'/0/0) #15 js:2:cosmos:cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5:
undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0 AVAX (51ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:avalanche_c_chain:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0 AVAX (36ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:avalanche_c_chain:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 AVAX (22ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:avalanche_c_chain:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.768479 AVAX (4ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:avalanche_c_chain:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 AVAX (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:avalanche_c_chain:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 BNB (102ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00453676 BNB (83ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.00268087 BNB (98ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:bsc:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 BNB (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:bsc:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
undefined: 0.105 CRO (143ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:cronos:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 1.17124 CRO (183ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:cronos:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 1.37452 CRO (154ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:cronos:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 1.4986 CRO (127ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:cronos:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.937713 CRO (18ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:cronos:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 CRO (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:cronos:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 38.4758 FTM (83ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 4.90075 FTM (93ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00034933 FTM (88ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.797353 FTM (80ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 4.89951 FTM (37ops) (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.00951248 ETH (79ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00712872 ETH (81ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0 ETH (78ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00237643 ETH (58ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 ETH (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:polygon_zk_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 1.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.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: 1.64411 TRX (104ops) (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: 176.744 TRX (110ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 135.913 TRX (60ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 47.2705 TRX (70ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 0.000001 TRX (28ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 0 TRX (30ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 254.056 TRX (14ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 86.2447 TRX (4ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
undefined: 8.22643 TRX (1ops) (TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6 on 44'/195'/9'/0/0) #9 js:2:tron:TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6:
undefined: 0 TRX (0ops) (TAzGLgTWxbVzKo958joUf2ofiBVrUq1cVp on 44'/195'/10'/0/0) #10 js:2:tron:TAzGLgTWxbVzKo958joUf2ofiBVrUq1cVp:
Performance ⏲ 8min 49s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 54.2s 22min 54s 2704ms 32.3s 5min 38s 6.2s 4min 52s 3min 59s
Filecoin (0) N/A N/A N/A N/A N/A N/A N/A N/A
Qtum (4) 0.44ms 43.5s 1.57ms 735ms 46s 406ms 43.6s 42.5s
Decred (4) 10ms 33.2s 2.02ms 738ms 31.6s 456ms 21s 21s
cardano (6) 0.62ms 5min 19s 2546ms 1280ms 98.9s N/A N/A N/A
axelar (17) 255ms 66.8s 16ms 3.5s 57.8s 1811ms 1.62ms N/A
cosmos (15) 874ms 70.5s 42ms 13.8s 46.4s 2351ms 68.4s 32.5s
secret_network (0) N/A N/A N/A N/A N/A N/A N/A N/A
Avalanche C-Chain (9) 158ms 49.1s 14ms 1948ms N/A N/A N/A N/A
Binance Smart Chain (9) 554ms 77.8s 2.75ms 5.3s N/A N/A N/A N/A
Cronos (5) 83ms 3min 47s 3.28ms N/A N/A N/A N/A N/A
Fantom (5) 94ms 2min 57s 34ms 609ms 24s 414ms 62.7s 78.1s
Boba (0) 125ms 7.1s N/A N/A N/A N/A N/A N/A
Telos (0) 81ms N/A N/A N/A N/A N/A N/A N/A
Polygon zkEVM (4) 62ms 10.7s 14ms 904ms 18s 391ms 62.4s 31.2s
Polkadot (8) 8.1s 3min 45s 10ms 527ms N/A N/A N/A N/A
Tron (10) 43.8s 66.6s 18ms 2967ms 15.1s 370ms 34.2s 34.2s

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

Please sign in to comment.