forked from LedgerHQ/app-exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'LedgerHQ/develop' into develop
- Loading branch information
Showing
505 changed files
with
171 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
from enum import IntEnum | ||
|
||
from ragger.bip import pack_derivation_path | ||
from ragger.utils import create_currency_config, RAPDU | ||
|
||
NEAR_CONF = create_currency_config("NEAR", "NEAR") | ||
NEAR_PACKED_DERIVATION_PATH = pack_derivation_path("m/44'/397'/0'/0'/1'") | ||
|
||
class Ins(): | ||
SIGN = 0x02 | ||
|
||
|
||
class P1(): | ||
START = 0x00 | ||
MORE = 0x80 | ||
|
||
|
||
class P2(): | ||
UNUSED = 0x57 | ||
|
||
|
||
class NearErrors(IntEnum): | ||
SW_DENY = 0x6985 | ||
SW_SWAP_CHECKING_FAIL = 0xB008 | ||
|
||
|
||
class NearClient: | ||
CLA = 0x80 | ||
|
||
def __init__(self, backend): | ||
self._backend = backend | ||
|
||
def send_simple_sign_tx(self, path: str, destination: str, send_amount: int) -> RAPDU: | ||
packed_path = pack_derivation_path(path) | ||
|
||
if destination == "speculos.testnet" and send_amount == 1234560000000000000000000000: | ||
""" | ||
1234.56 NEAR | ||
Transaction { | ||
signer_id: "blablatest.testnet", | ||
public_key: ed25519:EFr6nRvgKKeteKoEH7hudt8UHYiu94Liq2yMM7x2AU9U, | ||
nonce: 103595482000005, | ||
receiver_id: "speculos.testnet", | ||
block_hash: Cb3vKNiF3MUuVoqfjuEFCgSNPT79pbuVfXXd2RxDXc5E, | ||
actions: [ | ||
Transfer( | ||
TransferAction { | ||
deposit: 1234560000000000000000000000, | ||
}, | ||
), | ||
], | ||
} | ||
""" | ||
tx = bytes.fromhex("12000000626c61626c61746573742e746573746e657400c4f5941e81e071c2fd1dae2e71fd3d859d462484391d9a90bf219211dcbb320f85aae733385e00001000000073706563756c6f732e746573746e6574ac299ac1376e375cd39338d8b29225613ef947424b74a3207c1226863a72583101000000030000001049f203b43f34fd0300000000") | ||
|
||
elif destination == "speculos.testnet" and send_amount == 500000000000000000000000: | ||
""" | ||
0.5 NEAR | ||
Transaction { | ||
signer_id: "blablatest.testnet", | ||
public_key: ed25519:EFr6nRvgKKeteKoEH7hudt8UHYiu94Liq2yMM7x2AU9U, | ||
nonce: 103595482000005, | ||
receiver_id: "speculos.testnet", | ||
block_hash: Cb3vKNiF3MUuVoqfjuEFCgSNPT79pbuVfXXd2RxDXc5E, | ||
actions: [ | ||
Transfer( | ||
TransferAction { | ||
deposit: 500000000000000000000000, | ||
}, | ||
), | ||
], | ||
} | ||
""" | ||
tx = bytes.fromhex("12000000626c61626c61746573742e746573746e657400c4f5941e81e071c2fd1dae2e71fd3d859d462484391d9a90bf219211dcbb320f85aae733385e00001000000073706563756c6f732e746573746e6574ac299ac1376e375cd39338d8b29225613ef947424b74a3207c1226863a7258310100000003000080d07666e70de169000000000000") | ||
elif destination == "ledger.testnet" and send_amount == 1234560000000000000000000000: | ||
""" | ||
1234.56 NEAR | ||
Transaction { | ||
signer_id: "blablatest.testnet", | ||
public_key: ed25519:EFr6nRvgKKeteKoEH7hudt8UHYiu94Liq2yMM7x2AU9U, | ||
nonce: 103595482000005, | ||
receiver_id: "ledger.testnet", | ||
block_hash: Cb3vKNiF3MUuVoqfjuEFCgSNPT79pbuVfXXd2RxDXc5E, | ||
actions: [ | ||
Transfer( | ||
TransferAction { | ||
deposit: 1234560000000000000000000000, | ||
}, | ||
), | ||
], | ||
} | ||
""" | ||
tx = bytes.fromhex("12000000626c61626c61746573742e746573746e657400c4f5941e81e071c2fd1dae2e71fd3d859d462484391d9a90bf219211dcbb320f85aae733385e00000e0000006c65646765722e746573746e6574ac299ac1376e375cd39338d8b29225613ef947424b74a3207c1226863a72583101000000030000001049f203b43f34fd0300000000") | ||
else: | ||
""" | ||
0.5 NEAR | ||
Transaction { | ||
signer_id: "blablatest.testnet", | ||
public_key: ed25519:EFr6nRvgKKeteKoEH7hudt8UHYiu94Liq2yMM7x2AU9U, | ||
nonce: 103595482000005, | ||
receiver_id: "ledger.testnet", | ||
block_hash: Cb3vKNiF3MUuVoqfjuEFCgSNPT79pbuVfXXd2RxDXc5E, | ||
actions: [ | ||
Transfer( | ||
TransferAction { | ||
deposit: 500000000000000000000000, | ||
}, | ||
), | ||
], | ||
} | ||
""" | ||
tx = bytes.fromhex("12000000626c61626c61746573742e746573746e657400c4f5941e81e071c2fd1dae2e71fd3d859d462484391d9a90bf219211dcbb320f85aae733385e00000e0000006c65646765722e746573746e6574ac299ac1376e375cd39338d8b29225613ef947424b74a3207c1226863a7258310100000003000080d07666e70de169000000000000") | ||
|
||
return self._backend.exchange(self.CLA, Ins.SIGN, P1.MORE, P2.UNUSED, packed_path[1:] + tx) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+6.21 KB
test/python/snapshots/flex/test_near_fund_valid_1/post_sign/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_fund_valid_1/post_sign/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.21 KB
test/python/snapshots/flex/test_near_fund_valid_2/post_sign/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_fund_valid_2/post_sign/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+9.38 KB
test/python/snapshots/flex/test_near_fund_wrong_amount/post_sign/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_fund_wrong_amount/post_sign/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13.1 KB
test/python/snapshots/flex/test_near_fund_wrong_amount/review/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+15.6 KB
test/python/snapshots/flex/test_near_fund_wrong_amount/review/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13.7 KB
test/python/snapshots/flex/test_near_fund_wrong_amount/review/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+9.38 KB
test/python/snapshots/flex/test_near_fund_wrong_destination/post_sign/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_fund_wrong_destination/post_sign/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13.1 KB
test/python/snapshots/flex/test_near_fund_wrong_destination/review/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+15.6 KB
test/python/snapshots/flex/test_near_fund_wrong_destination/review/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13.7 KB
test/python/snapshots/flex/test_near_fund_wrong_destination/review/00002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.21 KB
test/python/snapshots/flex/test_near_sell_valid_1/post_sign/00000.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_sell_valid_1/post_sign/00001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
test/python/snapshots/flex/test_near_sell_valid_2/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_sell_valid_2/post_sign/00001.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+9.38 KB
test/python/snapshots/flex/test_near_sell_wrong_amount/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_sell_wrong_amount/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
test/python/snapshots/flex/test_near_sell_wrong_amount/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.5 KB
test/python/snapshots/flex/test_near_sell_wrong_amount/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+7.04 KB
test/python/snapshots/flex/test_near_sell_wrong_amount/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+13.1 KB
test/python/snapshots/flex/test_near_sell_wrong_amount/review/00003.png
Oops, something went wrong.
Binary file added
BIN
+9.38 KB
test/python/snapshots/flex/test_near_sell_wrong_destination/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_sell_wrong_destination/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
test/python/snapshots/flex/test_near_sell_wrong_destination/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.5 KB
test/python/snapshots/flex/test_near_sell_wrong_destination/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+7.04 KB
test/python/snapshots/flex/test_near_sell_wrong_destination/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+13.1 KB
test/python/snapshots/flex/test_near_sell_wrong_destination/review/00003.png
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
test/python/snapshots/flex/test_near_swap_valid_1/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_swap_valid_1/post_sign/00001.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
test/python/snapshots/flex/test_near_swap_valid_2/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_swap_valid_2/post_sign/00001.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+9.38 KB
test/python/snapshots/flex/test_near_swap_wrong_amount/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_swap_wrong_amount/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
test/python/snapshots/flex/test_near_swap_wrong_amount/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.8 KB
test/python/snapshots/flex/test_near_swap_wrong_amount/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+13 KB
test/python/snapshots/flex/test_near_swap_wrong_amount/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+9.38 KB
test/python/snapshots/flex/test_near_swap_wrong_destination/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_near_swap_wrong_destination/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
test/python/snapshots/flex/test_near_swap_wrong_destination/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.8 KB
test/python/snapshots/flex/test_near_swap_wrong_destination/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+13 KB
test/python/snapshots/flex/test_near_swap_wrong_destination/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+374 Bytes
test/python/snapshots/nanos/test_near_fund_refuse_double_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+314 Bytes
test/python/snapshots/nanos/test_near_fund_refuse_double_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+317 Bytes
test/python/snapshots/nanos/test_near_fund_refuse_double_sign/00002.png
Oops, something went wrong.
Binary file added
BIN
+398 Bytes
test/python/snapshots/nanos/test_near_fund_refuse_double_sign/00003.png
Oops, something went wrong.
Binary file added
BIN
+304 Bytes
test/python/snapshots/nanos/test_near_fund_refuse_double_sign/00004.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanos/test_near_fund_refuse_double_sign/00005.png
Oops, something went wrong.
Binary file added
BIN
+367 Bytes
test/python/snapshots/nanos/test_near_fund_refuse_double_sign/00006.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+374 Bytes
test/python/snapshots/nanos/test_near_fund_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+314 Bytes
test/python/snapshots/nanos/test_near_fund_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+317 Bytes
test/python/snapshots/nanos/test_near_fund_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+398 Bytes
test/python/snapshots/nanos/test_near_fund_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+304 Bytes
test/python/snapshots/nanos/test_near_fund_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanos/test_near_fund_wrong_destination/00005.png
Oops, something went wrong.
Binary file added
BIN
+367 Bytes
test/python/snapshots/nanos/test_near_fund_wrong_destination/00006.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+374 Bytes
test/python/snapshots/nanos/test_near_sell_refuse_double_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+360 Bytes
test/python/snapshots/nanos/test_near_sell_refuse_double_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+317 Bytes
test/python/snapshots/nanos/test_near_sell_refuse_double_sign/00002.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
test/python/snapshots/nanos/test_near_sell_refuse_double_sign/00003.png
Oops, something went wrong.
Binary file added
BIN
+304 Bytes
test/python/snapshots/nanos/test_near_sell_refuse_double_sign/00004.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanos/test_near_sell_refuse_double_sign/00005.png
Oops, something went wrong.
Binary file added
BIN
+367 Bytes
test/python/snapshots/nanos/test_near_sell_refuse_double_sign/00006.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+374 Bytes
test/python/snapshots/nanos/test_near_sell_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+360 Bytes
test/python/snapshots/nanos/test_near_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+317 Bytes
test/python/snapshots/nanos/test_near_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+293 Bytes
test/python/snapshots/nanos/test_near_sell_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+304 Bytes
test/python/snapshots/nanos/test_near_sell_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanos/test_near_sell_wrong_destination/00005.png
Oops, something went wrong.
Binary file added
BIN
+367 Bytes
test/python/snapshots/nanos/test_near_sell_wrong_destination/00006.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+374 Bytes
test/python/snapshots/nanos/test_near_swap_refuse_double_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+317 Bytes
test/python/snapshots/nanos/test_near_swap_refuse_double_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+355 Bytes
test/python/snapshots/nanos/test_near_swap_refuse_double_sign/00002.png
Oops, something went wrong.
Binary file added
BIN
+304 Bytes
test/python/snapshots/nanos/test_near_swap_refuse_double_sign/00003.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanos/test_near_swap_refuse_double_sign/00004.png
Oops, something went wrong.
Binary file added
BIN
+367 Bytes
test/python/snapshots/nanos/test_near_swap_refuse_double_sign/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+374 Bytes
test/python/snapshots/nanos/test_near_swap_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+317 Bytes
test/python/snapshots/nanos/test_near_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+355 Bytes
test/python/snapshots/nanos/test_near_swap_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+304 Bytes
test/python/snapshots/nanos/test_near_swap_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanos/test_near_swap_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+367 Bytes
test/python/snapshots/nanos/test_near_swap_wrong_destination/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_near_fund_refuse_double_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanosp/test_near_fund_refuse_double_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+361 Bytes
test/python/snapshots/nanosp/test_near_fund_refuse_double_sign/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanosp/test_near_fund_refuse_double_sign/00003.png
Oops, something went wrong.
Binary file added
BIN
+357 Bytes
test/python/snapshots/nanosp/test_near_fund_refuse_double_sign/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_near_fund_refuse_double_sign/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_near_fund_refuse_double_sign/00006.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_near_fund_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanosp/test_near_fund_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_near_fund_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanosp/test_near_fund_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+404 Bytes
test/python/snapshots/nanosp/test_near_fund_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_near_fund_wrong_destination/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_near_fund_wrong_destination/00006.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_near_sell_refuse_double_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_near_sell_refuse_double_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+361 Bytes
test/python/snapshots/nanosp/test_near_sell_refuse_double_sign/00002.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanosp/test_near_sell_refuse_double_sign/00003.png
Oops, something went wrong.
Binary file added
BIN
+357 Bytes
test/python/snapshots/nanosp/test_near_sell_refuse_double_sign/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_near_sell_refuse_double_sign/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_near_sell_refuse_double_sign/00006.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_near_sell_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_near_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_near_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_near_sell_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanosp/test_near_sell_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+404 Bytes
test/python/snapshots/nanosp/test_near_sell_wrong_destination/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_near_sell_wrong_destination/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_near_sell_wrong_destination/00007.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_near_swap_refuse_double_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+361 Bytes
test/python/snapshots/nanosp/test_near_swap_refuse_double_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanosp/test_near_swap_refuse_double_sign/00002.png
Oops, something went wrong.
Binary file added
BIN
+357 Bytes
test/python/snapshots/nanosp/test_near_swap_refuse_double_sign/00003.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_near_swap_refuse_double_sign/00004.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_near_swap_refuse_double_sign/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.