Skip to content

Commit

Permalink
[QAA-283][Detox] Improve slack notification (#8157)
Browse files Browse the repository at this point in the history
* ci: improve slack commit for detox and factorise same actions
  • Loading branch information
abdurrahman-ledger authored Oct 23, 2024
1 parent 3fc1a12 commit 18c461f
Show file tree
Hide file tree
Showing 5 changed files with 144 additions and 184 deletions.
170 changes: 48 additions & 122 deletions .github/workflows/test-mobile-e2e-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ on:
required: false
type: boolean
default: false
slack_notif:
description: "Send notification to Slack?"
required: false
type: boolean
default: false

# Uncomment to have log-level: trace on detox run and build
# (cf: apps/ledger-live-mobile/detox.config.js)
Expand Down Expand Up @@ -124,15 +129,6 @@ jobs:
if: ${{ always() && steps.simulator.outputs.id }}
run: |
xcrun simctl delete ${{ steps.simulator.outputs.id }}
- name: Generate single file Allure report
if: ${{ !cancelled() || steps.detox.outcome == 'cancelled' }}
run: pnpm dlx allure-commandline generate apps/ledger-live-mobile/artifacts --single-file
- name: Upload Allure single file report
uses: actions/upload-artifact@v4
if: ${{ !cancelled() || steps.detox.outcome == 'cancelled' }}
with:
name: ios-allure-report
path: allure-report/index.html
- name: Upload test artifacts
uses: actions/upload-artifact@v4
if: ${{ !cancelled() || steps.detox.outcome == 'cancelled' }}
Expand All @@ -143,18 +139,29 @@ jobs:
allure-report-ios:
name: "Allure Reports Export on Server"
runs-on: [ledger-live-medium]
if: ${{ !cancelled() && github.ref_name == 'develop' }}
if: ${{ failure() && (inputs.slack_notif || github.event_name == 'push') }}
needs: [detox-tests-ios]
outputs:
report-url: ${{ steps.upload.outputs.report-url }}
result: ${{ steps.summary.outputs.test_result }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ ((github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' || github.event_name == 'pull_request') && (inputs.ref || github.ref_name)) || github.sha }}
- uses: LedgerHQ/ledger-live/tools/actions/composites/upload-allure-report@develop
id: upload
with:
platform: ios
login: ${{ vars.ALLURE_USERNAME }}
password: ${{ secrets.ALLURE_LEDGER_LIVE_PASSWORD }}
path: ios-test-artifacts
- name: Get summary
id: summary
if: ${{ !cancelled() }}
uses: LedgerHQ/ledger-live/tools/actions/composites/get-allure-summary@develop
with:
allure-results-path: ios-test-artifacts
platform: iOS

detox-tests-android:
name: "Ledger Live Mobile - Android Detox Tests"
Expand Down Expand Up @@ -272,15 +279,6 @@ jobs:
DETOX_INSTALL_TIMEOUT: 120000
SEED: ${{ secrets.SEED_QAA_B2C }}
INPUT_SPECULOS: ${{ inputs.speculos_tests }}
- name: Generate single file Allure report
if: ${{ !cancelled() || steps.detox.outcome == 'cancelled' }}
run: pnpm dlx allure-commandline generate apps/ledger-live-mobile/artifacts --single-file
- name: Upload Allure single file report
uses: actions/upload-artifact@v4
if: ${{ !cancelled() || steps.detox.outcome == 'cancelled' }}
with:
name: android-allure-report
path: allure-report/index.html
- name: Upload test artifacts
uses: actions/upload-artifact@v4
if: ${{ !cancelled() || steps.detox.outcome == 'cancelled' }}
Expand All @@ -291,19 +289,30 @@ jobs:
allure-report-android:
name: "Allure Reports Export on Server"
runs-on: [ledger-live-medium]
if: ${{ !cancelled() && github.ref_name == 'develop' }}
if: ${{ failure() && (inputs.slack_notif || github.event_name == 'push') }}
outputs:
report-url: ${{ steps.upload.outputs.report-url }}
result: ${{ steps.summary.outputs.test_result }}
needs: [detox-tests-android]
steps:
- name: checkout
uses: actions/checkout@v4
with:
ref: ${{ ((github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' || github.event_name == 'pull_request') && (inputs.ref || github.ref_name)) || github.sha }}
- uses: LedgerHQ/ledger-live/tools/actions/composites/upload-allure-report@develop
id: upload
with:
platform: android
login: ${{ vars.ALLURE_USERNAME }}
password: ${{ secrets.ALLURE_LEDGER_LIVE_PASSWORD }}
path: android-test-artifacts
- name: Get summary
id: summary
if: ${{ !cancelled() }}
uses: LedgerHQ/ledger-live/tools/actions/composites/get-allure-summary@develop
with:
allure-results-path: android-test-artifacts
platform: android

upload-to-xray:
name: "Upload to Xray"
Expand Down Expand Up @@ -362,125 +371,39 @@ jobs:
shell: bash
run: echo "::notice title=${{ matrix.platform }} Xray report URL::${{ env.JIRA_URL }}/${{ steps.publish-xray.outputs.xray_key }}"

report:
needs: [detox-tests-android, detox-tests-ios]
runs-on: ubuntu-22.04
if: ${{ !cancelled() && (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' || github.event_name == 'pull_request') }}
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.sha }}
- uses: actions/github-script@v7
name: prepare status
id: status
with:
script: |
const fs = require("fs");
const [ owner, repo ] = "${{ github.repository }}".split("/");
const jobs = await github.paginate(github.rest.actions.listJobsForWorkflowRunAttempt, {
owner,
repo,
run_id: "${{ github.run_id }}",
attempt_number: "${{ github.run_attempt }}",
});
const findJobUrl = os =>
jobs.find(job => job.name == `Ledger Live Mobile - ${os} Detox Tests`)?.html_url;
const keys = {
ios: {
symbol: "🍏",
name: "iOS",
jobUrl: findJobUrl("iOS")
},
android: {
symbol: "🤖",
name: "Android",
jobUrl: findJobUrl("Android")
},
};
const report = {
ios: {
pass: ${{ needs.detox-tests-ios.outputs.status == 'success' }},
status: "${{ needs.detox-tests-ios.outputs.status }}",
},
android: {
pass: ${{ needs.detox-tests-android.outputs.status == 'success'}},
status: "${{ needs.detox-tests-android.outputs.status }}",
},
};
let summary = `### Detox Tests
`
summary += `|`
const reportKeys = Object.keys(report);
const detoxSuccess = Object.entries(report).every(([os, values]) => !!values.pass);
reportKeys.forEach((k) => {
summary += ` [${keys[k].symbol} ${keys[k].name}](${keys[k].jobUrl}) |`;
});
summary += `
|`;
for (let i = 0; i < reportKeys.length; i++) {
summary += ` :--: |`;
}
summary += `
|`;
Object.entries(report).forEach(([os, values]) => {
summary += ` ${values.pass ? "✅" : "❌"} (${values.status}) |`;
});
const output = {
summary
};
fs.writeFileSync("summary-detox.json", JSON.stringify(output), "utf-8");
- uses: actions/upload-artifact@v4
name: upload summary
with:
name: summary-detox.json
path: ${{ github.workspace }}/summary-detox.json

report-on-slack:
runs-on: ubuntu-22.04
needs: [detox-tests-android, detox-tests-ios]
if: ${{ failure() && github.event_name == 'push' }}
needs: [allure-report-android, allure-report-ios]
if: ${{ failure() && (inputs.slack_notif || github.event_name == 'push') }}
steps:
- name: format message
uses: actions/github-script@v7
id: message
with:
script: |
const fs = require("fs");
const text = `❌ 🍏 Detox tests failed ❌`;
const text = `❌ Detox tests failed ❌`;
const iOSResult = [
{
"type": "header",
"text": {
"type": "plain_text",
"text": ` iOS Detox tests failed ❌`,
"text": `🍏 iOS Detox tests failed ❌`,
"emoji": true
}
},
{
"type": "divider"
"type": "section",
"text": {
"type": "mrkdwn",
"text": `${{ needs.allure-report-ios.outputs.result || 'No test results' }}`
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": `😵 Build Failed
`
"text": `<${{ needs.allure-report-ios.outputs.report-url }}|Allure Report iOS>`
}
}
];
Expand All @@ -489,19 +412,22 @@ jobs:
"type": "header",
"text": {
"type": "plain_text",
"text": ` Android Detox tests failed ❌`,
"text": `🤖 Android Detox tests failed ❌`,
"emoji": true
}
},
{
"type": "divider"
"type": "section",
"text": {
"type": "mrkdwn",
"text": `${{ needs.allure-report-android.outputs.result || 'No test results' }}`
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": `😵 Build Failed
`
"text": `<${{ needs.allure-report-android.outputs.report-url }}|Allure Report Android>`
}
}
];
Expand All @@ -512,8 +438,8 @@ jobs:
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": `<https://github.com/LedgerHQ/ledger-live/actions/runs/${{ github.run_id }}|Workflow run> for more informations`,
"type": "mrkdwn",
"text": `<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|Workflow run> for more informations`,
}
}
];
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test-mobile-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ on:
required: false
type: boolean
default: false
slack_notif:
description: "Send notification to Slack?"
required: false
type: boolean
default: false

# Uncomment to have log-level: trace on detox run and build
# (cf: apps/ledger-live-mobile/detox.config.js)
Expand Down
Loading

1 comment on commit 18c461f

@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' ✅ 24 txs ❌ 8 txs 💰 2 miss funds ($380.01) ⏲ 11min 40s

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

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

5 critical spec errors

Spec Filecoin failed!

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

Spec cardano failed!

Error: speculos process failure. 

Spec secret_network failed!

AxiosError: timeout of 60000ms exceeded

Spec Telos failed!

Error: scan accounts timeout for currency Telos

Spec Polkadot failed!

Error: speculos process failure. readall: connection closed

❌ 8 mutation errors
necessary accounts resynced in 12ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.342375 QTUM (113ops) (MRB3qb23Mrm6XmmoQAD1WWEzMr2F56fjz8 on 49'/88'/0'/0/56) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
3 UTXOs
0.261955     MGtd5KmFiqy2NM3qSbLfyxHyLhgAoobVCc (change) rbf 9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f @1 (56706)
0.0794198    MUB9mVniLW8uJvCiLHmrxtTsbNLjzFUdU3 (change) rbf f9decc996e647e929269977cef31a1a9b688a2528113ced2f7c22ccbfad410be @1 (37796)
0.001        MCZ6LJevNVQ7o6oQW1zcnMsnwcrt4bpi1H 0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24 @0 (75605)

max spendable ~0.339242
★ using mutation 'send OP_RETURN transaction'
→ TO undefined [legacy]: 0.337053 QTUM (97ops) (QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U on 44'/88'/1'/0/46) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
✔️ transaction 
SEND 0.001 QTUM
TO QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (145ms)
TX INPUTS (2):
0.001        MCZ6LJevNVQ7o6oQW1zcnMsnwcrt4bpi1H 0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24@0
0.261955     MGtd5KmFiqy2NM3qSbLfyxHyLhgAoobVCc 9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f@1
TX OUTPUTS (3):
0            @0 (0)
0.001        QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U @1 (0)
0.259123     MSq9GcPM9dPKv7j7SM7gpYvK4QvgnTmGgb (change) @2 (0)
  amount: 0.001 QTUM
  estimated fees: 0.00283283 QTUM
  total spent: 0.00383283 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
⚠️ TEST deviceAction confirm step 'Address'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Address": "QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U",
+   "Address": "OP_RETURN",
  }
(totally spent 17.9s – ends at 2024-10-24T05:57:28.112Z)
necessary accounts resynced in 0.33ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.655849 DCR (101ops) (Dsdovk1XsmPwYPELSo6V2Uk3reQVHnUtJn5 on 44'/42'/0'/0/52) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
3 UTXOs
0.353577     DsaRSXkoTShXqwSPQgWmcUeqKzENatCH68k c615d160d48a5109cec4a840f88dfcf97ee95b058f70f5a8ebfff3a54435e20c @0 (2065)
0.262935     DsZSTveDicrJ46hkRpMehspPErpcusw38wU 5170c5b209c77ec38a4c620a1793346e0836402f0a6a119c5f39f6149d49284a @0 (2065)
0.0393361    DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY rbf ffc473902f9dd12ccee6b9c498276101d9bd1d919a75a3b0e5c175ecf56cf45b @0 (4098)

max spendable ~0.655683
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.252569 DCR (85ops) (DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA on 44'/42'/2'/0/45) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
✔️ transaction 
SEND 0.0001 DCR
TO DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (195ms)
TX INPUTS (1):
0.0393361    DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY ffc473902f9dd12ccee6b9c498276101d9bd1d919a75a3b0e5c175ecf56cf45b@0
TX OUTPUTS (3):
0            @0 (0)
0.0001       DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA @1 (0)
0.0391456    DskYxwuC3TSDwyGumZYTnMHcs4ZzgJbYzZu (change) @2 (0)
  amount: 0.0001 DCR
  estimated fees: 0.00009052 DCR
  total spent: 0.00019052 DCR
errors: 
warnings: feeTooHigh FeeTooHigh
⚠️ TEST deviceAction confirm step 'Address'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Address": "DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA",
+   "Address": "OP_RETURN",
  }
(totally spent 8.9s – ends at 2024-10-24T05:57:28.148Z)
necessary accounts resynced in 0.31ms
▬ 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 (22ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:avalanche_c_chain:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
✔️ transaction 
SEND MAX
TO 0x9F38B2C32aE3433552C566365D462dc64dd0edC9
STATUS (826ms)
  amount: 0.197108803992975675 AVAX
  estimated fees: 0.00058545662028 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.9s – ends at 2024-10-24T05:57:28.176Z)
necessary accounts resynced in 0.31ms
▬ 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 (663ms)
  amount: 0.098559662178169837 AVAX
  estimated fees: 0.000590542926057 AVAX
  total spent: 0.099150205104226837 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-24T05:57:28.221Z)
necessary accounts resynced in 0.29ms
▬ 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: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x8C63f5be03552E332A8a1e122c58d7b306d81679
STATUS (671ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.00057878463132 AVAX
  total spent: 0.201435944285746997 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 60.7s – ends at 2024-10-24T05:57:28.240Z)
necessary accounts resynced in 0.31ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'move 50%'
→ TO undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (992ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.00003161018364 BNB
  total spent: 0.027564441731520244 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.1s – ends at 2024-10-24T05:57:28.254Z)
necessary accounts resynced in 0.23ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (102ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.03211419604715643 BNB)
max spendable ~0.0242889
★ using mutation 'send max'
→ TO undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND MAX
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (1519ms)
  amount: 0.024258285967523468 BNB
  estimated fees: 0.000030649251801 BNB
  total spent: 0.024288935219324468 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x59569e96d0E3D972","x":9,"y":17,"w":113,"h":32}
(totally spent 61.7s – ends at 2024-10-24T05:57:28.263Z)
necessary accounts resynced in 0.24ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.012112967609641233 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (1022ms)
  amount: 0.012112967609641233 BNB
  estimated fees: 0.000030672595905 BNB
  total spent: 0.012143640205546233 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x8C63f5be03552E33","x":10,"y":17,"w":112,"h":32}
(totally spent 61.1s – ends at 2024-10-24T05:57:28.291Z)
⚠️ 6 spec hints
  • Spec Qtum:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
    • mutation move ~50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Decred:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Cronos:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Boba:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
Details of the 32 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]: 0.342375 QTUM (113ops) (MRB3qb23Mrm6XmmoQAD1WWEzMr2F56fjz8 on 49'/88'/0'/0/56) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.0493757 QTUM (103ops) (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.72087 QTUM (112ops) (QTKaLRqKC35fjSBj9qG2Soc8mSqgjy9Dj5 on 44'/88'/0'/0/59) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.337053 QTUM (97ops) (QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U on 44'/88'/1'/0/46) #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 12ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.342375 QTUM (113ops) (MRB3qb23Mrm6XmmoQAD1WWEzMr2F56fjz8 on 49'/88'/0'/0/56) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
3 UTXOs
0.261955     MGtd5KmFiqy2NM3qSbLfyxHyLhgAoobVCc (change) rbf 9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f @1 (56706)
0.0794198    MUB9mVniLW8uJvCiLHmrxtTsbNLjzFUdU3 (change) rbf f9decc996e647e929269977cef31a1a9b688a2528113ced2f7c22ccbfad410be @1 (37796)
0.001        MCZ6LJevNVQ7o6oQW1zcnMsnwcrt4bpi1H 0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24 @0 (75605)

max spendable ~0.339242
★ using mutation 'send OP_RETURN transaction'
→ TO undefined [legacy]: 0.337053 QTUM (97ops) (QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U on 44'/88'/1'/0/46) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
✔️ transaction 
SEND 0.001 QTUM
TO QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (145ms)
TX INPUTS (2):
0.001        MCZ6LJevNVQ7o6oQW1zcnMsnwcrt4bpi1H 0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24@0
0.261955     MGtd5KmFiqy2NM3qSbLfyxHyLhgAoobVCc 9bf946d08312e7959a04aa9be18055af4cb10083eacdfc8680ab9f2d676dec4f@1
TX OUTPUTS (3):
0            @0 (0)
0.001        QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U @1 (0)
0.259123     MSq9GcPM9dPKv7j7SM7gpYvK4QvgnTmGgb (change) @2 (0)
  amount: 0.001 QTUM
  estimated fees: 0.00283283 QTUM
  total spent: 0.00383283 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
⚠️ TEST deviceAction confirm step 'Address'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Address": "QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U",
+   "Address": "OP_RETURN",
  }
(totally spent 17.9s – ends at 2024-10-24T05:57:28.326Z)
necessary accounts resynced in 0.33ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.0493757 QTUM (103ops) (MJN3JWwbZJXQfENDCfzTyPevdBAUP6s7oJ on 49'/88'/1'/0/51) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
4 UTXOs
0.0386481    MQjZijrzoFGKrT87nq9dDKgGiQttjFn1LS (change) b35180879784d656016cb1d893cd8ff352dfabc667745eef2bac147cf247cca0 @1 (18894)
0.00872757   MHYPE8fV5YxXbenwN5CAhsqJSrWoiZXi8d (change) e7b17b16bb66ff4156b0232f1dfbf9012ad9dc91a0c6f67d500705a628670198 @1 (37795)
0.001        M9ihTUQN1iivesd4fah18o6vNFq5cDMTNp bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08 @0 (94509)
0.001        MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD 2683ad595e20cedfe908176b5eb8beb605e0019df44788468d1a7a96f5e75f4b @0 (56705)

max spendable ~0.0453416
★ using mutation 'move ~50%'
→ TO undefined [segwit]: 0.342375 QTUM (113ops) (MRB3qb23Mrm6XmmoQAD1WWEzMr2F56fjz8 on 49'/88'/0'/0/56) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
✔️ transaction 
SEND 0.02355971 QTUM
TO MRB3qb23Mrm6XmmoQAD1WWEzMr2F56fjz8
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed RBF-enabled
STATUS (241ms)
TX INPUTS (4):
0.001        M9ihTUQN1iivesd4fah18o6vNFq5cDMTNp bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08@0
0.001        MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD 2683ad595e20cedfe908176b5eb8beb605e0019df44788468d1a7a96f5e75f4b@0
0.00872757   MHYPE8fV5YxXbenwN5CAhsqJSrWoiZXi8d e7b17b16bb66ff4156b0232f1dfbf9012ad9dc91a0c6f67d500705a628670198@1
0.0386481    MQjZijrzoFGKrT87nq9dDKgGiQttjFn1LS b35180879784d656016cb1d893cd8ff352dfabc667745eef2bac147cf247cca0@1
TX OUTPUTS (2):
0.0235597    MRB3qb23Mrm6XmmoQAD1WWEzMr2F56fjz8 rbf @0 (0)
0.0214916    MA2ksStNMPgWwmSYVG4Us6X4FfYaiUwCdv (change) rbf @1 (0)
  amount: 0.02355971 QTUM
  estimated fees: 0.00432432 QTUM
  total spent: 0.02788403 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (19.1s) 
✔️ broadcasted! (71ms) optimistic operation: 
  -0.02788403 QTUM   OUT        f983a3279b207a94572725378f18b9d1b4d196a2fbedf24d7894fee839716b63 2024-10-24T05:48
✔️ operation confirmed (10.9s): 
  -0.02788403 QTUM   OUT        f983a3279b207a94572725378f18b9d1b4d196a2fbedf24d7894fee839716b63 2024-10-24T05:48
✔️ undefined [segwit]: 0.0214916 QTUM (104ops) (MJN3JWwbZJXQfENDCfzTyPevdBAUP6s7oJ on 49'/88'/1'/0/51) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
1 UTXOs
0.0214916    MA2ksStNMPgWwmSYVG4Us6X4FfYaiUwCdv (change) rbf f983a3279b207a94572725378f18b9d1b4d196a2fbedf24d7894fee839716b63 @1 (0)
(in 10.9s)
✔️ destination operation 
  +0.02355971 QTUM   IN         f983a3279b207a94572725378f18b9d1b4d196a2fbedf24d7894fee839716b63 2024-10-24T05:48
(in 10.9s)

necessary accounts resynced in 0.21ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 1.72087 QTUM (112ops) (QTKaLRqKC35fjSBj9qG2Soc8mSqgjy9Dj5 on 44'/88'/0'/0/59) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
4 UTXOs
0.737523     QSL4zrJ53iCqxtTDFcV5CuNrPMkaxQR39M 7df9a93484dc9d415d772c8c9ed77e5f064ff60a069ab8e9144d1304089b9bee @0 (18892)
0.674104     Qh32vdiDcPqzhT1bQa741GCS983Fvg167A b3312e76d3f292563e60d6d7399ae05216e4c69c6328dd829c528ca1db837c9b @0 (18895)
0.210726     QVqYF1Lm23iW2iZYKm6GpgPtoyT6m2eEia (change) rbf 4fb7892cc5135c3eff0679807658a5812b2b9c598596127396466c19e0ed7275 @1 (18893)
0.0985214    QYChtxjK1HVh5m5P5Ngend5JEagrZhmobS f8e8c01ca5594f25543ea3afff4508abb5c08d0cf169001cff694446057fb917 @0 (56705)

max spendable ~1.71451
★ using mutation 'optimize-size'
→ TO undefined [segwit]: 0.0214916 QTUM (104ops) (MJN3JWwbZJXQfENDCfzTyPevdBAUP6s7oJ on 49'/88'/1'/0/51) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
✔️ transaction 
SEND 0.55909088 QTUM
TO MJN3JWwbZJXQfENDCfzTyPevdBAUP6s7oJ
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (221ms)
TX INPUTS (1):
0.674104     Qh32vdiDcPqzhT1bQa741GCS983Fvg167A b3312e76d3f292563e60d6d7399ae05216e4c69c6328dd829c528ca1db837c9b@0
TX OUTPUTS (2):
0.55909      MJN3JWwbZJXQfENDCfzTyPevdBAUP6s7oJ @0 (0)
0.112771     QZQzaNefKk9AbM7MfUmRsvnBsFbPHNNwiX (change) @1 (0)
  amount: 0.55909088 QTUM
  estimated fees: 0.00224224 QTUM
  total spent: 0.56133312 QTUM
errors: 
warnings: 
✔️ has been signed! (14.5s) 
✔️ broadcasted! (101ms) optimistic operation: 
  -0.56133312 QTUM   OUT        eeb987037dd530aaa1890ac4e6552e037ad99757ffd706cc0c785c57dd85604d 2024-10-24T05:48
✔️ operation confirmed (10.8s): 
  -0.56133312 QTUM   OUT        eeb987037dd530aaa1890ac4e6552e037ad99757ffd706cc0c785c57dd85604d 2024-10-24T05:48
✔️ undefined [legacy]: 1.15954 QTUM (113ops) (QTKaLRqKC35fjSBj9qG2Soc8mSqgjy9Dj5 on 44'/88'/0'/0/59) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
4 UTXOs
0.737523     QSL4zrJ53iCqxtTDFcV5CuNrPMkaxQR39M 7df9a93484dc9d415d772c8c9ed77e5f064ff60a069ab8e9144d1304089b9bee @0 (18894)
0.210726     QVqYF1Lm23iW2iZYKm6GpgPtoyT6m2eEia (change) rbf 4fb7892cc5135c3eff0679807658a5812b2b9c598596127396466c19e0ed7275 @1 (18895)
0.112771     QZQzaNefKk9AbM7MfUmRsvnBsFbPHNNwiX (change) eeb987037dd530aaa1890ac4e6552e037ad99757ffd706cc0c785c57dd85604d @1 (0)
0.0985214    QYChtxjK1HVh5m5P5Ngend5JEagrZhmobS f8e8c01ca5594f25543ea3afff4508abb5c08d0cf169001cff694446057fb917 @0 (56707)
(in 10.8s)
✔️ destination operation 
  +0.55909088 QTUM   IN         eeb987037dd530aaa1890ac4e6552e037ad99757ffd706cc0c785c57dd85604d 2024-10-24T05:48
(in 10.5s)

necessary accounts resynced in 0.21ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 0.337053 QTUM (97ops) (QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U on 44'/88'/1'/0/46) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
1 UTXOs
0.337053     QgZtqEKHVAgp4H3KmYZfLdHjQjzvxLnSRa rbf 4fb7892cc5135c3eff0679807658a5812b2b9c598596127396466c19e0ed7275 @0 (18893)

max spendable ~0.335131
★ using mutation 'send 1 utxo'
→ TO undefined [segwit]: 0.365935 QTUM (114ops) (MHQTnfaxnDXVNpDskdGphS1DmAFi9uzxVM on 49'/88'/0'/0/57) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
✔️ transaction 
SEND MAX
TO MHQTnfaxnDXVNpDskdGphS1DmAFi9uzxVM
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (151ms)
TX INPUTS (1):
0.337053     QgZtqEKHVAgp4H3KmYZfLdHjQjzvxLnSRa 4fb7892cc5135c3eff0679807658a5812b2b9c598596127396466c19e0ed7275@0
TX OUTPUTS (1):
0.335151     MHQTnfaxnDXVNpDskdGphS1DmAFi9uzxVM @0 (0)
  amount: 0.33515162 QTUM
  estimated fees: 0.0019019 QTUM
  total spent: 0.33705352 QTUM
errors: 
warnings: 
✔️ has been signed! (6.3s) 
✔️ broadcasted! (98ms) optimistic operation: 
  -0.0019019 QTUM    OUT        39f2145a8acdb21c101f7ed7a92f404ba7c696463519960509b7f8770c316931 2024-10-24T05:49
✔️ operation confirmed (10.8s): 
  -0.33705352 QTUM   OUT        39f2145a8acdb21c101f7ed7a92f404ba7c696463519960509b7f8770c316931 2024-10-24T05:49
✔️ undefined [legacy]: 0 QTUM (98ops) (QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U on 44'/88'/1'/0/46) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
0 UTXOs
(in 10.8s)
✔️ destination operation 
  +0.33515162 QTUM   IN         39f2145a8acdb21c101f7ed7a92f404ba7c696463519960509b7f8770c316931 2024-10-24T05:49
(in 11.1s)


Spec Decred (5)

Spec Decred found 5 Decred accounts. Will use Decred 1.3.14 on nanoS 2.1.0
undefined: 0.655849 DCR (101ops) (Dsdovk1XsmPwYPELSo6V2Uk3reQVHnUtJn5 on 44'/42'/0'/0/52) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.371465 DCR (99ops) (DsoMepfUeqJ9ddF12nVqLZBRj971UPDMKv3 on 44'/42'/1'/0/49) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.252569 DCR (85ops) (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:
necessary accounts resynced in 0.33ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.655849 DCR (101ops) (Dsdovk1XsmPwYPELSo6V2Uk3reQVHnUtJn5 on 44'/42'/0'/0/52) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
3 UTXOs
0.353577     DsaRSXkoTShXqwSPQgWmcUeqKzENatCH68k c615d160d48a5109cec4a840f88dfcf97ee95b058f70f5a8ebfff3a54435e20c @0 (2065)
0.262935     DsZSTveDicrJ46hkRpMehspPErpcusw38wU 5170c5b209c77ec38a4c620a1793346e0836402f0a6a119c5f39f6149d49284a @0 (2065)
0.0393361    DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY rbf ffc473902f9dd12ccee6b9c498276101d9bd1d919a75a3b0e5c175ecf56cf45b @0 (4098)

max spendable ~0.655683
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.252569 DCR (85ops) (DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA on 44'/42'/2'/0/45) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
✔️ transaction 
SEND 0.0001 DCR
TO DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (195ms)
TX INPUTS (1):
0.0393361    DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY ffc473902f9dd12ccee6b9c498276101d9bd1d919a75a3b0e5c175ecf56cf45b@0
TX OUTPUTS (3):
0            @0 (0)
0.0001       DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA @1 (0)
0.0391456    DskYxwuC3TSDwyGumZYTnMHcs4ZzgJbYzZu (change) @2 (0)
  amount: 0.0001 DCR
  estimated fees: 0.00009052 DCR
  total spent: 0.00019052 DCR
errors: 
warnings: feeTooHigh FeeTooHigh
⚠️ TEST deviceAction confirm step 'Address'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Address": "DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA",
+   "Address": "OP_RETURN",
  }
(totally spent 8.9s – ends at 2024-10-24T05:57:28.609Z)
necessary accounts resynced in 0.32ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.371465 DCR (99ops) (DsoMepfUeqJ9ddF12nVqLZBRj971UPDMKv3 on 44'/42'/1'/0/49) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
1 UTXOs
0.371465     DsaxQm954cmwaVK8seTdVWuRFRQtV5Y3ySh (change) c615d160d48a5109cec4a840f88dfcf97ee95b058f70f5a8ebfff3a54435e20c @1 (2065)

max spendable ~0.371401
★ using mutation 'optimize-size'
→ TO undefined: 0.655849 DCR (101ops) (Dsdovk1XsmPwYPELSo6V2Uk3reQVHnUtJn5 on 44'/42'/0'/0/52) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
✔️ transaction 
SEND 0.04442054 DCR
TO Dsdovk1XsmPwYPELSo6V2Uk3reQVHnUtJn5
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (357ms)
TX INPUTS (1):
0.371465     DsaxQm954cmwaVK8seTdVWuRFRQtV5Y3ySh c615d160d48a5109cec4a840f88dfcf97ee95b058f70f5a8ebfff3a54435e20c@1
TX OUTPUTS (2):
0.0444205    Dsdovk1XsmPwYPELSo6V2Uk3reQVHnUtJn5 @0 (0)
0.326967     DsYsEQgNUTnTW38jKjnZhET9eYwjUFrCb9h (change) @1 (0)
  amount: 0.04442054 DCR
  estimated fees: 0.0000775 DCR
  total spent: 0.04449804 DCR
errors: 
warnings: 
✔️ has been signed! (13.9s) 
✔️ broadcasted! (247ms) optimistic operation: 
  -0.04449804 DCR    OUT        955d2c4b35dff34847d1dd54d772312bb020a97419d3e5967fbdc299278ea402 2024-10-24T05:47
✔️ operation confirmed (11.9s): 
  -0.04449804 DCR    OUT        955d2c4b35dff34847d1dd54d772312bb020a97419d3e5967fbdc299278ea402 2024-10-24T05:47
✔️ undefined: 0.326967 DCR (100ops) (DsoMepfUeqJ9ddF12nVqLZBRj971UPDMKv3 on 44'/42'/1'/0/49) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
1 UTXOs
0.326967     DsYsEQgNUTnTW38jKjnZhET9eYwjUFrCb9h (change) 955d2c4b35dff34847d1dd54d772312bb020a97419d3e5967fbdc299278ea402 @1 (0)
(in 11.9s)
✔️ destination operation 
  +0.04442054 DCR    IN         955d2c4b35dff34847d1dd54d772312bb020a97419d3e5967fbdc299278ea402 2024-10-24T05:47
(in 10.8s)

necessary accounts resynced in 0.36ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.252569 DCR (85ops) (DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA on 44'/42'/2'/0/45) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
2 UTXOs
0.252469     DsUzaFLNARxxm3NmVAuz1iVVLmvsRFrAUDH (change) 5170c5b209c77ec38a4c620a1793346e0836402f0a6a119c5f39f6149d49284a @1 (2066)
0.0001       Dsdv16rrzxbkuC7ix5H69CQaegpU9rCfafb 2700212b608477bff3bdfd82d1ebea46f40307e2c2c37658f0f4d00793deb808 @0 (10125)

max spendable ~0.252454
★ using mutation 'send 1 utxo'
→ TO undefined: 0.70027 DCR (102ops) (DsSFM4HSpnXXKGrumZpLm5XESpsQyaukFN1 on 44'/42'/0'/0/53) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
✔️ transaction 
SEND MAX
TO DsSFM4HSpnXXKGrumZpLm5XESpsQyaukFN1
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude 2700212b608477bff3bdfd82d1ebea46f40307e2c2c37658f0f4d00793deb808 @0
STATUS (347ms)
TX INPUTS (1):
0.252469     DsUzaFLNARxxm3NmVAuz1iVVLmvsRFrAUDH 5170c5b209c77ec38a4c620a1793346e0836402f0a6a119c5f39f6149d49284a@1
TX OUTPUTS (1):
0.252402     DsSFM4HSpnXXKGrumZpLm5XESpsQyaukFN1 @0 (0)
  amount: 0.25240299 DCR
  estimated fees: 0.00006696 DCR
  total spent: 0.25246995 DCR
errors: 
warnings: 
✔️ has been signed! (6.7s) 
✔️ broadcasted! (251ms) optimistic operation: 
  -0.00006696 DCR    OUT        f2ca71571afe049360a77995685864e876e8d0ded0cff1e4ccf64b1373881306 2024-10-24T05:48
✔️ operation confirmed (10.5s): 
  -0.25246995 DCR    OUT        f2ca71571afe049360a77995685864e876e8d0ded0cff1e4ccf64b1373881306 2024-10-24T05:48
✔️ undefined: 0.0001 DCR (86ops) (DsaWL4iPwSb7nynP3RXfN8Pf6Nw5NNGsbmA on 44'/42'/2'/0/45) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
1 UTXOs
0.0001       Dsdv16rrzxbkuC7ix5H69CQaegpU9rCfafb 2700212b608477bff3bdfd82d1ebea46f40307e2c2c37658f0f4d00793deb808 @0 (10125)
(in 10.5s)
✔️ destination operation 
  +0.25240299 DCR    IN         f2ca71571afe049360a77995685864e876e8d0ded0cff1e4ccf64b1373881306 2024-10-24T05:48
(in 10.5s)


Spec cardano (failed)


Spec axelar (18)

Spec axelar found 18 Axelar accounts (preload: 312ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0.735372 AXL (5ops) (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 AXL (2ops) (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.120514 AXL (4ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.000033 AXL (4ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0.00631 AXL (8ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.963913 AXL (9ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.11438 AXL (4ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 0.681367 AXL (8ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 2.02376 AXL (4ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 7.33077 AXL (3ops) (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.138542 AXL (1ops) (axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4 on 44'/118'/16'/0/0) #16 js:2:axelar:axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4:
undefined: 0 AXL (0ops) (axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq on 44'/118'/17'/0/0) #17 js:2:axelar:axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq:
necessary accounts resynced in 0.37ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.735372 AXL (5ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g: 0.735372 AXL spendable. 

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

with fees=0.006178
STATUS (832ms)
  amount: 0.29977 AXL
  estimated fees: 0.006178 AXL
  total spent: 0.305948 AXL
errors: 
warnings: 
✔️ has been signed! (7.9s) 
✔️ broadcasted! (60ms) optimistic operation: 
  -0.305948 AXL      OUT        7051BFA501301985D30D48E9D2EB99757FF806E14156A652502786132460D3A9 2024-10-24T05:47
✔️ operation confirmed (0.52ms): 
  -0.305948 AXL      OUT        7051BFA501301985D30D48E9D2EB99757FF806E14156A652502786132460D3A9 2024-10-24T05:47
✔️ undefined: 0.735372 AXL (5ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g: 0.735372 AXL spendable. 
✔️ destination operation 
  ? -305948          OUT        7051BFA501301985D30D48E9D2EB99757FF806E14156A652502786132460D3A9 2024-10-24T05:47

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

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

with fees=0.006181
STATUS (430ms)
  amount: 0.074001 AXL
  estimated fees: 0.006181 AXL
  total spent: 0.080182 AXL
errors: 
warnings: 
✔️ has been signed! (8.9s) 
✔️ broadcasted! (63ms) optimistic operation: 
  -0.080182 AXL      OUT        1803FFCF0A578126A036282D7828F652B68A4C3F787CE6D544281C11B57E4206 2024-10-24T05:48
✔️ operation confirmed (0.38ms): 
  -0.080182 AXL      OUT        1803FFCF0A578126A036282D7828F652B68A4C3F787CE6D544281C11B57E4206 2024-10-24T05:48
✔️ undefined: 0.120514 AXL (4ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa: (! sum of ops -0.007736 AXL) 0.120514 AXL spendable. 
✔️ destination operation 
  ? -80182           OUT        1803FFCF0A578126A036282D7828F652B68A4C3F787CE6D544281C11B57E4206 2024-10-24T05:48

necessary accounts resynced in 0.36ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.963913 AXL (9ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops -0.018042 AXL) 0.958458 AXL spendable. 0.005455 AXL unbonding. 
UNDELEGATIONS
  from axelarvaloper1xesqr8vjvy34jhu027zd70ypl0nnev5ezjg5h9 0.005455 AXL

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

with fees=0.006179
STATUS (473ms)
  amount: 0.952279 AXL
  estimated fees: 0.006179 AXL
  total spent: 0.958458 AXL
errors: 
warnings: 
✔️ has been signed! (6.2s) 
✔️ broadcasted! (90ms) optimistic operation: 
  -0.958458 AXL      OUT        568B9F44779D6F5A5792089533EA710339DF73501E2900B958ED877578A75866 2024-10-24T05:48
✔️ operation confirmed (0.25ms): 
  -0.958458 AXL      OUT        568B9F44779D6F5A5792089533EA710339DF73501E2900B958ED877578A75866 2024-10-24T05:48
✔️ undefined: 0.963913 AXL (9ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops -0.018042 AXL) 0.958458 AXL spendable. 0.005455 AXL unbonding. 
UNDELEGATIONS
  from axelarvaloper1xesqr8vjvy34jhu027zd70ypl0nnev5ezjg5h9 0.005455 AXL
✔️ destination operation 
  ? -958458          OUT        568B9F44779D6F5A5792089533EA710339DF73501E2900B958ED877578A75866 2024-10-24T05:48

necessary accounts resynced in 0.25ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.681367 AXL (8ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops -0.433424 AXL) 0.673271 AXL spendable. 0.008096 AXL delegated. 
DELEGATIONS
  to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.008096 AXL 

max spendable ~0.666279
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.008096 -> axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv
with fees=0.013602
  memo=LedgerLiveBot
STATUS (510ms)
  amount: 0 AXL
  estimated fees: 0.013602 AXL
  total spent: 0.013602 AXL
errors: 
warnings: 
✔️ has been signed! (7.9s) 
✔️ broadcasted! (82ms) optimistic operation: 
  -0.013602 AXL      UNDELEGATE 18641E522BA71E8E5DA81997F3D8EE41FF83CCC83D32F9474561CA8782D07531 2024-10-24T05:48
    to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.008096 AXL    
✔️ operation confirmed (0.26ms): 
  -0.013602 AXL      UNDELEGATE 18641E522BA71E8E5DA81997F3D8EE41FF83CCC83D32F9474561CA8782D07531 2024-10-24T05:48
    to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.008096 AXL    
✔️ undefined: 0.681367 AXL (8ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops -0.433424 AXL) 0.673271 AXL spendable. 0.008096 AXL delegated. 
DELEGATIONS
  to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.008096 AXL 

necessary accounts resynced in 0.33ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 7.33077 AXL (3ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35: (! sum of ops -0.038999 AXL) 7.311354 AXL spendable. 0.019417 AXL delegated. 
DELEGATIONS
  to axelarvaloper1dkfwpeusuwya3lx7cayrlz5pr57r095w0t0674 0.019417 AXL  (claimable 0.019417)

max spendable ~7.30435
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.402051 AXL
TO 
  0.402051 -> axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt
with fees=0.01267
  memo=LedgerLiveBot
STATUS (618ms)
  amount: 0.402051 AXL
  estimated fees: 0.01267 AXL
  total spent: 0.414721 AXL
errors: 
warnings: 
✔️ has been signed! (12.5s) 
✔️ broadcasted! (206ms) optimistic operation: 
  -0.414721 AXL      DELEGATE   BB207EDACBBE525A54156097EE4A67D40397A7C9A8610AFF124490DAF313FF87 2024-10-24T05:48
    to axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt 0.402051 AXL    
✔️ operation confirmed (0.35ms): 
  -0.414721 AXL      DELEGATE   BB207EDACBBE525A54156097EE4A67D40397A7C9A8610AFF124490DAF313FF87 2024-10-24T05:48
    to axelarvaloper1kafxdlrq8svz68j2tn8qtqk74j4yhylyf364pt 0.402051 AXL    
✔️ undefined: 7.33077 AXL (3ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35: (! sum of ops -0.038999 AXL) 7.311354 AXL spendable. 0.019417 AXL delegated. 
DELEGATIONS
  to axelarvaloper1dkfwpeusuwya3lx7cayrlz5pr57r095w0t0674 0.019417 AXL  (claimable 0.019417)


Spec cosmos (16)

Spec cosmos found 16 Cosmos accounts (preload: 520ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 1.93856 ATOM (49ops) (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.223372 ATOM (64ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.004332 ATOM (27ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.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.532088 ATOM (39ops) (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: 0.073342 ATOM (22ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.20896 ATOM (8ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.34845 ATOM (15ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 0.414343 ATOM (2ops) (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:
necessary accounts resynced in 0.20ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.93856 ATOM (49ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf: 1.93856 ATOM spendable. 

max spendable ~1.93581
★ using mutation 'send some'
→ TO undefined: 0.414343 ATOM (2ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
✔️ transaction 
SEND  1.12237 ATOM
TO cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57

with fees=0.002749
STATUS (816ms)
  amount: 1.12237 ATOM
  estimated fees: 0.002749 ATOM
  total spent: 1.125119 ATOM
errors: 
warnings: 
✔️ has been signed! (8.7s) 
✔️ broadcasted! (133ms) optimistic operation: 
  -1.125119 ATOM     OUT        49E7DEF38515AB5F09806B644DF09607177C44D81EE29BBD3CD149CC94834262 2024-10-24T05:47
✔️ operation confirmed (11.1s): 
  -1.125119 ATOM     OUT        49E7DEF38515AB5F09806B644DF09607177C44D81EE29BBD3CD149CC94834262 2024-10-24T05:47
✔️ undefined: 0.813441 ATOM (50ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf: 0.813441 ATOM spendable. 
(in 11.1s)
✔️ destination operation 
  +1.12237 ATOM      IN         49E7DEF38515AB5F09806B644DF09607177C44D81EE29BBD3CD149CC94834262 2024-10-24T05:47
(in 10.6s)

necessary accounts resynced in 0.39ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.223372 ATOM (64ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4: (! sum of ops 0.237114 ATOM) 0.222169 ATOM spendable. 0.001203 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1fun809ksxh87nzf88yashp9ynjz6xkscrtvzvw 0.001203 ATOM  (claimable 0.001203)

max spendable ~0.219423
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.001203 -> cosmosvaloper1fun809ksxh87nzf88yashp9ynjz6xkscrtvzvw
with fees=0.017427
  memo=LedgerLiveBot
STATUS (894ms)
  amount: 0 ATOM
  estimated fees: 0.017427 ATOM
  total spent: 0.017427 ATOM
errors: 
warnings: 
✔️ has been signed! (6.4s) 
✔️ broadcasted! (99ms) optimistic operation: 
  -0.017427 ATOM     UNDELEGATE F165334D045BEB7A73F405FF9C3A4BE736C0553AFF630DEDBBBAC3483D069EAC 2024-10-24T05:48
    to cosmosvaloper1fun809ksxh87nzf88yashp9ynjz6xkscrtvzvw                 
✔️ operation confirmed (10.5s): 
  -0.017427 ATOM     UNDELEGATE F165334D045BEB7A73F405FF9C3A4BE736C0553AFF630DEDBBBAC3483D069EAC 2024-10-24T05:48
    to cosmosvaloper1fun809ksxh87nzf88yashp9ynjz6xkscrtvzvw                 
✔️ undefined: 0.205949 ATOM (65ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4: (! sum of ops 0.219687 ATOM) 0.204746 ATOM spendable. 0.001203 ATOM unbonding. 
UNDELEGATIONS
  from cosmosvaloper1fun809ksxh87nzf88yashp9ynjz6xkscrtvzvw 0.001203 ATOM
(in 10.5s)

necessary accounts resynced in 0.30ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.532088 ATOM (39ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.543877 ATOM) 0.485872 ATOM spendable. 0.046216 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte 0.000697 ATOM  (claimable 0.000697)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.045519 ATOM  (claimable 0.045519)

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

with fees=0.002747
STATUS (546ms)
  amount: 0.290816 ATOM
  estimated fees: 0.002747 ATOM
  total spent: 0.293563 ATOM
errors: 
warnings: 
✔️ has been signed! (8.8s) 
✔️ broadcasted! (85ms) optimistic operation: 
  -0.293563 ATOM     OUT        4FD5390315EB172B930B48DA88D6F642E9B7FDDB50F40C432355C685BA38FA8B 2024-10-24T05:48
✔️ operation confirmed (10.6s): 
  -0.293563 ATOM     OUT        4FD5390315EB172B930B48DA88D6F642E9B7FDDB50F40C432355C685BA38FA8B 2024-10-24T05:48
✔️ undefined: 0.238525 ATOM (40ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.250314 ATOM) 0.192309 ATOM spendable. 0.046216 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte 0.000697 ATOM  (claimable 0.000697)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.045519 ATOM  (claimable 0.045519)
(in 10.6s)
✔️ destination operation 
  +0.290816 ATOM     IN         4FD5390315EB172B930B48DA88D6F642E9B7FDDB50F40C432355C685BA38FA8B 2024-10-24T05:48
(in 10.6s)

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

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

with fees=0.002747
STATUS (763ms)
  amount: 0.288069 ATOM
  estimated fees: 0.002747 ATOM
  total spent: 0.290816 ATOM
errors: 
warnings: 
✔️ has been signed! (5.9s) 
✔️ broadcasted! (74ms) optimistic operation: 
  -0.290816 ATOM     OUT        7E88A9E6B93AEA41536FBD5C0A0BF10B976850AA548C3A4B74F61F9FD1990032 2024-10-24T05:49
✔️ operation confirmed (10.6s): 
  -0.290816 ATOM     OUT        7E88A9E6B93AEA41536FBD5C0A0BF10B976850AA548C3A4B74F61F9FD1990032 2024-10-24T05:49
✔️ undefined: 0 ATOM (24ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r: 0 ATOM spendable. 
(in 10.6s)
✔️ destination operation 
  +0.288069 ATOM     IN         7E88A9E6B93AEA41536FBD5C0A0BF10B976850AA548C3A4B74F61F9FD1990032 2024-10-24T05:49
(in 10.4s)

necessary accounts resynced in 3.46ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 3.34845 ATOM (15ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 3.347116 ATOM) 3.348209 ATOM spendable. 0.000244 ATOM unbonding. 
UNDELEGATIONS
  from cosmosvaloper1kg99k8wd67r0ffxwavgnxup7yk46rvttxc53j7 0.000244 ATOM

max spendable ~3.34546
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.010414 ATOM
TO 
  0.010414 -> cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c
with fees=0.009071
  memo=LedgerLiveBot
STATUS (1008ms)
  amount: 0.010414 ATOM
  estimated fees: 0.009071 ATOM
  total spent: 0.019485 ATOM
errors: 
warnings: 
✔️ has been signed! (5.3s) 
✔️ broadcasted! (125ms) optimistic operation: 
  -0.019485 ATOM     DELEGATE   06A328F50F0DE306E5CEC57E17D7D11DE057FDC3040B5DF5E5C8605C5309C45A 2024-10-24T05:49
    to cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c                 
✔️ operation confirmed (10.6s): 
  -0.009071 ATOM     DELEGATE   06A328F50F0DE306E5CEC57E17D7D11DE057FDC3040B5DF5E5C8605C5309C45A 2024-10-24T05:49
    to cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c                 
✔️ undefined: 3.33938 ATOM (16ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 3.338045 ATOM) 3.328724 ATOM spendable. 0.010413 ATOM delegated. 0.000244 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper196ax4vc0lwpxndu9dyhvca7jhxp70rmcvrj90c 0.010413 ATOM 
UNDELEGATIONS
  from cosmosvaloper1kg99k8wd67r0ffxwavgnxup7yk46rvttxc53j7 0.000244 ATOM
(in 10.6s)


Spec secret_network (failed)


Spec Avalanche C-Chain (10)

Spec Avalanche C-Chain found 10 Avalanche C-Chain accounts (preload: 190ms). 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.31ms
▬ 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 (22ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:avalanche_c_chain:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
✔️ transaction 
SEND MAX
TO 0x9F38B2C32aE3433552C566365D462dc64dd0edC9
STATUS (826ms)
  amount: 0.197108803992975675 AVAX
  estimated fees: 0.00058545662028 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.9s – ends at 2024-10-24T05:57:28.980Z)
necessary accounts resynced in 0.31ms
▬ 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 (663ms)
  amount: 0.098559662178169837 AVAX
  estimated fees: 0.000590542926057 AVAX
  total spent: 0.099150205104226837 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-24T05:57:28.992Z)
necessary accounts resynced in 0.29ms
▬ 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: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x8C63f5be03552E332A8a1e122c58d7b306d81679
STATUS (671ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.00057878463132 AVAX
  total spent: 0.201435944285746997 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 60.7s – ends at 2024-10-24T05:57:28.997Z)

Spec Binance Smart Chain (10)

Spec Binance Smart Chain found 10 Binance Smart Chain accounts (preload: 633ms). 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 (102ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 BNB (102ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00453676 BNB (86ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.00268087 BNB (99ops) (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.31ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'move 50%'
→ TO undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (992ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.00003161018364 BNB
  total spent: 0.027564441731520244 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.1s – ends at 2024-10-24T05:57:29.032Z)
necessary accounts resynced in 0.23ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (102ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.03211419604715643 BNB)
max spendable ~0.0242889
★ using mutation 'send max'
→ TO undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND MAX
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (1519ms)
  amount: 0.024258285967523468 BNB
  estimated fees: 0.000030649251801 BNB
  total spent: 0.024288935219324468 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x59569e96d0E3D972","x":9,"y":17,"w":113,"h":32}
(totally spent 61.7s – ends at 2024-10-24T05:57:29.045Z)
necessary accounts resynced in 0.24ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.012112967609641233 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (1022ms)
  amount: 0.012112967609641233 BNB
  estimated fees: 0.000030672595905 BNB
  total spent: 0.012143640205546233 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x8C63f5be03552E33","x":10,"y":17,"w":112,"h":32}
(totally spent 61.1s – ends at 2024-10-24T05:57:29.064Z)

Spec Cronos (6)

Spec Cronos found 6 Cronos accounts (preload: 87ms). 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: 108ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.00044614 FTM (86ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00067969 FTM (94ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 12.4203 FTM (92ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 7.61187 FTM (83ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 29.0369 FTM (38ops) (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.27ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 12.4203 FTM (92ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~12.4197
★ using mutation 'send max'
→ TO undefined: 0.00067969 FTM (94ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND MAX
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (206ms)
  amount: 12.420110419989532656 FTM
  estimated fees: 0.000244020512421 FTM
  total spent: 12.420354440501953656 FTM
errors: 
warnings: 
✔️ has been signed! (5s) 
✔️ broadcasted! (135ms) optimistic operation: 
  -12.420354440501953656 FTM OUT        0xa6f1755ea9f1aa5049da06c0c6d06527e89854e498bbbb68ae2f71eeb1da6f70 2024-10-24T05:50
✔️ operation confirmed (21.2s): 
  -12.420235283771806656 FTM OUT        0xa6f1755ea9f1aa5049da06c0c6d06527e89854e498bbbb68ae2f71eeb1da6f70 2024-10-24T05:50
✔️ undefined: 0.00011915 FTM (93ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:(in 21.2s)
✔️ destination operation 
  +12.420110419989532656 FTM IN         0xa6f1755ea9f1aa5049da06c0c6d06527e89854e498bbbb68ae2f71eeb1da6f70 2024-10-24T05:50
(in 21.6s)

necessary accounts resynced in 46ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 7.61187 FTM (83ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~7.61125
★ using mutation 'move 50%'
→ TO undefined: 0.00011915 FTM (93ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  3.805627269810191625 FTM
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (267ms)
  amount: 3.805627269810191625 FTM
  estimated fees: 0.000244072103037 FTM
  total spent: 3.805871341913228625 FTM
errors: 
warnings: 
✔️ has been signed! (5.7s) 
✔️ broadcasted! (278ms) optimistic operation: 
  -3.805871341913228625 FTM OUT        0x9877afb822abec96fc250cbb27be5a461bddcc918e156189d7568fe8275fbae8 2024-10-24T05:50
✔️ operation confirmed (21.2s): 
  -3.805752185183081625 FTM OUT        0x9877afb822abec96fc250cbb27be5a461bddcc918e156189d7568fe8275fbae8 2024-10-24T05:51
✔️ undefined: 3.80611 FTM (84ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:(in 21.2s)
✔️ destination operation 
  +3.805627269810191625 FTM IN         0x9877afb822abec96fc250cbb27be5a461bddcc918e156189d7568fe8275fbae8 2024-10-24T05:51
(in 21.2s)

necessary accounts resynced in 7ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 29.0369 FTM (38ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
max spendable ~29.0363
★ using mutation 'move 50%'
→ TO undefined: 3.80611 FTM (84ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  14.518153480482366546 FTM
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (141ms)
  amount: 14.518153480482366546 FTM
  estimated fees: 0.000244185261705 FTM
  total spent: 14.518397665744071546 FTM
errors: 
warnings: 
✔️ has been signed! (4.5s) 
✔️ broadcasted! (98ms) optimistic operation: 
  -14.518397665744071546 FTM OUT        0x4424d298b700d9a4ad4a7b72294766b9ead141e1009372f9d534255ece19627f 2024-10-24T05:51
✔️ operation confirmed (20.9s): 
  -14.518278509013924546 FTM OUT        0x4424d298b700d9a4ad4a7b72294766b9ead141e1009372f9d534255ece19627f 2024-10-24T05:51
✔️ undefined: 14.5186 FTM (39ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:(in 20.9s)
✔️ destination operation 
  +14.518153480482366546 FTM IN         0x4424d298b700d9a4ad4a7b72294766b9ead141e1009372f9d534255ece19627f 2024-10-24T05:51
(in 21.2s)


Spec Boba (failed)

Spec Boba found 1 Boba accounts (preload: 73ms). 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: 39ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0 ETH (81ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00949781 ETH (85ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00593982 ETH (81ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00356485 ETH (61ops) (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.28ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00949781 ETH (85ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0: (! sum of ops 0.009309971850891499 ETH)
max spendable ~0.009494
★ using mutation 'move 50%'
→ TO undefined: 0.00593982 ETH (81ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.004747002255143749 ETH
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (250ms)
  amount: 0.004747002255143749 ETH
  estimated fees: 0.0000015099 ETH
  total spent: 0.004748512155143749 ETH
errors: 
warnings: 
✔️ has been signed! (5.4s) 
✔️ broadcasted! (233ms) optimistic operation: 
  -0.004748512155143749 ETH OUT        0x11871aa76961464928ed3f0141b5ba22ab31c9f4cbd72f4c27f898aa81a79de1 2024-10-24T05:49
✔️ operation confirmed (20.4s): 
  -0.004748512155143749 ETH OUT        0x11871aa76961464928ed3f0141b5ba22ab31c9f4cbd72f4c27f898aa81a79de1 2024-10-24T05:49
✔️ undefined: 0.0047493 ETH (86ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0: (! sum of ops 0.00456145969574775 ETH)(in 20.4s)
✔️ destination operation 
  +0.004747002255143749 ETH IN         0x11871aa76961464928ed3f0141b5ba22ab31c9f4cbd72f4c27f898aa81a79de1 2024-10-24T05:49
(in 10.4s)

necessary accounts resynced in 13ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0106868 ETH (82ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops 0.010615704967850937 ETH)
max spendable ~0.0106828
★ using mutation 'send max'
→ TO undefined: 0.00356485 ETH (61ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND MAX
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (372ms)
  amount: 0.010685246861621937 ETH
  estimated fees: 0.0000015792 ETH
  total spent: 0.010686826061621937 ETH
errors: 
warnings: 
✔️ has been signed! (4s) 
✔️ broadcasted! (99ms) optimistic operation: 
  -0.010686826061621937 ETH OUT        0x0b3f923829ee018e19efd27717215e44afc34cd8f7360fe3063a1a11eaa8fe78 2024-10-24T05:49
✔️ operation confirmed (10.4s): 
  -0.010686826061621937 ETH OUT        0x0b3f923829ee018e19efd27717215e44afc34cd8f7360fe3063a1a11eaa8fe78 2024-10-24T05:49
✔️ undefined: 0 ETH (83ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops -0.000071121093771 ETH)(in 10.4s)
✔️ destination operation 
  +0.010685246861621937 ETH IN         0x0b3f923829ee018e19efd27717215e44afc34cd8f7360fe3063a1a11eaa8fe78 2024-10-24T05:49
(in 10.3s)

necessary accounts resynced in 19ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0142501 ETH (62ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.01420378660135825 ETH)
max spendable ~0.0142462
★ using mutation 'move 50%'
→ TO undefined: 0.0047493 ETH (86ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND  0.007123137832715625 ETH
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (253ms)
  amount: 0.007123137832715625 ETH
  estimated fees: 0.0000015162 ETH
  total spent: 0.007124654032715625 ETH
errors: 
warnings: 
✔️ has been signed! (4.3s) 
✔️ broadcasted! (146ms) optimistic operation: 
  -0.007124654032715625 ETH OUT        0x1aef07dcb3f7a9b969ea28814afff868b298d7dd355dbf04f6affd95c114495c 2024-10-24T05:50
✔️ operation confirmed (10.6s): 
  -0.007124654032715625 ETH OUT        0x1aef07dcb3f7a9b969ea28814afff868b298d7dd355dbf04f6affd95c114495c 2024-10-24T05:50
✔️ undefined: 0.00712544 ETH (63ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd: (! sum of ops 0.007079132568642625 ETH)(in 10.6s)
✔️ destination operation 
  +0.007123137832715625 ETH IN         0x1aef07dcb3f7a9b969ea28814afff868b298d7dd355dbf04f6affd95c114495c 2024-10-24T05:50
(in 10.4s)


Spec Polkadot (failed)


Spec Tron (11)

Spec Tron found 11 Tron accounts (preload: 43.4s). Will use Tron 0.5.0 on nanoSP 1.1.1
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: 174 TRX (112ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 0.000001 TRX (65ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 13.3286 TRX (78ops) (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: 18.893 TRX (36ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 321.463 TRX (16ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 154.751 TRX (5ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
undefined: 26.0194 TRX (2ops) (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.26ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 13.3286 TRX (78ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
max spendable ~12.2286
★ using mutation 'move 50% to another account'
→ TO undefined: 0.000001 TRX (65ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
✔️ transaction 
SEND  6.114334 TRX 
TO TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN
STATUS (935ms)
  amount: 6.114334 TRX
  estimated fees: 0 TRX
  total spent: 6.114334 TRX
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (184ms) optimistic operation: 
  -6.114334 TRX      OUT        f3676e4c31c714a6c55adbf93480224856b6711c962769ac0b2ac1569084fb20 2024-10-24T05:50
✔️ operation confirmed (11.4s): 
  -6.114334 TRX      OUT        f3676e4c31c714a6c55adbf93480224856b6711c962769ac0b2ac1569084fb20 2024-10-24T05:50
✔️ undefined: 7.21433 TRX (79ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:(in 11.4s)
✔️ destination operation 
  +6.114334 TRX      IN         f3676e4c31c714a6c55adbf93480224856b6711c962769ac0b2ac1569084fb20 2024-10-24T05:50
(in 11.2s)

necessary accounts resynced in 0.33ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 18.893 TRX (36ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
max spendable ~17.793
★ using mutation 'move 50% to another account'
→ TO undefined: 30 TRX (75ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
✔️ transaction 
SEND  8.8965 TRX 
TO TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L
STATUS (961ms)
  amount: 8.8965 TRX
  estimated fees: 0 TRX
  total spent: 8.8965 TRX
errors: 
warnings: 
✔️ has been signed! (3.9s) 
✔️ broadcasted! (196ms) optimistic operation: 
  -8.8965 TRX        OUT        1a1db1b331fc79e65e97cffc481f58ea500635849e97661024f167fe3153317a 2024-10-24T05:51
✔️ operation confirmed (11.3s): 
  -8.8965 TRX        OUT        1a1db1b331fc79e65e97cffc481f58ea500635849e97661024f167fe3153317a 2024-10-24T05:51
✔️ undefined: 9.9965 TRX (37ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:(in 11.3s)
✔️ destination operation 
  +8.8965 TRX        IN         1a1db1b331fc79e65e97cffc481f58ea500635849e97661024f167fe3153317a 2024-10-24T05:51
(in 11.8s)

necessary accounts resynced in 0.44ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 321.463 TRX (16ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
max spendable ~320.363
★ using mutation 'send max to another account'
→ TO undefined: 0.000001 TRX (28ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
✔️ transaction 
SEND MAX 
TO TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H
STATUS (1083ms)
  amount: 321.463864 TRX
  estimated fees: 0 TRX
  total spent: 321.463864 TRX
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (146ms) optimistic operation: 
  -321.463864 TRX    OUT        7afea27c072f9582239323ec62dd47d1c06535173d041766217c618b051ef068 2024-10-24T05:51
✔️ operation confirmed (11.1s): 
  -321.463864 TRX    OUT        7afea27c072f9582239323ec62dd47d1c06535173d041766217c618b051ef068 2024-10-24T05:51
✔️ undefined: 0 TRX (17ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:(in 11.1s)
✔️ destination operation 
  +321.463864 TRX    IN         7afea27c072f9582239323ec62dd47d1c06535173d041766217c618b051ef068 2024-10-24T05:51
(in 11.1s)


Details of the 41 uncovered mutations

Spec Filecoin (5)

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

Spec Qtum (1)

  • send max: balance is too low (2)

Spec Decred (2)

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

Spec cardano (6)

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

Spec axelar (2)

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

Spec cosmos (2)

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

Spec secret_network (6)

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

Spec Binance Smart Chain (1)

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

Spec Cronos (3)

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

Spec Fantom (1)

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

Spec Boba (3)

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

Spec Telos (2)

  • move 50%:
  • send max:

Spec Polkadot (7)

  • send 50%~:
  • send max:
  • bond - bondExtra:
  • unbond:
  • rebond:
  • nominate:
  • withdraw:
Portfolio ($380.01) – Details of the 16 currencies
Spec (accounts) State Remaining Runs (est) funds?
Filecoin (0) 0 ops , 🤷‍♂️ ($0.00) ``
Qtum (6) 431 ops (+6), 2.44968 QTUM ($5.92) 👍 191 MCemuTHtbY5GtbjssWAZQJfL6McnJvgDze
Decred (5) 364 ops (+4), 1.27988 DCR ($16.05) 💪 999+ DsUb8NAm1qfcmjrZNg6eFfsULiUDYbU6DLb
cardano (0) 0 ops , 🤷‍♂️ ``
axelar (18) 57 ops , 16.36 AXL ($13.40) 👍 177 axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g
cosmos (16) 418 ops (+8), 8.96985 ATOM ($42.56) 👍 144 cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf
secret_network (0) 0 ops , 🤷‍♂️ ``
Avalanche C-Chain (10) 250 ops , 2.82586 AVAX ($76.56) 💪 553 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Binance Smart Chain (10) 802 ops , 0.118141 BNB ($70.08) 👍 84 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Cronos (6) 625 ops , 5.08708 CRO ($0.41) ⚠️ 11 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Fantom (6) 399 ops (+6), 49.0702 FTM ($34.36) 💪 999+ 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Boba (1) 0 ops , 0 ETH ($0.00) 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Telos (0) 0 ops , 🤷‍♂️ ``
Polygon zkEVM (5) 314 ops (+6), 0.0190024 ETH ($0.00) 👍 291 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Polkadot (0) 0 ops , 🤷‍♂️ ``
Tron (11) 529 ops (+8), 536.1 TRX ($120.67) 💪 999+ TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
undefined [segwit]: 0.701087 QTUM (115ops) (MCemuTHtbY5GtbjssWAZQJfL6McnJvgDze on 49'/88'/0'/0/58) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.580582 QTUM (105ops) (MEaibsr1eoqrXKUPq7s5C7mkC8uA75cysi on 49'/88'/1'/0/52) 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.15954 QTUM (113ops) (QTKaLRqKC35fjSBj9qG2Soc8mSqgjy9Dj5 on 44'/88'/0'/0/59) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0 QTUM (98ops) (QYUm4JxMozRnuiQY3gJDWC76nBBGakpK8U on 44'/88'/1'/0/46) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
undefined: 0.952673 DCR (103ops) (DsUb8NAm1qfcmjrZNg6eFfsULiUDYbU6DLb on 44'/42'/0'/0/54) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.326967 DCR (100ops) (DsoMepfUeqJ9ddF12nVqLZBRj971UPDMKv3 on 44'/42'/1'/0/49) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.0001 DCR (86ops) (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.735372 AXL (5ops) (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 AXL (2ops) (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.120514 AXL (4ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.000033 AXL (4ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0.00631 AXL (8ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.963913 AXL (9ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.11438 AXL (4ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 0.681367 AXL (8ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 2.02376 AXL (4ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 7.33077 AXL (3ops) (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.138542 AXL (1ops) (axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4 on 44'/118'/16'/0/0) #16 js:2:axelar:axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4:
undefined: 0 AXL (0ops) (axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq on 44'/118'/17'/0/0) #17 js:2:axelar:axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq:
undefined: 0.813441 ATOM (50ops) (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.205949 ATOM (65ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.004332 ATOM (27ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.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.238525 ATOM (40ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0 ATOM (24ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 0.073342 ATOM (22ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.20896 ATOM (8ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.33938 ATOM (16ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 1.53671 ATOM (3ops) (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.69149 ATOM (3ops) (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 (102ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 BNB (102ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00453676 BNB (86ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.00268087 BNB (99ops) (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: 0.00044614 FTM (86ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 12.4207 FTM (95ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 3.80574 FTM (94ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 18.3242 FTM (85ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 14.5186 FTM (39ops) (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 ETH (81ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0118724 ETH (87ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0 ETH (83ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00712544 ETH (63ops) (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.64411 TRX (104ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 38.8965 TRX (76ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 174 TRX (112ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 6.11433 TRX (66ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 7.21433 TRX (79ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 321.463 TRX (31ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 9.9965 TRX (37ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 0 TRX (17ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 154.751 TRX (5ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
undefined: 26.0194 TRX (2ops) (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 ⏲ 11min 40s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 45.5s 15min 11s 271ms 18.7s 2min 59s 3.3s 4min 7s 3min 35s
Filecoin (0) N/A N/A N/A N/A N/A N/A N/A N/A
Qtum (4) 0.18ms 53.3s 25ms 759ms 39.8s 270ms 32.5s 32.5s
Decred (4) 2.15ms 42.3s 1.57ms 898ms 20.6s 498ms 22.4s 21.3s
cardano (0) N/A N/A N/A N/A N/A N/A N/A N/A
axelar (17) 312ms 80.1s 41ms 2864ms 43.5s 500ms 1.75ms N/A
cosmos (15) 520ms 80.4s 13ms 4s 35.2s 515ms 53.4s 31.6s
secret_network (0) N/A N/A N/A N/A N/A N/A N/A N/A
Avalanche C-Chain (9) 190ms 69.7s 8ms 2159ms N/A N/A N/A N/A
Binance Smart Chain (9) 633ms 2min 18s 51ms 3.5s N/A N/A N/A N/A
Cronos (5) 87ms 2min 27s 1.64ms N/A N/A N/A N/A N/A
Fantom (5) 108ms 3min 41s 79ms 613ms 15.3s 510ms 63.2s 63.9s
Boba (0) 73ms 11.6s N/A N/A N/A N/A N/A N/A
Telos (0) 105ms N/A N/A N/A N/A N/A N/A N/A
Polygon zkEVM (4) 39ms 8.8s 48ms 875ms 13.7s 478ms 41.4s 31.1s
Polkadot (0) N/A N/A N/A N/A N/A N/A N/A N/A
Tron (10) 43.4s 58.7s 3.12ms 2979ms 10.8s 527ms 33.8s 34.1s

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

Please sign in to comment.