Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'ledgerhq/master' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
hakim-adamik committed Feb 8, 2022
2 parents 28408c6 + 38edada commit fec6dba
Show file tree
Hide file tree
Showing 27 changed files with 1,024 additions and 574 deletions.
75 changes: 75 additions & 0 deletions .github/workflows/bot-transfer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: "Bot Transfer"
on:
workflow_dispatch:
inputs:
origin:
description: "index of the seed to send from (e.g. 1)"
required: true
recipient:
description: "index of the seed to receive the funds (e.g. 4)"
required: true


jobs:
start-runner:
name: "start ec2 instance (Linux)"
if: ${{ always() }}
uses: ledgerhq/actions/.github/workflows/start-linux-runner.yml@main
secrets:
CI_BOT_TOKEN: ${{ secrets.CI_BOT_TOKEN }}

stop-runner:
name: "stop ec2 instance (Linux)"
needs: [start-runner, run-bot]
uses: ledgerhq/actions/.github/workflows/stop-linux-runner.yml@main
if: ${{ always() }}
with:
label: ${{ needs.start-runner.outputs.label }}
ec2-instance-id: ${{ needs.start-runner.outputs.ec2-instance-id }}
secrets:
CI_BOT_TOKEN: ${{ secrets.CI_BOT_TOKEN }}

