-
Notifications
You must be signed in to change notification settings - Fork 16
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 #172 from LedgerHQ/develop
Release 3.3.4
- Loading branch information
Showing
624 changed files
with
53 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,40 @@ | ||
from ragger.utils import create_currency_config | ||
from typing import Optional | ||
import struct | ||
from ragger.bip import pack_derivation_path | ||
|
||
|
||
def get_sub_config(ticker: str, decimals: int, chain_id: Optional[int] = None) -> bytes: | ||
cfg = bytearray() | ||
cfg.append(len(ticker)) | ||
cfg += ticker.encode() | ||
cfg.append(decimals) | ||
if chain_id is not None: | ||
cfg += struct.pack(">Q", chain_id) | ||
return cfg | ||
|
||
|
||
def create_currency_config(main_ticker: str, | ||
application_name: str, | ||
sub_config: bytes = bytes()) -> bytes: | ||
cfg = bytearray() | ||
for elem in [main_ticker.encode(), application_name.encode(), sub_config]: | ||
cfg.append(len(elem)) | ||
cfg += elem | ||
return cfg | ||
|
||
|
||
ETH_PATH = "m/44'/60'/0'/0/0" | ||
ETC_PATH = "m/44'/61'/0'/0/0" | ||
|
||
ETH_CONF = create_currency_config("ETH", "Ethereum", ("ETH", 18)) | ||
ETH_PACKED_DERIVATION_PATH = pack_derivation_path(ETH_PATH) | ||
|
||
ETH_CONF = create_currency_config("ETH", "Ethereum", get_sub_config("ETH", 18)) | ||
ETH_PACKED_DERIVATION_PATH = pack_derivation_path(ETH_PATH) | ||
|
||
BSC_CONF = create_currency_config("BNB", "Binance Smart Chain", ("BNB", 18)) | ||
# Use dedicated app (clone) | ||
BSC_CONF_LEGACY = create_currency_config("BNB", "Binance Smart Chain", get_sub_config("BNB", 18)) | ||
# Use Ethereum app | ||
BSC_CONF = create_currency_config("BNB", "Ethereum", get_sub_config("BNB", 18, 56)) | ||
BSC_PACKED_DERIVATION_PATH = pack_derivation_path(ETH_PATH) | ||
|
||
ETC_PATH = "m/44'/60'/0'/0/0" | ||
|
||
ETC_CONF = create_currency_config("ETC", "Ethereum Classic", ("ETC", 18)) | ||
ETC_PACKED_DERIVATION_PATH = pack_derivation_path("m/44'/61'/0'/0/0") | ||
ETC_CONF = create_currency_config("ETC", "Ethereum Classic", get_sub_config("ETC", 18)) | ||
ETC_PACKED_DERIVATION_PATH = pack_derivation_path(ETC_PATH) |
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
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_valid_1/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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_valid_1/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 modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_valid_1/00003.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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_valid_1/00006.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 modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_valid_2/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 modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_valid_2/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 modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_valid_2/00003.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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_valid_2/00006.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 modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_amount/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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_amount/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 modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_amount/00003.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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_amount/00006.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 modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_destination/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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_destination/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 modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_destination/00003.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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_destination/00006.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 modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_fees/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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_fees/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 modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_fees/00003.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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_fund_wrong_fees/00006.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 modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_sell_valid_1/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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_valid_1/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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_valid_1/00006.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 modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_sell_valid_2/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 modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_valid_2/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 modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_sell_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bitcoin_sell_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_wrong_fees/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_sell_wrong_fees/00006.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_valid_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_valid_2/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_wrong_amount/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_wrong_destination/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bitcoin_swap_wrong_fees/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_fund_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_fund_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bsc_fund_valid_1/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_fund_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_fund_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_fund_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bsc_fund_valid_2/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_fund_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_amount/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_destination/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_fees/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_fees/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_fund_wrong_fees/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_sell_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_sell_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_sell_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_sell_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_sell_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_sell_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_sell_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_sell_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_sell_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_sell_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_sell_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_sell_wrong_fees/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_sell_wrong_fees/00006.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_swap_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_swap_valid_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_bsc_swap_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_swap_valid_2/00005.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_swap_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_swap_wrong_amount/00005.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_swap_wrong_destination/00005.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_swap_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_bsc_swap_wrong_fees/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_currency_normalization_fund/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_currency_normalization_fund/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_currency_normalization_fund/00003.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_currency_normalization_fund/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_currency_normalization_fund/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_valid_1/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_fund_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_fund_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_valid_2/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_fund_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_amount/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_destination/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_fees/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_fees/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_fund_wrong_fees/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_sell_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_sell_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_sell_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_sell_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_sell_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_sell_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_sell_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_sell_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_sell_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_sell_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_sell_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_sell_wrong_fees/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_sell_wrong_fees/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_swap_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_swap_valid_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_swap_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_swap_valid_2/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_swap_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_swap_wrong_amount/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_swap_wrong_destination/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ethereum_swap_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ethereum_swap_wrong_fees/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_valid_1/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_fund_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_fund_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_valid_2/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_fund_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_wrong_amount/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_fund_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_fund_wrong_destination/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_fund_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_polkadot_sell_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_sell_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_sell_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_polkadot_sell_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_sell_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_sell_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_polkadot_sell_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_sell_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_sell_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_polkadot_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_sell_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_swap_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_swap_valid_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_swap_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_swap_valid_2/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_swap_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_swap_wrong_amount/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_polkadot_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_polkadot_swap_wrong_destination/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_valid_1/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ripple_swap_valid_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
test/python/snapshots/nanosp/test_ripple_swap_valid_2/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ripple_swap_valid_2/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_amount/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_amount/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_destination/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_destination/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_fees/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_fees/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_memo/00001.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_memo/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_ripple_swap_wrong_memo/00005.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_solana_fund_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_fund_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(98%)
test/python/snapshots/nanosp/test_solana_fund_valid_1/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_fund_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_solana_fund_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_fund_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(98%)
test/python/snapshots/nanosp/test_solana_fund_valid_2/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_fund_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_solana_fund_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_fund_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(98%)
test/python/snapshots/nanosp/test_solana_fund_wrong_amount/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_fund_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_solana_fund_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_fund_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(98%)
test/python/snapshots/nanosp/test_solana_fund_wrong_destination/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_fund_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_solana_sell_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_sell_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_sell_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_solana_sell_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_sell_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_sell_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_solana_sell_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_sell_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_sell_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_solana_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_sell_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_swap_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_swap_valid_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_swap_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_swap_valid_2/00005.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_swap_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_swap_wrong_amount/00005.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
test/python/snapshots/nanosp/test_solana_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_solana_swap_wrong_destination/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_fund_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_valid_1/00003.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_valid_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_fund_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_valid_2/00003.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_valid_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_amount/00003.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_amount/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_destination/00003.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_destination/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_fees/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_fees/00003.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_fees/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_fees/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_memo/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_memo/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_memo/00003.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_memo/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_fund_wrong_memo/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_sell_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_sell_valid_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_valid_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_valid_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_sell_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_valid_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_valid_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_valid_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_amount/00002.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_amount/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_amount/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_destination/00002.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_destination/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_destination/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_fees/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_fees/00002.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_fees/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_fees/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_memo/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_memo/00002.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_memo/00004.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_sell_wrong_memo/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_swap_valid_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_swap_valid_1/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_swap_valid_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_swap_valid_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_swap_valid_2/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_swap_valid_2/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_swap_wrong_amount/00001.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_swap_wrong_amount/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_swap_wrong_amount/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
test/python/snapshots/nanosp/test_stellar_swap_wrong_destination/00001.png
Oops, something went wrong.
Binary file modified
BIN
-5 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_swap_wrong_destination/00003.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(99%)
test/python/snapshots/nanosp/test_stellar_swap_wrong_destination/00005.png
Oops, something went wrong.
Oops, something went wrong.