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 pull request LedgerHQ#229 from LedgerHQ/cev/B2CA-1838_implement…
…-swap Initial cardano tests implementation
- Loading branch information
Showing
385 changed files
with
268 additions
and
19 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
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
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,141 @@ | ||
from enum import IntEnum | ||
|
||
from hashlib import sha512 | ||
from ecdsa.curves import Ed25519 | ||
from ecdsa.keys import VerifyingKey | ||
|
||
from ragger.backend.interface import BackendInterface | ||
from ragger.bip import pack_derivation_path, calculate_public_key_and_chaincode, CurveChoice | ||
from ragger.utils import create_currency_config | ||
|
||
|
||
ADA_CONF = create_currency_config("ADA", "Cardano ADA") | ||
|
||
ADA_BYRON_DERIVATION_PATH = "m/44'/1815'/0'/0/0" | ||
ADA_SHELLEY_DERIVATION_PATH = "m/1852'/1815'/0'/0/0" | ||
ADA_BYRON_PACKED_DERIVATION_PATH = pack_derivation_path(ADA_BYRON_DERIVATION_PATH) | ||
ADA_SHELLEY_PACKED_DERIVATION_PATH = pack_derivation_path(ADA_SHELLEY_DERIVATION_PATH) | ||
|
||
|
||
class Errors(IntEnum): | ||
SW_SWAP_CHECKING_FAIL = 0x6001 | ||
SW_SUCCESS = 0x9000 | ||
|
||
|
||
class CardanoClient: | ||
|
||
def __init__(self, backend: BackendInterface): | ||
self._backend = backend | ||
|
||
|
||
def _check_signature_validity(self, path: str, signature: bytes, data: bytes) -> None: | ||
"""Check the signature validity | ||
Args: | ||
path (str): The derivation path | ||
signature (bytes): The received signature | ||
data (bytes): The signed data | ||
""" | ||
|
||
ref_pk, _ = calculate_public_key_and_chaincode(CurveChoice.Ed25519Kholaw, path) | ||
pk: VerifyingKey = VerifyingKey.from_string(bytes.fromhex(ref_pk[2:]), curve=Ed25519) | ||
assert pk.verify(signature, data, sha512) | ||
|
||
|
||
# def perform_byron_sign_tx(self, path: str, destination: str, send_amount: int, send_fees: int) -> None: | ||
# """Send a Sign TX command to the Cardano app. | ||
# Based on Byron, address type THIRD_PARTY | ||
|
||
# Args: | ||
# path (str): Derivation path | ||
# destination (str): Destination address | ||
# send_amount (int): Amount to send | ||
# send_fees (int): Fees to pay | ||
|
||
# Returns: | ||
# Tuple[bytes, bytes]: Data Hash and the Signature | ||
# """ | ||
|
||
# dest_len = len(destination) // 2 | ||
# output_len = 2 + 4 + dest_len + len(send_amount) // 2 + 6 | ||
# signTx = { | ||
# # Based on ragger testsByron: Sign tx with third-party Byron mainnet output | ||
# "signTxInit": "d72101003c0000000000000000012d964a090201010101010101010103000000010000000100000000000000000000000000000000000000000000000000000001", | ||
# "signTxInputs": "d7210200241af8fa0b754ff99253d983894e63a2b09cbb56c833ba18c3384210163f63dcfc00000000", | ||
# "signTxOutputBasic": f"d7210330{output_len:02x}0001{dest_len:08x}{destination}{send_amount}000000000101", | ||
# "signTxOutputConfirm": "d721033300", | ||
# "signTxFees": f"d721040008{send_fees}", | ||
# "signTxTtl": "d721050008000000000000000a", | ||
# "signTxConfirm": "d7210a0000", | ||
# "signTxWitness": f"d7210f0015{pack_derivation_path(path).hex()}", | ||
# } | ||
|
||
# data: str = "" | ||
# signature: str = "" | ||
# for step, value in signTx.items(): | ||
# response = self._backend.exchange_raw(bytes.fromhex(value)) | ||
# assert response.status == Errors.SW_SUCCESS | ||
# if step == "signTxConfirm": | ||
# # Retrieve the data hash | ||
# data = response.data | ||
# elif step == "signTxWitness": | ||
# # Retrieve the signature | ||
# signature = response.data | ||
|
||
# self._check_signature_validity(path, signature, data) | ||
|
||
|
||
def perform_shelley_sign_tx(self, destination: str, send_amount: int, send_fees: int) -> None: | ||
"""Send a Sign TX command to the Cardano app. | ||
Based on Shelley, address type DEVICE_OWNED | ||
Args: | ||
destination (str): Destination address | ||
send_amount (int): Amount to send | ||
send_fees (int): Fees to pay | ||
Returns: | ||
Tuple[bytes, bytes]: Data Hash and the Signature | ||
""" | ||
|
||
if destination is None: | ||
raise ValueError(f"Invalid destination address: {destination}") | ||
|
||
witness_path1 = "m/1852'/1815'/2'/1/0" | ||
witness_path2 = "m/1852'/1815'/2'/2/0" | ||
dest_len = len(destination) // 2 | ||
output_len = 6 + dest_len + len(send_amount) // 2 + 6 | ||
signTx = { | ||
# Based on LL example output | ||
"getVersion": "d700000000", | ||
"deriveAddress": "d71101002d0001058000073c8000071780000002000000000000000222058000073c80000717800000020000000200000000", | ||
"signTxInit": "d72101003c0000000000000000012d964a090201010101010101010103000000010000000200000000000000010000000000000000000000000000000000000002", | ||
"signTxInputs": "d7210200247c50edd7d2b7891dc3c33fade1ea557ac748bf177af7088e622f1454b6f71d0d00000000", | ||
# Send To address (destination) | ||
"signTxOutputBasic1": f"d7210330{output_len:02x}0101{dest_len:08x}{destination}{send_amount}000000000101", | ||
"signTxOutputConfirm1": "d721033300", | ||
# Send From address | ||
"signTxOutputBasic2": "d72103303d01020001058000073c8000071780000002000000010000000122058000073c800007178000000200000002000000000000000000476009000000000101", | ||
"signTxOutputConfirm2": "d721033300", | ||
"signTxFees": f"d721040008{send_fees}", | ||
"signTxTtl": "d72105000800000000085f492b", | ||
"SignTxWithdrawals": "d72107001e0000000000004f1b00058000073c80000717800000020000000200000000", | ||
"signTxConfirm": "d7210a0000", | ||
"signTxWitness1": f"d7210f0015{pack_derivation_path(witness_path1).hex()}", | ||
"signTxWitness2": f"d7210f0015{pack_derivation_path(witness_path2).hex()}", | ||
} | ||
|
||
data = bytes() | ||
for step, value in signTx.items(): | ||
response = self._backend.exchange_raw(bytes.fromhex(value)) | ||
assert response.status == Errors.SW_SUCCESS | ||
if step == "signTxConfirm": | ||
# Retrieve the data hash | ||
data = response.data | ||
elif step.startswith("signTxWitness"): | ||
# Retrieve the signature | ||
signature = response.data | ||
# Verify the signature for the selected path | ||
witness_path = witness_path1 if step == "signTxWitness1" else witness_path2 | ||
self._check_signature_validity(witness_path, signature, data) | ||
|
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_cardano_shelley_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_cardano_shelley_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.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_fund_valid_1/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.5 KB
test/python/snapshots/flex/test_cardano_shelley_fund_valid_1/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.4 KB
test/python/snapshots/flex/test_cardano_shelley_fund_valid_1/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_cardano_shelley_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_cardano_shelley_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.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_fund_valid_2/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.2 KB
test/python/snapshots/flex/test_cardano_shelley_fund_valid_2/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.4 KB
test/python/snapshots/flex/test_cardano_shelley_fund_valid_2/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
+10.1 KB
...ython/snapshots/flex/test_cardano_shelley_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
...ython/snapshots/flex/test_cardano_shelley_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
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_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.5 KB
test/python/snapshots/flex/test_cardano_shelley_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.4 KB
test/python/snapshots/flex/test_cardano_shelley_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
+10.1 KB
.../snapshots/flex/test_cardano_shelley_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
.../snapshots/flex/test_cardano_shelley_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
+12.8 KB
...hon/snapshots/flex/test_cardano_shelley_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.5 KB
...hon/snapshots/flex/test_cardano_shelley_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.4 KB
...hon/snapshots/flex/test_cardano_shelley_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
+10.1 KB
.../python/snapshots/flex/test_cardano_shelley_fund_wrong_fees/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
.../python/snapshots/flex/test_cardano_shelley_fund_wrong_fees/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
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_fund_wrong_fees/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.5 KB
test/python/snapshots/flex/test_cardano_shelley_fund_wrong_fees/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.4 KB
test/python/snapshots/flex/test_cardano_shelley_fund_wrong_fees/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_cardano_shelley_sell_valid_1/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_1/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_1/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.3 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_1/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+7.17 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_1/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_1/review/00003.png
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_2/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_2/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_2/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.4 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_2/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+6.73 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_2/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_sell_valid_2/review/00003.png
Oops, something went wrong.
Binary file added
BIN
+10.1 KB
...ython/snapshots/flex/test_cardano_shelley_sell_wrong_amount/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
...ython/snapshots/flex/test_cardano_shelley_sell_wrong_amount/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
test/python/snapshots/flex/test_cardano_shelley_sell_wrong_amount/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.3 KB
test/python/snapshots/flex/test_cardano_shelley_sell_wrong_amount/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+7.17 KB
test/python/snapshots/flex/test_cardano_shelley_sell_wrong_amount/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_sell_wrong_amount/review/00003.png
Oops, something went wrong.
Binary file added
BIN
+10.1 KB
.../snapshots/flex/test_cardano_shelley_sell_wrong_destination/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
.../snapshots/flex/test_cardano_shelley_sell_wrong_destination/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
...hon/snapshots/flex/test_cardano_shelley_sell_wrong_destination/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.3 KB
...hon/snapshots/flex/test_cardano_shelley_sell_wrong_destination/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+7.17 KB
...hon/snapshots/flex/test_cardano_shelley_sell_wrong_destination/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
...hon/snapshots/flex/test_cardano_shelley_sell_wrong_destination/review/00003.png
Oops, something went wrong.
Binary file added
BIN
+10.1 KB
.../python/snapshots/flex/test_cardano_shelley_sell_wrong_fees/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
.../python/snapshots/flex/test_cardano_shelley_sell_wrong_fees/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
test/python/snapshots/flex/test_cardano_shelley_sell_wrong_fees/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.3 KB
test/python/snapshots/flex/test_cardano_shelley_sell_wrong_fees/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+7.17 KB
test/python/snapshots/flex/test_cardano_shelley_sell_wrong_fees/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_sell_wrong_fees/review/00003.png
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_1/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_1/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_1/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.7 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_1/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_1/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+6.21 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_2/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_2/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_2/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.5 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_2/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_swap_valid_2/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+10.1 KB
...ython/snapshots/flex/test_cardano_shelley_swap_wrong_amount/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
...ython/snapshots/flex/test_cardano_shelley_swap_wrong_amount/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_cardano_shelley_swap_wrong_amount/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.7 KB
test/python/snapshots/flex/test_cardano_shelley_swap_wrong_amount/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_swap_wrong_amount/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+10.1 KB
.../snapshots/flex/test_cardano_shelley_swap_wrong_destination/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
.../snapshots/flex/test_cardano_shelley_swap_wrong_destination/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
...hon/snapshots/flex/test_cardano_shelley_swap_wrong_destination/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.7 KB
...hon/snapshots/flex/test_cardano_shelley_swap_wrong_destination/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
...hon/snapshots/flex/test_cardano_shelley_swap_wrong_destination/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+10.1 KB
.../python/snapshots/flex/test_cardano_shelley_swap_wrong_fees/post_sign/00000.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
.../python/snapshots/flex/test_cardano_shelley_swap_wrong_fees/post_sign/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.3 KB
test/python/snapshots/flex/test_cardano_shelley_swap_wrong_fees/review/00000.png
Oops, something went wrong.
Binary file added
BIN
+15.7 KB
test/python/snapshots/flex/test_cardano_shelley_swap_wrong_fees/review/00001.png
Oops, something went wrong.
Binary file added
BIN
+12.8 KB
test/python/snapshots/flex/test_cardano_shelley_swap_wrong_fees/review/00002.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_1/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_1/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_1/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_1/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_1/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_1/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_1/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_2/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_2/00001.png
Oops, something went wrong.
Binary file added
BIN
+437 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_2/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_2/00003.png
Oops, something went wrong.
Binary file added
BIN
+384 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_2/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_2/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_valid_2/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_amount/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_amount/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_amount/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_amount/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_amount/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_amount/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_amount/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_destination/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_destination/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_fees/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_fees/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_fees/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_fees/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_fees/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_fees/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_fund_wrong_fees/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_1/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_1/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_1/00002.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_1/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_1/00004.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_1/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_1/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_1/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_2/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_2/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_2/00002.png
Oops, something went wrong.
Binary file added
BIN
+437 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_2/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_2/00004.png
Oops, something went wrong.
Binary file added
BIN
+384 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_2/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_2/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_valid_2/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_amount/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_amount/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_amount/00002.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_amount/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_amount/00004.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_amount/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_amount/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_amount/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_destination/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_destination/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_destination/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_fees/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_fees/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_fees/00002.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_fees/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_fees/00004.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_fees/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_fees/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_sell_wrong_fees/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_1/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_1/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_1/00002.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_1/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_1/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_1/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_1/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_2/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_2/00001.png
Oops, something went wrong.
Binary file added
BIN
+437 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_2/00002.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_2/00003.png
Oops, something went wrong.
Binary file added
BIN
+384 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_2/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_2/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_valid_2/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_amount/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_amount/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_amount/00002.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_amount/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_amount/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_amount/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_amount/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_destination/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_destination/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_fees/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_fees/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_fees/00002.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_fees/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_fees/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_fees/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanosp/test_cardano_shelley_swap_wrong_fees/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_1/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_1/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_1/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_1/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_1/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_1/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_1/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_2/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_2/00001.png
Oops, something went wrong.
Binary file added
BIN
+437 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_2/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_2/00003.png
Oops, something went wrong.
Binary file added
BIN
+384 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_2/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_2/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_valid_2/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_amount/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_amount/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_amount/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_amount/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_amount/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_amount/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_amount/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_destination/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_destination/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_fees/00000.png
Oops, something went wrong.
Binary file added
BIN
+351 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_fees/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_fees/00002.png
Oops, something went wrong.
Binary file added
BIN
+470 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_fees/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_fees/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_fees/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_fund_wrong_fees/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_1/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_1/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_1/00002.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_1/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_1/00004.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_1/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_1/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_1/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_2/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_2/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_2/00002.png
Oops, something went wrong.
Binary file added
BIN
+437 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_2/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_2/00004.png
Oops, something went wrong.
Binary file added
BIN
+384 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_2/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_2/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_valid_2/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_amount/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_amount/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_amount/00002.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_amount/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_amount/00004.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_amount/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_amount/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_amount/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_destination/00004.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_destination/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_destination/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_destination/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_fees/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_fees/00001.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_fees/00002.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_fees/00003.png
Oops, something went wrong.
Binary file added
BIN
+334 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_fees/00004.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_fees/00005.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_fees/00006.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_sell_wrong_fees/00007.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_1/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_1/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_1/00002.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_1/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_1/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_1/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_1/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_2/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_2/00001.png
Oops, something went wrong.
Binary file added
BIN
+437 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_2/00002.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_2/00003.png
Oops, something went wrong.
Binary file added
BIN
+384 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_2/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_2/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_valid_2/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_amount/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_amount/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_amount/00002.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_amount/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_amount/00004.png
Oops, something went wrong.
Binary file added
BIN
+472 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_amount/00005.png
Oops, something went wrong.
Binary file added
BIN
+393 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_amount/00006.png
Oops, something went wrong.
Binary file added
BIN
+414 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_destination/00000.png
Oops, something went wrong.
Binary file added
BIN
+494 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file added
BIN
+419 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_destination/00002.png
Oops, something went wrong.
Binary file added
BIN
+402 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_destination/00003.png
Oops, something went wrong.
Binary file added
BIN
+410 Bytes
test/python/snapshots/nanox/test_cardano_shelley_swap_wrong_destination/00004.png
Oops, something went wrong.
Oops, something went wrong.