run-bot:
runs-on: ${{ needs.start-runner.outputs.label }}
needs: [start-runner]
steps:
- name: prepare runner
run: |
sudo growpart /dev/nvme0n1 1
sudo resize2fs /dev/nvme0n1p1
- uses: actions/checkout@v2
- name: Retrieving coin apps
uses: actions/checkout@v2
with:
repository: LedgerHQ/coin-apps
token: ${{ secrets.PAT }}
path: coin-apps
- uses: actions/setup-node@master
with:
node-version: 14.x
- name: install yarn
run: npm i -g yarn
- name: pull docker image
run: docker pull ghcr.io/ledgerhq/speculos
- name: kill apt-get
run: sudo killall -w apt-get apt || echo OK
- name: Install linux deps
run: sudo apt-get install -y jq
- name: Install dependencies
run: |
yarn global add yalc
yarn --frozen-lockfile
yarn ci-setup-cli
- name: BOT
env:
SEED: ${{ secrets[format('SEED{0}', github.event.inputs.origin)] }}
SEED_RECIPIENT: ${{ secrets[format('SEED{0}', github.event.inputs.recipient)] }}
VERBOSE_FILE: bot-transfer.txt
run: COINAPPS=$PWD/coin-apps ledger-live botTransfer
timeout-minutes: 120
- name: upload logs
if: failure() || success()
uses: actions/upload-artifact@v1
with:
name: bot-transfer.txt
path: bot-transfer.txt
2 changes: 0 additions & 2 deletions .github/workflows/bot3.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
name: Bot 'Silicium'
on:
schedule:
- cron: "0 8-16/2 * * 1-5"
push:
branches:
- bot-silicium
Expand Down
18 changes: 9 additions & 9 deletions cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@
"@ledgerhq/hw-transport-node-ble": "5.7.0"
},
"dependencies": {
"@ledgerhq/cryptoassets": "6.24.0",
"@ledgerhq/cryptoassets": "6.24.1",
"@ledgerhq/errors": "6.10.0",
"@ledgerhq/hw-app-btc": "6.24.0",
"@ledgerhq/hw-transport-http": "6.20.0",
"@ledgerhq/hw-transport-mocker": "6.20.0",
"@ledgerhq/hw-transport-node-ble": "^6.23.2-node-ble-winrt.0",
"@ledgerhq/hw-transport-node-hid": "6.20.0",
"@ledgerhq/hw-transport-node-speculos": "6.20.0",
"@ledgerhq/hw-app-btc": "6.24.1",
"@ledgerhq/hw-transport-http": "6.24.1",
"@ledgerhq/hw-transport-mocker": "6.24.1",
"@ledgerhq/hw-transport-node-ble": "^6.24.1",
"@ledgerhq/hw-transport-node-hid": "6.24.1",
"@ledgerhq/hw-transport-node-speculos": "6.24.1",
"@ledgerhq/ledger-core": "6.14.5",
"@ledgerhq/live-common": "^21.32.1",
"@ledgerhq/live-common": "^21.32.2",
"@ledgerhq/logs": "6.10.0",
"@walletconnect/client": "^1.7.1",
"asciichart": "^1.5.25",
Expand All @@ -59,7 +59,7 @@
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/lodash": "^4.14.177",
"@types/node": "^17.0.14",
"@types/node": "^17.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
Expand Down
2 changes: 2 additions & 0 deletions cli/src/commands-index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import appsUpdateTestAll from "./commands/appsUpdateTestAll";
import balanceHistory from "./commands/balanceHistory";
import bot from "./commands/bot";
import botPortfolio from "./commands/botPortfolio";
import botTransfer from "./commands/botTransfer";
import broadcast from "./commands/broadcast";
import cleanSpeculos from "./commands/cleanSpeculos";
import countervalues from "./commands/countervalues";
Expand Down Expand Up @@ -60,6 +61,7 @@ export default {
balanceHistory,
bot,
botPortfolio,
botTransfer,
broadcast,
cleanSpeculos,
countervalues,
Expand Down
29 changes: 20 additions & 9 deletions cli/src/commands/botPortfolio.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { from, defer } from "rxjs";
import { filter, map, mergeAll } from "rxjs/operators";
import { from, defer, throwError } from "rxjs";
import { catchError, filter, map, mergeAll, timeoutWith } from "rxjs/operators";
import { listSupportedCurrencies } from "@ledgerhq/live-common/lib/currencies";
import { getCurrencyBridge } from "@ledgerhq/live-common/lib/bridge";
import { accountFormatters } from "@ledgerhq/live-common/lib/account";
Expand All @@ -21,13 +21,24 @@ export default {
filter((c) => !blacklist.includes(c.id) && !c.isTestnetFor),
map((currency) =>
defer(() =>
getCurrencyBridge(currency).scanAccounts({
currency,
deviceId: `speculos:nanos:${currency.id}`,
syncConfig: {
paginationConfig: {},
},
})
getCurrencyBridge(currency)
.scanAccounts({
currency,
deviceId: `speculos:nanos:${currency.id}`,
syncConfig: {
paginationConfig: {},
},
})
.pipe(
timeoutWith(
200 * 1000,
throwError(new Error("scan account timeout"))
),
catchError((e) => {
console.error("scan accounts failed for " + currency.id, e);
return from([]);
})
)
)
),
mergeAll(5),
Expand Down
Loading

1 comment on commit fec6dba

@github-actions
Copy link

Choose a reason for hiding this comment

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

❌ 5 txs ($38.32) for Bot 'Cosmos JS'

⚠️ 2 mutations uncovered

5 mutation errors
all accounts sync in 1715ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 1: 0.25295 ATOM (8ops) (cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er: (! sum of ops 0.260622 ATOM) 0.252952 ATOM spendable. 

max spendable ~0.25054
★ using mutation 'send max'
→ TO Cosmos 2: 0.4367 ATOM (7ops) (cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv:
✔️ transaction 
SEND MAX
TO cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv

with fees=0.002153
STATUS (1149ms)
  amount: 0.250799 ATOM
  estimated fees: 0.002153 ATOM
  total spent: 0.252952 ATOM
✔️ has been signed! (2907ms) 
✔️ broadcasted! (91ms) optimistic operation: 
  -0.072272 ATOM     OUT        0E25B2FD56DEFB398798AE22D016155579D844EB5CE7BE952B0FEF1F675C37F4 2022-02-08T14:29
(final state reached in 33.9s)
⚠️ Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "178527"

Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "178527"
all accounts sync in 1797ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 2: 0.506 ATOM (8ops) (cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv: (! sum of ops 0.513635 ATOM) 0.26193 ATOM spendable. 0.244095 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj 0.012531 ATOM 
  to cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl 0.087313 ATOM 
  to cosmosvaloper146kwpzhmleafmhtaxulfptyhnvwxzlvm87hwnm 0.01132 ATOM 
  to cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 0.025155 ATOM 
  to cosmosvaloper1sxx9mszve0gaedz5ld7qdkjkfv8z992ax69k08 0.004641 ATOM 
  to cosmosvaloper1wlagucxdxvsmvj6330864x8q3vxz4x02rmvmsu 0.061104 ATOM 
  to cosmosvaloper1x8rr4hcf54nz6hfckyy2n05sxss54h8wz9puzg 0.017993 ATOM 
  to cosmosvaloper16qme5yxucnaj6snx35nmwze0wyxr8wfgqxsqfw 0.024038 ATOM 
  to cosmosvaloper1gjtvly9lel6zskvwtvlg5vhwpu9c9waw7sxzwx 0.00761 ATOM 

max spendable ~0.25983
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.012531 -> cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj
with fees=0.006055
  memo=LedgerLiveBot
STATUS (573ms)
  amount: 0 ATOM
  estimated fees: 0.006055 ATOM
  total spent: 0.006055 ATOM
✔️ has been signed! (2548ms) {"operation":{"id":"js:2:cosmos:cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv:--OUT","hash":"","type":"OUT","senders":["cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv"],"recipients":[""],"accountId":"js:2:cosmos:cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv:","blockHash":null,"blockHeight":null,"extra":{},"date":"2022-02-08T14:30:08.530Z","value":"0","fee":"6055"},"signature":"0aa1010a9e010a252f636f736d6f732e7374616b696e672e763162657461312e4d7367556e64656c656761746512750a2d636f736d6f73317a643065386a396739777572387570376a35617161687a32333372346a6d7671687966666e761234636f736d6f7376616c6f70657231727067747a3970736b7235676561766b6a7a30326361716d656570376377777076373361786a1a0e0a057561746f6d1205313235333112670a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a210209c9aee1c560942170326ee9b3e1d38853c7b36c15995672f43a1ff4a11dceaa12040a02087f180412130a0d0a057561746f6d1204363035351098e40e1a403e3e4e2661130f29ee6f0f21a2122c7a3d3b56bd598e5cb4a2ea4d913aaa2ac600ed9ab5e82fadfee6824ce6df32183e5a721bc36118f259d3539e24093ba64c","expirationDate":null}
⚠️ Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (751172), sequence (4) and chain-id (cosmoshub-4): unauthorized')

Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (751172), sequence (4) and chain-id (cosmoshub-4): unauthorized')
all accounts sync in 1724ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 3: 0.25443 ATOM (5ops) (cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0 on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0: 0.25443 ATOM spendable. 

max spendable ~0.25202
★ using mutation 'send some'
→ TO Cosmos 1: 0.17852 ATOM (9ops) (cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er:
✔️ transaction 
SEND  0.117974 ATOM
TO cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er

with fees=0.002153
  memo=LedgerLiveBot
STATUS (2219ms)
  amount: 0.117974 ATOM
  estimated fees: 0.002153 ATOM
  total spent: 0.120127 ATOM
✔️ has been signed! (3s) {"operation":{"id":"js:2:cosmos:cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0:--OUT","hash":"","type":"OUT","senders":["cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0"],"recipients":["cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er"],"accountId":"js:2:cosmos:cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0:","blockHash":null,"blockHeight":null,"extra":{},"date":"2022-02-08T14:30:18.289Z","value":"117974","fee":"2153"},"signature":"0a92010a8f010a1c2f636f736d6f732e62616e6b2e763162657461312e4d736753656e64126f0a2d636f736d6f7331757479356e663238656d656168756864673972756e6d7a756c757139756a3575656b346a6b30122d636f736d6f73317a707674686533707876796a65377672637176326d36716532716775307238676b7a363465721a0f0a057561746f6d120631313739373412670a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a2103c68ba6b137ff35a958669075452f350250f2b82123e865729fbdc1240285b82012040a02087f180212130a0d0a057561746f6d12043231353310d9a0051a40976a530d1f46b8e3ce965198cbfb643516f2c734ab932eb0a1365b57a3db17980ecbd3f7d5414dd0138e3f56fc878beddd77a89e7ea1cba85988da5d9c953962","expirationDate":null}
⚠️ Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (751597), sequence (2) and chain-id (cosmoshub-4): unauthorized')

Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (751597), sequence (2) and chain-id (cosmoshub-4): unauthorized')
all accounts sync in 1590ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 4: 0.29906 ATOM (4ops) (cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n: 0.299061 ATOM spendable. 

max spendable ~0.29665
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE 
TO 
  0.040903 -> cosmosvaloper1pjmngrwcsatsuyy8m3qrunaun67sr9x7z5r2qs
with fees=0.003856
  memo=LedgerLiveBot
STATUS (551ms)
  amount: 0.040903 ATOM
  estimated fees: 0.003856 ATOM
  total spent: 0.044759 ATOM
✔️ has been signed! (2658ms) {"operation":{"id":"js:2:cosmos:cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n:--OUT","hash":"","type":"OUT","senders":["cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n"],"recipients":[""],"accountId":"js:2:cosmos:cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n:","blockHash":null,"blockHeight":null,"extra":{},"date":"2022-02-08T14:30:25.767Z","value":"0","fee":"3856"},"signature":"0a9f010a9c010a232f636f736d6f732e7374616b696e672e763162657461312e4d736744656c656761746512750a2d636f736d6f73316363656d6364387033723239336535726376306177616a3968666e6e36776d786b7a3532306e1234636f736d6f7376616c6f70657231706a6d6e6772776373617473757979386d337172756e61756e363773723978377a35723271731a0e0a057561746f6d1205343039303312670a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a21037b14abc40458ff33a77f2e6462ac78eae4a7148b872153bf5aa92d3134b586e212040a02087f180212130a0d0a057561746f6d12043338353610ebb4091a40e7e742489294cea53f8591c8e24eeae623bf4cb1ae61b3c20ea837696048d2643a8a01c5aa86e16437ef1d279ae32b3ec1d64837f3d07be804f146d8c7fb8275","expirationDate":null}
⚠️ Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (754002), sequence (2) and chain-id (cosmoshub-4): unauthorized')

Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (754002), sequence (2) and chain-id (cosmoshub-4): unauthorized')
all accounts sync in 1947ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 5: 0.10273 ATOM (1ops) (cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu: 0.102734 ATOM spendable. 

max spendable ~0.10011
★ using mutation 'send some'
→ TO Cosmos 4: 0.29906 ATOM (4ops) (cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n:
✔️ transaction 
SEND  0.065603 ATOM
TO cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n

with fees=0.002364
  memo=LedgerLiveBot
STATUS (1424ms)
  amount: 0.065603 ATOM
  estimated fees: 0.002364 ATOM
  total spent: 0.067967 ATOM
✔️ has been signed! (3.2s) {"operation":{"id":"js:2:cosmos:cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu:--OUT","hash":"","type":"OUT","senders":["cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu"],"recipients":["cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n"],"accountId":"js:2:cosmos:cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu:","blockHash":null,"blockHeight":null,"extra":{},"date":"2022-02-08T14:30:35.166Z","value":"65603","fee":"2364"},"signature":"0a91010a8e010a1c2f636f736d6f732e62616e6b2e763162657461312e4d736753656e64126e0a2d636f736d6f73316d766b33667778676466616334796a6d676c3968647a303535357138676c6a79647a766a7475122d636f736d6f73316363656d6364387033723239336535726376306177616a3968666e6e36776d786b7a3532306e1a0e0a057561746f6d1205363536303312650a4e0a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a210359687bed2cbc7bf99b59127bd2b598be1419160ab7c3ca4ff385a37032a62f2812040a02087f12130a0d0a057561746f6d12043233363410cde2051a403c21452eb3f771445caa45af652e7087ad4efec0c94b629b61afd1a5ff8985580da43a97cfd739f7abf728b730333a7c167ae4241a929697f48cec40e732c679","expirationDate":null}
⚠️ Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (779120), sequence (0) and chain-id (cosmoshub-4): unauthorized')

Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (779120), sequence (0) and chain-id (cosmoshub-4): unauthorized')
Details of the 5 mutations

Spec Cosmos (6)

Spec Cosmos found 6 Cosmos accounts (preload: 290ms). Will use Cosmos 2.18.0 on nanoS 2.0.0
(1154ms) Cosmos 1: 0.25295 ATOM (8ops) (cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er:
(591ms) Cosmos 2: 0.4413 ATOM (7ops) (cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv:
(841ms) Cosmos 3: 0.25443 ATOM (5ops) (cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0 on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0:
(573ms) Cosmos 4: 0.29906 ATOM (4ops) (cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n:
(412ms) Cosmos 5: 0.10273 ATOM (1ops) (cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu:
(1297ms) Cosmos 6: 0 ATOM (0ops) (cosmos1draxuzz0aukggx63m852wm8mlxqpus2009cs97 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos1draxuzz0aukggx63m852wm8mlxqpus2009cs97:
all accounts sync in 1715ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 1: 0.25295 ATOM (8ops) (cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er: (! sum of ops 0.260622 ATOM) 0.252952 ATOM spendable. 

max spendable ~0.25054
★ using mutation 'send max'
→ TO Cosmos 2: 0.4367 ATOM (7ops) (cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv:
✔️ transaction 
SEND MAX
TO cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv

with fees=0.002153
STATUS (1149ms)
  amount: 0.250799 ATOM
  estimated fees: 0.002153 ATOM
  total spent: 0.252952 ATOM
✔️ has been signed! (2907ms) 
✔️ broadcasted! (91ms) optimistic operation: 
  -0.072272 ATOM     OUT        0E25B2FD56DEFB398798AE22D016155579D844EB5CE7BE952B0FEF1F675C37F4 2022-02-08T14:29
(final state reached in 33.9s)
⚠️ Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "178527"

all accounts sync in 1797ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 2: 0.506 ATOM (8ops) (cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv: (! sum of ops 0.513635 ATOM) 0.26193 ATOM spendable. 0.244095 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj 0.012531 ATOM 
  to cosmosvaloper1rcp29q3hpd246n6qak7jluqep4v006cdsc2kkl 0.087313 ATOM 
  to cosmosvaloper146kwpzhmleafmhtaxulfptyhnvwxzlvm87hwnm 0.01132 ATOM 
  to cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 0.025155 ATOM 
  to cosmosvaloper1sxx9mszve0gaedz5ld7qdkjkfv8z992ax69k08 0.004641 ATOM 
  to cosmosvaloper1wlagucxdxvsmvj6330864x8q3vxz4x02rmvmsu 0.061104 ATOM 
  to cosmosvaloper1x8rr4hcf54nz6hfckyy2n05sxss54h8wz9puzg 0.017993 ATOM 
  to cosmosvaloper16qme5yxucnaj6snx35nmwze0wyxr8wfgqxsqfw 0.024038 ATOM 
  to cosmosvaloper1gjtvly9lel6zskvwtvlg5vhwpu9c9waw7sxzwx 0.00761 ATOM 

max spendable ~0.25983
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.012531 -> cosmosvaloper1rpgtz9pskr5geavkjz02caqmeep7cwwpv73axj
with fees=0.006055
  memo=LedgerLiveBot
STATUS (573ms)
  amount: 0 ATOM
  estimated fees: 0.006055 ATOM
  total spent: 0.006055 ATOM
✔️ has been signed! (2548ms) {"operation":{"id":"js:2:cosmos:cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv:--OUT","hash":"","type":"OUT","senders":["cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv"],"recipients":[""],"accountId":"js:2:cosmos:cosmos1zd0e8j9g9wur8up7j5aqahz233r4jmvqhyffnv:","blockHash":null,"blockHeight":null,"extra":{},"date":"2022-02-08T14:30:08.530Z","value":"0","fee":"6055"},"signature":"0aa1010a9e010a252f636f736d6f732e7374616b696e672e763162657461312e4d7367556e64656c656761746512750a2d636f736d6f73317a643065386a396739777572387570376a35617161687a32333372346a6d7671687966666e761234636f736d6f7376616c6f70657231727067747a3970736b7235676561766b6a7a30326361716d656570376377777076373361786a1a0e0a057561746f6d1205313235333112670a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a210209c9aee1c560942170326ee9b3e1d38853c7b36c15995672f43a1ff4a11dceaa12040a02087f180412130a0d0a057561746f6d1204363035351098e40e1a403e3e4e2661130f29ee6f0f21a2122c7a3d3b56bd598e5cb4a2ea4d913aaa2ac600ed9ab5e82fadfee6824ce6df32183e5a721bc36118f259d3539e24093ba64c","expirationDate":null}
⚠️ Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (751172), sequence (4) and chain-id (cosmoshub-4): unauthorized')

all accounts sync in 1724ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 3: 0.25443 ATOM (5ops) (cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0 on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0: 0.25443 ATOM spendable. 

max spendable ~0.25202
★ using mutation 'send some'
→ TO Cosmos 1: 0.17852 ATOM (9ops) (cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er:
✔️ transaction 
SEND  0.117974 ATOM
TO cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er

with fees=0.002153
  memo=LedgerLiveBot
STATUS (2219ms)
  amount: 0.117974 ATOM
  estimated fees: 0.002153 ATOM
  total spent: 0.120127 ATOM
✔️ has been signed! (3s) {"operation":{"id":"js:2:cosmos:cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0:--OUT","hash":"","type":"OUT","senders":["cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0"],"recipients":["cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er"],"accountId":"js:2:cosmos:cosmos1uty5nf28emeahuhdg9runmzuluq9uj5uek4jk0:","blockHash":null,"blockHeight":null,"extra":{},"date":"2022-02-08T14:30:18.289Z","value":"117974","fee":"2153"},"signature":"0a92010a8f010a1c2f636f736d6f732e62616e6b2e763162657461312e4d736753656e64126f0a2d636f736d6f7331757479356e663238656d656168756864673972756e6d7a756c757139756a3575656b346a6b30122d636f736d6f73317a707674686533707876796a65377672637176326d36716532716775307238676b7a363465721a0f0a057561746f6d120631313739373412670a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a2103c68ba6b137ff35a958669075452f350250f2b82123e865729fbdc1240285b82012040a02087f180212130a0d0a057561746f6d12043231353310d9a0051a40976a530d1f46b8e3ce965198cbfb643516f2c734ab932eb0a1365b57a3db17980ecbd3f7d5414dd0138e3f56fc878beddd77a89e7ea1cba85988da5d9c953962","expirationDate":null}
⚠️ Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (751597), sequence (2) and chain-id (cosmoshub-4): unauthorized')

all accounts sync in 1590ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 4: 0.29906 ATOM (4ops) (cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n: 0.299061 ATOM spendable. 

max spendable ~0.29665
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE 
TO 
  0.040903 -> cosmosvaloper1pjmngrwcsatsuyy8m3qrunaun67sr9x7z5r2qs
with fees=0.003856
  memo=LedgerLiveBot
STATUS (551ms)
  amount: 0.040903 ATOM
  estimated fees: 0.003856 ATOM
  total spent: 0.044759 ATOM
✔️ has been signed! (2658ms) {"operation":{"id":"js:2:cosmos:cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n:--OUT","hash":"","type":"OUT","senders":["cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n"],"recipients":[""],"accountId":"js:2:cosmos:cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n:","blockHash":null,"blockHeight":null,"extra":{},"date":"2022-02-08T14:30:25.767Z","value":"0","fee":"3856"},"signature":"0a9f010a9c010a232f636f736d6f732e7374616b696e672e763162657461312e4d736744656c656761746512750a2d636f736d6f73316363656d6364387033723239336535726376306177616a3968666e6e36776d786b7a3532306e1234636f736d6f7376616c6f70657231706a6d6e6772776373617473757979386d337172756e61756e363773723978377a35723271731a0e0a057561746f6d1205343039303312670a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a21037b14abc40458ff33a77f2e6462ac78eae4a7148b872153bf5aa92d3134b586e212040a02087f180212130a0d0a057561746f6d12043338353610ebb4091a40e7e742489294cea53f8591c8e24eeae623bf4cb1ae61b3c20ea837696048d2643a8a01c5aa86e16437ef1d279ae32b3ec1d64837f3d07be804f146d8c7fb8275","expirationDate":null}
⚠️ Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (754002), sequence (2) and chain-id (cosmoshub-4): unauthorized')

all accounts sync in 1947ms
▬ Cosmos 2.18.0 on nanoS 2.0.0
→ FROM Cosmos 5: 0.10273 ATOM (1ops) (cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu: 0.102734 ATOM spendable. 

max spendable ~0.10011
★ using mutation 'send some'
→ TO Cosmos 4: 0.29906 ATOM (4ops) (cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n:
✔️ transaction 
SEND  0.065603 ATOM
TO cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n

with fees=0.002364
  memo=LedgerLiveBot
STATUS (1424ms)
  amount: 0.065603 ATOM
  estimated fees: 0.002364 ATOM
  total spent: 0.067967 ATOM
✔️ has been signed! (3.2s) {"operation":{"id":"js:2:cosmos:cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu:--OUT","hash":"","type":"OUT","senders":["cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu"],"recipients":["cosmos1ccemcd8p3r293e5rcv0awaj9hfnn6wmxkz520n"],"accountId":"js:2:cosmos:cosmos1mvk3fwxgdfac4yjmgl9hdz0555q8gljydzvjtu:","blockHash":null,"blockHeight":null,"extra":{},"date":"2022-02-08T14:30:35.166Z","value":"65603","fee":"2364"},"signature":"0a91010a8e010a1c2f636f736d6f732e62616e6b2e763162657461312e4d736753656e64126e0a2d636f736d6f73316d766b33667778676466616334796a6d676c3968647a303535357138676c6a79647a766a7475122d636f736d6f73316363656d6364387033723239336535726376306177616a3968666e6e36776d786b7a3532306e1a0e0a057561746f6d1205363536303312650a4e0a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a210359687bed2cbc7bf99b59127bd2b598be1419160ab7c3ca4ff385a37032a62f2812040a02087f12130a0d0a057561746f6d12043233363410cde2051a403c21452eb3f771445caa45af652e7087ad4efec0c94b629b61afd1a5ff8985580da43a97cfd739f7abf728b730333a7c167ae4241a929697f48cec40e732c679","expirationDate":null}
⚠️ Error: invalid broadcast return (code: 4, message: 'signature verification failed; please verify account number (779120), sequence (0) and chain-id (cosmoshub-4): unauthorized')


Details of the 2 uncovered mutations

Spec Cosmos (2)

  • redelegate: balance is too low (1)
  • claim rewards: balance is too low (1)

Portfolio ($38.32)

Details of the 1 currencies
Spec (accounts) Operations Balance funds?
Cosmos (5) 27 (+2) 1.0988 ATOM (- 0.002153) ($38.32) ⚠️ cosmos1zpvthe3pxvyje7vrcqv2m6qe2qgu0r8gkz64er

Please sign in to comment.