-
Notifications
You must be signed in to change notification settings - Fork 1
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 #34 from blooo-io/ci/LDG-633-sync-repo-with-ledger
feat: updated ethereum sdk + snapshots
- Loading branch information
Showing
241 changed files
with
210 additions
and
180 deletions.
There are no files selected for viewing
Submodule ethereum-plugin-sdk
updated
39 files
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 |
---|---|---|
@@ -1,87 +1,48 @@ | ||
#!/bin/bash | ||
|
||
# FILL THESE WITH YOUR OWN SDKs PATHS and APP-ETHEREUM's ROOT | ||
NANOS_SDK=$NANOS_SDK | ||
NANOX_SDK=$NANOX_SDK | ||
NANOSP_SDK=$NANOSP_SDK | ||
APP_ETHEREUM=${APP_ETHEREUM:-"/app/app-ethereum"} | ||
|
||
set -e | ||
|
||
build_plugin() { | ||
# arguments: <SDK letter> | ||
echo "** Building app-plugin for Nano $1..." | ||
local target="$(realpath './elfs/')/plugin_nano${1,,}.elf" | ||
if [ "$1" == "S" ]; | ||
then | ||
local sdk=$NANOS_SDK | ||
elif [ "$1" == "SP" ]; | ||
then | ||
local sdk=$NANOSP_SDK | ||
elif [ "$1" == "X" ]; | ||
then | ||
local sdk=$NANOX_SDK | ||
else | ||
echo "Unknown SDK '$1'" | ||
exit 1 | ||
fi | ||
cd .. | ||
make clean BOLOS_SDK="$sdk" | ||
make -j DEBUG=1 BOLOS_SDK="$sdk" | ||
cp bin/app.elf "$target" | ||
cd - | ||
#NANOS_SDK= | ||
#NANOX_SDK= | ||
#NANOSP_SDK= | ||
#FLEX_SDK= | ||
#STAX_SDK= | ||
APP_ETHEREUM=/plugin_dev/app-ethereum | ||
|
||
# Create elfs folder if it doesn't exist | ||
mkdir -p elfs | ||
|
||
# Function to build both plugin and ethereum apps for a specific device | ||
build_device_elfs() { | ||
local device=$1 | ||
local sdk_var="${device}_SDK" | ||
|
||
echo "*Building elfs for ${device}..." | ||
export BOLOS_SDK="${!sdk_var}" | ||
|
||
# Build plugin | ||
echo "**Building app-paraswap for ${device}..." | ||
make clean | ||
make -j DEBUG=1 | ||
cp bin/app.elf "tests/elfs/plugin_${device,,}.elf" | ||
|
||
# Build ethereum app | ||
echo "**Building app-ethereum for ${device}..." | ||
cd "$APP_ETHEREUM" || exit | ||
make clean BOLOS_SDK="${!sdk_var}" | ||
make -j DEBUG=1 BOLOS_SDK="${!sdk_var}" CHAIN=ethereum BYPASS_SIGNATURES=1 ALLOW_DATA=1 | ||
cd - || exit | ||
cp "${APP_ETHEREUM}/bin/app.elf" "tests/elfs/ethereum_${device,,}.elf" | ||
} | ||
|
||
build_ethereum() { | ||
# arguments: <SDK letter> | ||
echo "** Building app-ethereum for Nano $1..." | ||
local target="$(realpath './elfs/')/ethereum_nano${1,,}.elf" | ||
if [ "$1" == "S" ]; | ||
then | ||
local sdk=$NANOS_SDK | ||
elif [ "$1" == "SP" ]; | ||
then | ||
local sdk=$NANOSP_SDK | ||
elif [ "$1" == "X" ]; | ||
then | ||
local sdk="$NANOX_SDK" | ||
else | ||
echo "Unknown SDK '$1'" | ||
exit 1 | ||
fi | ||
cd "$APP_ETHEREUM" | ||
make clean BOLOS_SDK="$sdk" | ||
make -j DEBUG=1 BYPASS_SIGNATURES=1 BOLOS_SDK="$sdk" CHAIN=ethereum | ||
cp bin/app.elf "$target" | ||
cd - | ||
} | ||
|
||
|
||
main() { | ||
# create elfs folder if it doesn't exist | ||
mkdir -p elfs | ||
# Move to repo's root to build apps | ||
cd .. | ||
|
||
if [ $# -ne 0 ]; | ||
then | ||
test -d "$1" || | ||
(echo "Provided argument '$1' is expected to be the app-ethereum repository path, but is not a directory" && exit 1); | ||
APP_ETHEREUM="$1" | ||
fi | ||
|
||
echo "* Building elfs for Nano S..." | ||
build_plugin "S" | ||
build_ethereum "S" | ||
|
||
echo "* Building elfs for Nano S Plus..." | ||
build_plugin "SP" | ||
build_ethereum "SP" | ||
|
||
echo "* Building elfs for Nano X..." | ||
build_plugin "X" | ||
build_ethereum "X" | ||
|
||
echo "* Done" | ||
} | ||
# List of supported devices | ||
DEVICES=("NANOS" "NANOX" "NANOSP" "FLEX" "STAX") | ||
|
||
# Build for each device | ||
for device in "${DEVICES[@]}"; do | ||
build_device_elfs "$device" | ||
done | ||
|
||
main "$@" | ||
echo "done" |
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
+2 Bytes
(100%)
tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00005.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%)
tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00007.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%)
tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/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%)
tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00008.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%)
tests/snapshots/arbitrum_nanox_arbitrum_angle_deposit/00005.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%)
tests/snapshots/arbitrum_nanox_arbitrum_angle_deposit/00007.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%)
tests/snapshots/arbitrum_nanox_arbitrum_angle_withdraw/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%)
tests/snapshots/arbitrum_nanox_arbitrum_angle_withdraw/00008.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
(100%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_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
+4 Bytes
(100%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00004.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%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_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
+4 Bytes
(100%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00004.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%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_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
-3 Bytes
(100%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_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
+4 Bytes
(100%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00004.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%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_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
+4 Bytes
(100%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00004.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%)
tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_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%)
tests/snapshots/avalanche_nanosp_avalanche_request_unlock/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
+4 Bytes
(100%)
tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00004.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%)
tests/snapshots/avalanche_nanosp_avalanche_request_unlock/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
-3 Bytes
(100%)
tests/snapshots/avalanche_nanosp_avalanche_submit/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
+4 Bytes
(100%)
tests/snapshots/avalanche_nanosp_avalanche_submit/00004.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-3 Bytes
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_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
+4 Bytes
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_overdue_shares_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_overdue_shares_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_overdue_shares_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_overdue_shares_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/avalanche_nanox_avalanche_redeem_overdue_shares_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/avalanche_nanox_avalanche_request_unlock/00001.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
tests/snapshots/avalanche_nanox_avalanche_request_unlock/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/avalanche_nanox_avalanche_request_unlock/00006.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00007.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00005.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-8 Bytes
(98%)
tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(98%)
tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00008.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(99%)
tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_angle_deposit/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_angle_deposit/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_angle_withdraw/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_angle_withdraw/00007.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_buy_voucher/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_buy_voucher/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_claim_self_apecoin/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_claim_self_apecoin/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_claim_self_apecoin/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_claim_tokens/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_claim_tokens/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_comet_supply/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_comet_supply/00005.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_deposit_self_apecoin/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_deposit_self_apecoin/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_deposit_self_apecoin/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_grt_delegate/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_grt_delegate/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_grt_undelegate/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_grt_undelegate/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_grt_withdraw_delegated/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_grt_withdraw_delegated/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-8 Bytes
(98%)
tests/snapshots/ethereum_nanox_ethereum_lido_claim_withdrawals_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
-10 Bytes
(98%)
tests/snapshots/ethereum_nanox_ethereum_lido_claim_withdrawals_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_claim_withdrawals_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_claim_withdrawals_1/00008.png
Oops, something went wrong.
Binary file modified
BIN
-4 Bytes
(99%)
tests/snapshots/ethereum_nanox_ethereum_lido_claim_withdrawals_2/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_claim_withdrawals_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_claim_withdrawals_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_request_withdrawals_1/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_request_withdrawals_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_request_withdrawals_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+0 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_request_withdrawals_2/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_request_withdrawals_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_lido_request_withdrawals_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_paraspace_deposit/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_paraspace_deposit/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_paraspace_withdraw/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_paraspace_withdraw/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_request_withdraw/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_request_withdraw/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_request_withdraw/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_sell_voucher_new/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_sell_voucher_new/00005.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_submit_matic_lido/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_submit_matic_lido/00006.png
Oops, something went wrong.
Binary file modified
BIN
-1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_unstake_claim_tokens_new/00001.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_unstake_claim_tokens_new/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_unstake_claim_tokens_new/00005.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_withdraw_rewards/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_withdraw_rewards/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_withdraw_rewards/00005.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/ethereum_nanox_ethereum_withdraw_self_apecoin/00003.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/ethereum_nanox_ethereum_withdraw_self_apecoin/00005.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00007.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00007.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
tests/snapshots/fantom_nanox_fantom_yearn_vault_withdraw_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanox_fantom_yearn_vault_withdraw_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanox_fantom_yearn_vault_withdraw_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanox_fantom_yearn_vault_withdraw_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanox_fantom_yearn_vault_withdraw_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanox_fantom_yearn_vault_withdraw_3/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanox_fantom_yearn_vault_withdraw_3/00007.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
tests/snapshots/fantom_nanox_yearn_vault_deposit_1/00002.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanox_yearn_vault_deposit_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanox_yearn_vault_deposit_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanox_yearn_vault_deposit_2/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanox_yearn_vault_deposit_2/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/fantom_nanox_yearn_vault_deposit_3/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/fantom_nanox_yearn_vault_deposit_3/00007.png
Oops, something went wrong.
Binary file modified
BIN
-30 Bytes
(92%)
tests/snapshots/polygon_nanos_polygon_aave_v3_supply/00009.png
Oops, something went wrong.
Binary file modified
BIN
-30 Bytes
(92%)
tests/snapshots/polygon_nanos_polygon_aave_v3_withdraw/00007.png
Oops, something went wrong.
Binary file modified
BIN
-30 Bytes
(92%)
tests/snapshots/polygon_nanos_polygon_comet_claim/00009.png
Oops, something went wrong.
Binary file modified
BIN
-30 Bytes
(92%)
tests/snapshots/polygon_nanos_polygon_comet_withdraw/00004.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(92%)
tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00007.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(92%)
tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00007.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/snapshots/polygon_nanosp_polygon_comet_claim/00003.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(92%)
tests/snapshots/polygon_nanosp_polygon_comet_claim/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/polygon_nanosp_polygon_comet_claim/00007.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(92%)
tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00006.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(92%)
tests/snapshots/polygon_nanox_polygon_aave_v3_supply/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/polygon_nanox_polygon_aave_v3_supply/00007.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(92%)
tests/snapshots/polygon_nanox_polygon_aave_v3_withdraw/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/polygon_nanox_polygon_aave_v3_withdraw/00007.png
Oops, something went wrong.
Binary file modified
BIN
-2 Bytes
(100%)
tests/snapshots/polygon_nanox_polygon_comet_claim/00003.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(92%)
tests/snapshots/polygon_nanox_polygon_comet_claim/00005.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(92%)
tests/snapshots/polygon_nanox_polygon_comet_withdraw/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/polygon_nanox_polygon_comet_withdraw/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00007.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00003.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00007.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/tomochain_nanox_tomochain_vic_resign_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/tomochain_nanox_tomochain_vic_resign_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/tomochain_nanox_tomochain_vic_unvote_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/tomochain_nanox_tomochain_vic_unvote_1/00007.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/tomochain_nanox_tomochain_vic_vote_1/00004.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/tomochain_nanox_tomochain_vic_vote_1/00006.png
Oops, something went wrong.
Binary file modified
BIN
+3 Bytes
(100%)
tests/snapshots/tomochain_nanox_tomochain_vic_withdraw_1/00003.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
tests/snapshots/tomochain_nanox_tomochain_vic_withdraw_1/00005.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
tests/snapshots/tomochain_nanox_tomochain_vic_withdraw_1/00007.png
Oops, something went wrong.
Oops, something went wrong.