diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..98b720f --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +# Checklist + +- [ ] App update process has been followed +- [ ] Target branch is `develop` +- [ ] Application version has been bumped + + diff --git a/.github/workflows/check_sdk.yml b/.github/workflows/check_sdk.yml index 306a85e..511a398 100644 --- a/.github/workflows/check_sdk.yml +++ b/.github/workflows/check_sdk.yml @@ -1,3 +1,4 @@ +--- name: Check SDK submodule version on: @@ -5,36 +6,11 @@ on: push: branches: - master + - main - develop pull_request: jobs: job_check_SDK: name: Check Ethereum plugin SDK submodule is up-to-date - runs-on: ubuntu-latest - steps: - - name: Clone plugin - uses: actions/checkout@v3 - with: - submodules: recursive - - name: Clone SDK - uses: actions/checkout@v3 - with: - repository: LedgerHQ/ethereum-plugin-sdk - path: plugin-sdk - ref: ${{ github.base_ref || github.ref_name }} - - name: Comparing the SDK hash values - run: | - git config --global --add safe.directory "$GITHUB_WORKSPACE" - REPO_SDK_HASH=$(git submodule status | grep sdk | cut -d ' ' -f2) - echo "SDK submodule hash: ${REPO_SDK_HASH} (checked out from '${{ github.base_ref || github.ref_name }}')" - CURRENT_SDK_HASH=$(cd ./plugin-sdk/ && git rev-parse HEAD) - echo "SDK submodule hash: ${CURRENT_SDK_HASH}" - if [ ${REPO_SDK_HASH} = ${CURRENT_SDK_HASH} ] - then - echo "SDK versions match!" - exit 0 - else - echo "SDK versions mismatch!" - exit 1 - fi \ No newline at end of file + uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_check_ethereum_sdk.yml@v1 \ No newline at end of file diff --git a/.github/workflows/lint-workflow.yml b/.github/workflows/lint-workflow.yml index 5b79110..71e57a1 100644 --- a/.github/workflows/lint-workflow.yml +++ b/.github/workflows/lint-workflow.yml @@ -5,11 +5,9 @@ on: push: branches: - main + - master - develop pull_request: - branches: - - main - - develop jobs: job_lint: diff --git a/.gitignore b/.gitignore index f41acf7..34cc4e7 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ build # Editors .idea/ +.vscode # Python *.pyc[cod] diff --git a/Makefile b/Makefile index 42da5ad..7c7e24b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # **************************************************************************** -# Ledger App Boilerplate +# Ledger Ethereum Plugin Boilerplate # (c) 2023 Ledger SAS. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,127 +15,12 @@ # limitations under the License. # **************************************************************************** -ifeq ($(BOLOS_SDK),) -$(error Environment variable BOLOS_SDK is not set) -endif - -include $(BOLOS_SDK)/Makefile.defines - -######################################## -# Mandatory configuration # -######################################## # Application name APPNAME = "StakeKit" # Application version APPVERSION_M = 1 -APPVERSION_N = 0 -APPVERSION_P = 1 -APPVERSION = "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)" - -# Initialize plugin SDK submodule if needed -ifneq ($(shell git submodule status | grep '^[-+]'),) -$(info INFO: Need to reinitialize git submodules) -$(shell git submodule update --init) -endif - -ifeq ($(ETHEREUM_PLUGIN_SDK),) -ETHEREUM_PLUGIN_SDK=ethereum-plugin-sdk -endif - -# Application source files -APP_SOURCE_PATH += src $(ETHEREUM_PLUGIN_SDK) - -# Application icons following guidelines: -# https://developers.ledger.com/docs/embedded-app/design-requirements/#device-icon -ICON_ID = $(shell echo -n "$(APPNAME)" | tr " " "_" | tr "[:upper:]" "[:lower:]") -ICON_NANOS = icons/nanos_app_$(ICON_ID).gif -ICON_NANOX = icons/nanox_app_$(ICON_ID).gif -ICON_NANOSP = $(ICON_NANOX) -ICON_STAX = icons/stax_app_$(ICON_ID).gif - -ifeq ($(TARGET_NAME),TARGET_STAX) - DEFINES += ICONGLYPH=C_stax_$(ICON_ID)_64px - DEFINES += ICONBITMAP=C_stax_$(ICON_ID)_64px_bitmap -endif - -# Application allowed derivation curves. -# Possibles curves are: secp256k1, secp256r1, ed25519 and bls12381g1 -# If your app needs it, you can specify multiple curves by using: -# `CURVE_APP_LOAD_PARAMS = ` -CURVE_APP_LOAD_PARAMS = secp256k1 - -# Application allowed derivation paths. -# You should request a specific path for your app. -# This serve as an isolation mechanism. -# Most application will have to request a path according to the BIP-0044 -# and SLIP-0044 standards. -# If your app needs it, you can specify multiple path by using: -# `PATH_APP_LOAD_PARAMS = "44'/1'" "45'/1'"` -PATH_APP_LOAD_PARAMS = "44'/60'" # purpose=coin(44) / coin_type=Testnet(1) - -# Setting to allow building variant applications -# - is the name of the parameter which should be set -# to specify the variant that should be build. -# - a list of variant that can be build using this app code. -# * It must at least contains one value. -# * Values can be the app ticker or anything else but should be unique. -VARIANT_PARAM = COIN -VARIANT_VALUES = stakekit - -# Enabling DEBUG flag will enable PRINTF and disable optimizations -DEBUG := 0 -DISABLE_DEBUG_LEDGER_ASSERT = 1 -DISABLE_DEBUG_THROW = 1 -ifneq ($(DEBUG),0) - ifneq ($(TARGET_NAME),TARGET_NANOS) - DEFINES += HAVE_PRINTF PRINTF=mcu_usb_printf - else - DEFINES += HAVE_PRINTF PRINTF=screen_printf - endif -else - DEFINES += PRINTF\(...\)= -endif - -######################################## -# Application custom permissions # -######################################## -# See SDK `include/appflags.h` for the purpose of each permission -#HAVE_APPLICATION_FLAG_DERIVE_MASTER = 1 -#HAVE_APPLICATION_FLAG_GLOBAL_PIN = 1 -#HAVE_APPLICATION_FLAG_BOLOS_SETTINGS = 1 -HAVE_APPLICATION_FLAG_LIBRARY = 1 - -######################################## -# Application communication interfaces # -######################################## -#ENABLE_BLUETOOTH = 1 -#ENABLE_NFC = 1 - -######################################## -# NBGL custom features # -######################################## -#ENABLE_NBGL_QRCODE = 1 -#ENABLE_NBGL_KEYBOARD = 1 -#ENABLE_NBGL_KEYPAD = 1 - -######################################## -# Features disablers # -######################################## -# These advanced settings allow to disable some feature that are by -# default enabled in the SDK `Makefile.standard_app`. - -DISABLE_STANDARD_APP_FILES = 1 - -# To allow custom size declaration -#DISABLE_DEFAULT_IO_SEPROXY_BUFFER_SIZE = 1 - -# Will set all the following disablers -#DISABLE_STANDARD_APP_DEFINES = 1 - -DISABLE_STANDARD_SNPRINTF = 1 -#DISABLE_STANDARD_USB = 1 -DISABLE_STANDARD_WEBUSB = 1 -DISABLE_STANDARD_BAGL_UX_FLOW = 1 +APPVERSION_N = 1 +APPVERSION_P = 0 -include $(BOLOS_SDK)/Makefile.standard_app \ No newline at end of file +include ethereum-plugin-sdk/standard_plugin.mk diff --git a/glyphs/stax_stakekit_64px.gif b/glyphs/stax_stakekit_64px.gif new file mode 100644 index 0000000..9be6f90 Binary files /dev/null and b/glyphs/stax_stakekit_64px.gif differ diff --git a/src/main.c b/src/main.c deleted file mode 100644 index 23ac0da..0000000 --- a/src/main.c +++ /dev/null @@ -1,142 +0,0 @@ -/******************************************************************************* - * Ethereum 2 Deposit Application - * (c) 2020 Ledger - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - ********************************************************************************/ - -#include -#include -#include - -#include "os.h" -#include "cx.h" - -#include "glyphs.h" - -#include "stakekit_plugin.h" - -void dispatch_plugin_calls(int message, void *parameters) { - PRINTF("Handling message %d\n", message); - switch (message) { - case ETH_PLUGIN_INIT_CONTRACT: - handle_init_contract(parameters); - break; - case ETH_PLUGIN_PROVIDE_PARAMETER: - handle_provide_parameter(parameters); - break; - case ETH_PLUGIN_FINALIZE: - handle_finalize(parameters); - break; - case ETH_PLUGIN_PROVIDE_INFO: - handle_provide_token(parameters); - break; - case ETH_PLUGIN_QUERY_CONTRACT_ID: - handle_query_contract_id(parameters); - break; - case ETH_PLUGIN_QUERY_CONTRACT_UI: - handle_query_contract_ui(parameters); - break; - default: - PRINTF("Unhandled message %d\n", message); - break; - } -} - -void handle_query_ui_exception(unsigned int *args) { - switch (args[0]) { - case ETH_PLUGIN_QUERY_CONTRACT_UI: - ((ethQueryContractUI_t *) args[1])->result = ETH_PLUGIN_RESULT_ERROR; - break; - default: - break; - } -} - -// Calls the ethereum app. -void call_app_ethereum(void) { - unsigned int libcall_params[5]; - libcall_params[0] = (unsigned int) "Ethereum"; - libcall_params[1] = 0x100; - libcall_params[2] = RUN_APPLICATION; - libcall_params[3] = (unsigned int) NULL; -#ifdef HAVE_NBGL - caller_app_t capp; - const char name[] = APPNAME; - nbgl_icon_details_t icon_details; - uint8_t bitmap[sizeof(ICONBITMAP)]; - - memcpy(&icon_details, &ICONGLYPH, sizeof(ICONGLYPH)); - memcpy(&bitmap, &ICONBITMAP, sizeof(bitmap)); - icon_details.bitmap = (const uint8_t *) bitmap; - capp.name = (const char *) name; - capp.icon = &icon_details; - libcall_params[4] = (unsigned int) &capp; -#else - libcall_params[4] = (unsigned int) NULL; -#endif - os_lib_call((unsigned int *) &libcall_params); -} - -// Weird low-level black magic. No need to edit this. -__attribute__((section(".boot"))) int main(int arg0) { - // Exit critical section - __asm volatile("cpsie i"); - - // Ensure exception will work as planned - os_boot(); - - // Try catch block. Please read the docs for more information on how to use those! - BEGIN_TRY { - TRY { - // Low-level black magic. - check_api_level(CX_COMPAT_APILEVEL); - - // Check if we are called from the dashboard. - if (!arg0) { - // Called from dashboard, launch Ethereum app - call_app_ethereum(); - return 0; - } else { - // Not called from dashboard: called from the ethereum app! - const unsigned int *args = (const unsigned int *) arg0; - - // If `ETH_PLUGIN_CHECK_PRESENCE` is set, this means the caller is just trying to - // know whether this app exists or not. We can skip `dispatch_plugin_calls`. - if (args[0] != ETH_PLUGIN_CHECK_PRESENCE) { - dispatch_plugin_calls(args[0], (void *) args[1]); - } - } - } - CATCH_OTHER(e) { - switch (e) { - // These exceptions are only generated on handle_query_contract_ui() - case 0x6502: - case EXCEPTION_OVERFLOW: - handle_query_ui_exception((unsigned int *) arg0); - break; - default: - break; - } - PRINTF("Exception 0x%x caught\n", e); - } - FINALLY { - // Call `os_lib_end`, go back to the ethereum app. - os_lib_end(); - } - } - END_TRY; - - // Will not get reached. - return 0; -} diff --git a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00001.png b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00001.png index ff41955..3e25831 100644 Binary files a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00001.png and b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00001.png differ diff --git a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00002.png b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00002.png index 22b404c..5ed7ce7 100644 Binary files a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00002.png and b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00002.png differ diff --git a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00005.png b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00005.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00005.png and b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00005.png differ diff --git a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00007.png b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00007.png and b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_deposit/00007.png differ diff --git a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00001.png b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00001.png and b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00001.png differ diff --git a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00006.png b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00006.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00006.png and b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00006.png differ diff --git a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00008.png b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00008.png index a58590b..6578872 100644 Binary files a/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00008.png and b/tests/snapshots/arbitrum_nanosp_arbitrum_angle_withdraw/00008.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00001.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00001.png index 44a5f69..75895b6 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00001.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00001.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00002.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00002.png index bed6564..755ee69 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00002.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00002.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00004.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00004.png index 7941dda..c5bb0e6 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00004.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00004.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00006.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00006.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_1/00006.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00001.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00001.png index 44a5f69..75895b6 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00001.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00001.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00004.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00004.png index 7941dda..c5bb0e6 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00004.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00004.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00006.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00006.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_2/00006.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00001.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00001.png index 108c521..caea37e 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00001.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00001.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00002.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00002.png index bed6564..755ee69 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00002.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00002.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00004.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00004.png index 7941dda..c5bb0e6 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00004.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00004.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00006.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00006.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_1/00006.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00001.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00001.png index 108c521..caea37e 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00001.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00001.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00004.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00004.png index 7941dda..c5bb0e6 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00004.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00004.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00006.png b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00006.png and b/tests/snapshots/avalanche_nanosp_avalanche_redeem_overdue_shares_2/00006.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00001.png b/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00001.png index 5872f9d..6f0ffa2 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00001.png and b/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00001.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00002.png b/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00002.png index 3bc2a86..55403be 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00002.png and b/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00002.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00004.png b/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00004.png index 7941dda..c5bb0e6 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00004.png and b/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00004.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00006.png b/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00006.png and b/tests/snapshots/avalanche_nanosp_avalanche_request_unlock/00006.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_submit/00001.png b/tests/snapshots/avalanche_nanosp_avalanche_submit/00001.png index 52062ce..768ca07 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_submit/00001.png and b/tests/snapshots/avalanche_nanosp_avalanche_submit/00001.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_submit/00002.png b/tests/snapshots/avalanche_nanosp_avalanche_submit/00002.png index bed6564..755ee69 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_submit/00002.png and b/tests/snapshots/avalanche_nanosp_avalanche_submit/00002.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_submit/00004.png b/tests/snapshots/avalanche_nanosp_avalanche_submit/00004.png index 7941dda..c5bb0e6 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_submit/00004.png and b/tests/snapshots/avalanche_nanosp_avalanche_submit/00004.png differ diff --git a/tests/snapshots/avalanche_nanosp_avalanche_submit/00006.png b/tests/snapshots/avalanche_nanosp_avalanche_submit/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/avalanche_nanosp_avalanche_submit/00006.png and b/tests/snapshots/avalanche_nanosp_avalanche_submit/00006.png differ diff --git a/tests/snapshots/bsc_nanosp_bsc_transfer_out/00001.png b/tests/snapshots/bsc_nanosp_bsc_transfer_out/00001.png index cbc291f..fa96296 100644 Binary files a/tests/snapshots/bsc_nanosp_bsc_transfer_out/00001.png and b/tests/snapshots/bsc_nanosp_bsc_transfer_out/00001.png differ diff --git a/tests/snapshots/bsc_nanosp_bsc_transfer_out/00002.png b/tests/snapshots/bsc_nanosp_bsc_transfer_out/00002.png index 443729e..3c7446a 100644 Binary files a/tests/snapshots/bsc_nanosp_bsc_transfer_out/00002.png and b/tests/snapshots/bsc_nanosp_bsc_transfer_out/00002.png differ diff --git a/tests/snapshots/bsc_nanosp_bsc_transfer_out/00005.png b/tests/snapshots/bsc_nanosp_bsc_transfer_out/00005.png index 3af6333..02dee0e 100644 Binary files a/tests/snapshots/bsc_nanosp_bsc_transfer_out/00005.png and b/tests/snapshots/bsc_nanosp_bsc_transfer_out/00005.png differ diff --git a/tests/snapshots/bsc_nanosp_bsc_transfer_out/00007.png b/tests/snapshots/bsc_nanosp_bsc_transfer_out/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/bsc_nanosp_bsc_transfer_out/00007.png and b/tests/snapshots/bsc_nanosp_bsc_transfer_out/00007.png differ diff --git a/tests/snapshots/celo_nanosp_celo_create_account/00001.png b/tests/snapshots/celo_nanosp_celo_create_account/00001.png index 5e4387b..bee8d6f 100644 Binary files a/tests/snapshots/celo_nanosp_celo_create_account/00001.png and b/tests/snapshots/celo_nanosp_celo_create_account/00001.png differ diff --git a/tests/snapshots/celo_nanosp_celo_create_account/00002.png b/tests/snapshots/celo_nanosp_celo_create_account/00002.png index e08a75f..edb86c4 100644 Binary files a/tests/snapshots/celo_nanosp_celo_create_account/00002.png and b/tests/snapshots/celo_nanosp_celo_create_account/00002.png differ diff --git a/tests/snapshots/celo_nanosp_celo_create_account/00004.png b/tests/snapshots/celo_nanosp_celo_create_account/00004.png index 9cdf82b..7c57f8d 100644 Binary files a/tests/snapshots/celo_nanosp_celo_create_account/00004.png and b/tests/snapshots/celo_nanosp_celo_create_account/00004.png differ diff --git a/tests/snapshots/celo_nanosp_celo_create_account/00006.png b/tests/snapshots/celo_nanosp_celo_create_account/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/celo_nanosp_celo_create_account/00006.png and b/tests/snapshots/celo_nanosp_celo_create_account/00006.png differ diff --git a/tests/snapshots/celo_nanosp_celo_lock/00001.png b/tests/snapshots/celo_nanosp_celo_lock/00001.png index 25e1f77..c07f294 100644 Binary files a/tests/snapshots/celo_nanosp_celo_lock/00001.png and b/tests/snapshots/celo_nanosp_celo_lock/00001.png differ diff --git a/tests/snapshots/celo_nanosp_celo_lock/00002.png b/tests/snapshots/celo_nanosp_celo_lock/00002.png index 166396c..3793c29 100644 Binary files a/tests/snapshots/celo_nanosp_celo_lock/00002.png and b/tests/snapshots/celo_nanosp_celo_lock/00002.png differ diff --git a/tests/snapshots/celo_nanosp_celo_lock/00004.png b/tests/snapshots/celo_nanosp_celo_lock/00004.png index 9cdf82b..7c57f8d 100644 Binary files a/tests/snapshots/celo_nanosp_celo_lock/00004.png and b/tests/snapshots/celo_nanosp_celo_lock/00004.png differ diff --git a/tests/snapshots/celo_nanosp_celo_lock/00006.png b/tests/snapshots/celo_nanosp_celo_lock/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/celo_nanosp_celo_lock/00006.png and b/tests/snapshots/celo_nanosp_celo_lock/00006.png differ diff --git a/tests/snapshots/celo_nanosp_celo_revoke_active/00001.png b/tests/snapshots/celo_nanosp_celo_revoke_active/00001.png index 6acca3d..e8e3005 100644 Binary files a/tests/snapshots/celo_nanosp_celo_revoke_active/00001.png and b/tests/snapshots/celo_nanosp_celo_revoke_active/00001.png differ diff --git a/tests/snapshots/celo_nanosp_celo_revoke_active/00007.png b/tests/snapshots/celo_nanosp_celo_revoke_active/00007.png index 9cdf82b..7c57f8d 100644 Binary files a/tests/snapshots/celo_nanosp_celo_revoke_active/00007.png and b/tests/snapshots/celo_nanosp_celo_revoke_active/00007.png differ diff --git a/tests/snapshots/celo_nanosp_celo_revoke_active/00009.png b/tests/snapshots/celo_nanosp_celo_revoke_active/00009.png index a58590b..6578872 100644 Binary files a/tests/snapshots/celo_nanosp_celo_revoke_active/00009.png and b/tests/snapshots/celo_nanosp_celo_revoke_active/00009.png differ diff --git a/tests/snapshots/celo_nanosp_celo_unlock/00001.png b/tests/snapshots/celo_nanosp_celo_unlock/00001.png index f43ed7b..1dca730 100644 Binary files a/tests/snapshots/celo_nanosp_celo_unlock/00001.png and b/tests/snapshots/celo_nanosp_celo_unlock/00001.png differ diff --git a/tests/snapshots/celo_nanosp_celo_unlock/00004.png b/tests/snapshots/celo_nanosp_celo_unlock/00004.png index 9cdf82b..7c57f8d 100644 Binary files a/tests/snapshots/celo_nanosp_celo_unlock/00004.png and b/tests/snapshots/celo_nanosp_celo_unlock/00004.png differ diff --git a/tests/snapshots/celo_nanosp_celo_unlock/00006.png b/tests/snapshots/celo_nanosp_celo_unlock/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/celo_nanosp_celo_unlock/00006.png and b/tests/snapshots/celo_nanosp_celo_unlock/00006.png differ diff --git a/tests/snapshots/celo_nanosp_celo_vote/00001.png b/tests/snapshots/celo_nanosp_celo_vote/00001.png index b2a8dde..6d883ea 100644 Binary files a/tests/snapshots/celo_nanosp_celo_vote/00001.png and b/tests/snapshots/celo_nanosp_celo_vote/00001.png differ diff --git a/tests/snapshots/celo_nanosp_celo_vote/00007.png b/tests/snapshots/celo_nanosp_celo_vote/00007.png index 9cdf82b..7c57f8d 100644 Binary files a/tests/snapshots/celo_nanosp_celo_vote/00007.png and b/tests/snapshots/celo_nanosp_celo_vote/00007.png differ diff --git a/tests/snapshots/celo_nanosp_celo_vote/00009.png b/tests/snapshots/celo_nanosp_celo_vote/00009.png index a58590b..6578872 100644 Binary files a/tests/snapshots/celo_nanosp_celo_vote/00009.png and b/tests/snapshots/celo_nanosp_celo_vote/00009.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00001.png index ff41955..3e25831 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00002.png index 22b404c..5ed7ce7 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_angle_deposit/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00005.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00007.png b/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00007.png and b/tests/snapshots/ethereum_nanosp_ethereum_angle_withdraw/00007.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00001.png index d266645..2b9dc68 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00002.png index e55417f..1d12793 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_buy_voucher/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00001.png index 3653bd0..0d83707 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00002.png index e170d38..8492d36 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_claim_self_apecoin/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00001.png index d87a371..a63b424 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_claim_tokens/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00001.png index 116d201..cdfc997 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00002.png index 82f3084..7467da9 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_comet_supply/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00001.png index c624a08..4759a6f 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00002.png index 091e8f5..e6e664c 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_deposit_self_apecoin/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_enter/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_enter/00001.png index 541f0bd..3b21a0b 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_enter/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_enter/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_enter/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_enter/00002.png index 8e1b7b4..11b0de5 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_enter/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_enter/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_enter/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_enter/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_enter/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_enter/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_enter/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_enter/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_enter/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_enter/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00001.png index 6625d53..07c6b1e 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00002.png index 0e7b7ba..ea07584 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_delegate/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00001.png index 3f8e730..aee1582 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_undelegate/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00001.png index c2afc41..0efa47c 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_grt_withdraw_delegated/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_leave/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_leave/00001.png index 5733366..57077b3 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_leave/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_leave/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_leave/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_leave/00002.png index 178f099..5fa1703 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_leave/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_leave/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_leave/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_leave/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_leave/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_leave/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_leave/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_leave/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_leave/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_leave/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00001.png index e47328a..69a001f 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00002.png index e8e81cd..c5dad59 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00004.png index 8097259..23fb633 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00006.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00008.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00008.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00008.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_1/00008.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00001.png index e47328a..69a001f 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00002.png index d52d02d..4c2f7e9 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_claim_withdrawals_2/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00001.png index 05d318b..d733794 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_1/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00001.png index 05d318b..d733794 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_lido_request_withdrawals_2/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00001.png index 116d201..cdfc997 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00002.png index 7d685fe..8b694a8 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00003.png index 93b9c1e..fce820e 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_1/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00001.png index 116d201..cdfc997 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00002.png index dadfe58..ba2af6c 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_2/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00001.png index 116d201..cdfc997 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00002.png index f730234..af474cc 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00003.png index 30b33d9..88a5a4e 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_supply_3/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_1/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_morpho_withdraw_2/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00001.png index ff41955..3e25831 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00002.png index 55a0a53..64d1f92 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00003.png index 73ffab8..de88abd 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_deposit/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00002.png index f947592..9fd9c21 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_paraspace_withdraw/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00001.png index 02e081d..2ae62f3 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00002.png index aa39bf7..366c3a8 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_request_withdraw/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00001.png index 9bb56c3..59c775d 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00002.png index 09a57a1..8dab39b 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_sell_voucher_new/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_stake/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_stake/00001.png index 04e8e52..a4b3be9 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_stake/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_stake/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_stake/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_stake/00002.png index c7c9133..0d3893a 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_stake/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_stake/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_stake/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_stake/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_stake/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_stake/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_stake/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_stake/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_stake/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_stake/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00001.png index 52062ce..768ca07 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_submit_eth_lido/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00001.png index 52062ce..768ca07 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00002.png index 385da88..41aced9 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_submit_matic_lido/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00001.png index 4b81cd9..5c33b3f 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00002.png index 0fad224..7b8635a 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00004.png b/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00004.png and b/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00004.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00006.png b/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00006.png and b/tests/snapshots/ethereum_nanosp_ethereum_swap_from/00006.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00001.png index f229900..b4d2bc5 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_swap_to/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00001.png index bf924e7..85955d5 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_unstake_claim_tokens_new/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00001.png index fed895a..5fc0f06 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00002.png b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00002.png index 23684b4..89ac44f 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00002.png and b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_rewards/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00001.png b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00001.png index 831664b..593f588 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00001.png and b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00001.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00003.png b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00003.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00003.png and b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00005.png b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00005.png index a58590b..6578872 100644 Binary files a/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00005.png and b/tests/snapshots/ethereum_nanosp_ethereum_withdraw_self_apecoin/00005.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00001.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00001.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00001.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00002.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00002.png index d393794..d633bd6 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00002.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00002.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00004.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00004.png index 764e442..7c6b3b5 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00004.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00004.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00006.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00006.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_1/00006.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00001.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00001.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00001.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00002.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00002.png index 32c8427..975b8db 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00002.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00002.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00004.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00004.png index 764e442..7c6b3b5 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00004.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00004.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00006.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00006.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_2/00006.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00001.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00001.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00001.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00002.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00002.png index 8b21598..b0381be 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00002.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00002.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00005.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00005.png index 764e442..7c6b3b5 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00005.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00005.png differ diff --git a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00007.png b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00007.png and b/tests/snapshots/fantom_nanosp_fantom_yearn_vault_withdraw_3/00007.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00001.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00001.png index ff41955..3e25831 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00001.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00001.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00002.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00002.png index d393794..d633bd6 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00002.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00002.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00004.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00004.png index 764e442..7c6b3b5 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00004.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00004.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00006.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00006.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_1/00006.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00001.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00001.png index ff41955..3e25831 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00001.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00001.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00002.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00002.png index aeeffab..91e3259 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00002.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00002.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00004.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00004.png index 764e442..7c6b3b5 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00004.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00004.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00006.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00006.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_2/00006.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00001.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00001.png index ff41955..3e25831 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00001.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00001.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00002.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00002.png index aeeffab..91e3259 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00002.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00002.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00005.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00005.png index 764e442..7c6b3b5 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00005.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00005.png differ diff --git a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00007.png b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00007.png and b/tests/snapshots/fantom_nanosp_yearn_vault_deposit_3/00007.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00001.png b/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00001.png index 116d201..cdfc997 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00001.png and b/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00001.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00002.png b/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00002.png index af5e3d8..7503a4d 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00002.png and b/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00002.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00005.png b/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00005.png index ca6fa96..8677395 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00005.png and b/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00007.png b/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00007.png and b/tests/snapshots/polygon_nanosp_polygon_aave_v3_supply/00007.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00001.png b/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00001.png and b/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00001.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00005.png b/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00005.png index ca6fa96..8677395 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00005.png and b/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00007.png b/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00007.png and b/tests/snapshots/polygon_nanosp_polygon_aave_v3_withdraw/00007.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_comet_claim/00001.png b/tests/snapshots/polygon_nanosp_polygon_comet_claim/00001.png index f318fd0..a68793a 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_comet_claim/00001.png and b/tests/snapshots/polygon_nanosp_polygon_comet_claim/00001.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_comet_claim/00003.png b/tests/snapshots/polygon_nanosp_polygon_comet_claim/00003.png index 12304ea..c0fb928 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_comet_claim/00003.png and b/tests/snapshots/polygon_nanosp_polygon_comet_claim/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_comet_claim/00005.png b/tests/snapshots/polygon_nanosp_polygon_comet_claim/00005.png index ca6fa96..8677395 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_comet_claim/00005.png and b/tests/snapshots/polygon_nanosp_polygon_comet_claim/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_comet_claim/00007.png b/tests/snapshots/polygon_nanosp_polygon_comet_claim/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_comet_claim/00007.png and b/tests/snapshots/polygon_nanosp_polygon_comet_claim/00007.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00001.png b/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00001.png and b/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00001.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00004.png b/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00004.png index ca6fa96..8677395 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00004.png and b/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00004.png differ diff --git a/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00006.png b/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00006.png and b/tests/snapshots/polygon_nanosp_polygon_comet_withdraw/00006.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00001.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00001.png index c73641e..fbcc548 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00001.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00001.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00004.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00004.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00004.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00006.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00006.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_resign_1/00006.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00001.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00001.png index 46c3455..898687c 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00001.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00001.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00005.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00005.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00005.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00005.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00007.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00007.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_unvote_1/00007.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00001.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00001.png index b2a8dde..6d883ea 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00001.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00001.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00004.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00004.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00004.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00004.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00006.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00006.png index a58590b..6578872 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00006.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_vote_1/00006.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00001.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00001.png index 8860d96..a0cfb03 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00001.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00001.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00003.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00003.png index 5758112..a3d1eb4 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00003.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00003.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00005.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00005.png index 89bfa0b..b2401b2 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00005.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00005.png differ diff --git a/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00007.png b/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00007.png index a58590b..6578872 100644 Binary files a/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00007.png and b/tests/snapshots/tomochain_nanosp_tomochain_vic_withdraw_1/00007.png differ diff --git a/tests/src/fantom/fantom_yearn_vault_withdraw.test.js b/tests/src/fantom/fantom_yearn_vault_withdraw.test.js index 9748c6e..726b18f 100644 --- a/tests/src/fantom/fantom_yearn_vault_withdraw.test.js +++ b/tests/src/fantom/fantom_yearn_vault_withdraw.test.js @@ -11,22 +11,22 @@ const chainID = 250; const transactions = [ - // { - // // From : https://ftmscan.com/tx/0x0886b343f22515ceeec557ab3a810aab99d296eefed5a402dd0022c1d2984591 - // inputData: '0x3ccfd60b', - // nanoStep: 7, - // nanoSPtep: 5, - // nanoXtep: 5, - // index: 1, - // }, - // { - // // From : https://ftmscan.com/tx/0x64c9853386866501f3fee802b269b50588832524a0fa7db8d62b9d05443ccedf - // inputData: '0x2e1a7d4d0000000000000000000000000000000000000000000000000000000011297cb7', - // nanoStep: 5, - // nanoSPtep: 5, - // nanoXtep: 5, - // index: 2, - // }, + { + // From : https://ftmscan.com/tx/0x0886b343f22515ceeec557ab3a810aab99d296eefed5a402dd0022c1d2984591 + inputData: '0x3ccfd60b', + nanoStep: 7, + nanoSPtep: 5, + nanoXtep: 5, + index: 1, + }, + { + // From : https://ftmscan.com/tx/0x64c9853386866501f3fee802b269b50588832524a0fa7db8d62b9d05443ccedf + inputData: '0x2e1a7d4d0000000000000000000000000000000000000000000000000000000011297cb7', + nanoStep: 5, + nanoSPtep: 5, + nanoXtep: 5, + index: 2, + }, { // From : https://ftmscan.com/tx/0xcb0590a2bd4ad4796bfd539f0ccce805ab2555d90b7a38369940701f2f20c0d5 inputData: '0x00f714ce00000000000000000000000000000000000000000000000000000000000e643f000000000000000000000000b6c5273e79e2add234ebc07d87f3824e0f94b2f7',