diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index d8f5277..90a702a 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -288,7 +288,7 @@ jobs: - name: Install node uses: actions/setup-node@v3 with: - node-version: "14.18.1" + node-version: "16.19.0" - name: Install yarn run: | npm install -g yarn @@ -297,4 +297,4 @@ jobs: cd tests && yarn install - name: Run zemu tests run: | - cd tests && docker pull zondax/builder-zemu@sha256:8d7b06cedf2d018b9464f4af4b7a8357c3fbb180f3ab153f8cb8f138defb22a4 && yarn test \ No newline at end of file + cd tests && yarn test \ No newline at end of file diff --git a/src/handle_provide_parameter.c b/src/handle_provide_parameter.c index 1a1d7e0..e67743d 100644 --- a/src/handle_provide_parameter.c +++ b/src/handle_provide_parameter.c @@ -80,7 +80,7 @@ static void handle_swap_exact_amount(ethPluginProvideParameter_t *msg, case TOKEN_PATH_LENGTH: if (!U2BE_from_parameter(msg->parameter, &(context->tmp_len)) && - context->tmp_len * 2 != context->array_len) { + context->tmp_len != context->array_len * 2) { msg->result = ETH_PLUGIN_RESULT_ERROR; break; } diff --git a/src/handle_query_contract_ui.c b/src/handle_query_contract_ui.c index 5a24e27..e7008e5 100644 --- a/src/handle_query_contract_ui.c +++ b/src/handle_query_contract_ui.c @@ -1,5 +1,10 @@ #include "apwine_plugin.h" +// Set UI for retrieving the ticker. +// The ticker is calculated based on the pair_path_first and the token_path_sent. +// The pair 0 == (PT,Underlying) and 1 == (PT, FYT) +// If the token path is 0, the ticker is the PT ticker, and if the token path is 1, +// the ticker is the Underlying or FYT ticker. static void set_send_ticker_ui(ethQueryContractUI_t *msg, apwine_parameters_t *context) { switch (context->selectorIndex) { case SWAP_EXACT_AMOUNT_IN: @@ -68,6 +73,11 @@ static void set_send_ticker_ui(ethQueryContractUI_t *msg, apwine_parameters_t *c } } +// Set UI for retrieving the ticker. +// The ticker is calculated based on the pair_path_last and the token_path_received. +// The pair 0 == (PT,Underlying) and 1 == (PT, FYT) +// If the token path is 0, the ticker is the PT ticker, and if the token path is 1, +// the ticker is the Underlying or FYT ticker. static void set_receive_ticker_ui(ethQueryContractUI_t *msg, apwine_parameters_t *context) { switch (context->selectorIndex) { case SWAP_EXACT_AMOUNT_IN: @@ -184,6 +194,7 @@ static void set_receive_ticker_ui(ethQueryContractUI_t *msg, apwine_parameters_t } } +// Set UI for retrieving the underlying ticker. static void set_send_underlying_ui(ethQueryContractUI_t *msg, apwine_parameters_t *context) { switch (context->selectorIndex) { case ZAPINTOPT: @@ -215,6 +226,7 @@ static void set_send_underlying_ui(ethQueryContractUI_t *msg, apwine_parameters_ } } +// Set UI for retrieving the PT ticker. static void set_receive_pt_ui(ethQueryContractUI_t *msg, apwine_parameters_t *context) { switch (context->selectorIndex) { case ZAPINTOPT: @@ -246,6 +258,7 @@ static void set_receive_pt_ui(ethQueryContractUI_t *msg, apwine_parameters_t *co } } +// Set UI for retrieving the ticker used in deposit function. static void set_future_vault_token_deposit_ui(ethQueryContractUI_t *msg, apwine_parameters_t *context) { switch (context->selectorIndex) { @@ -275,11 +288,12 @@ static void set_future_vault_token_deposit_ui(ethQueryContractUI_t *msg, } } +// Set UI for retrieving the ticker used in withdraw function. static void set_future_vault_token_withdraw_ui(ethQueryContractUI_t *msg, apwine_parameters_t *context) { switch (context->selectorIndex) { case WITHDRAW: - strlcpy(msg->title, "Token Send", msg->titleLength); + strlcpy(msg->title, "Token Receive", msg->titleLength); break; default: PRINTF("Unhandled selector Index: %d\n", context->selectorIndex); @@ -312,10 +326,10 @@ static void set_send_amount_ui(ethQueryContractUI_t *msg, apwine_parameters_t *c strlcpy(msg->title, "Amount In", msg->titleLength); break; case ADD_LIQUIDITY: - strlcpy(msg->title, "Amount In 1", msg->titleLength); + strlcpy(msg->title, "First Amount In", msg->titleLength); break; case REMOVE_LIQUIDITY: - strlcpy(msg->title, "Amount Out 1", msg->titleLength); + strlcpy(msg->title, "First Amount Out", msg->titleLength); break; case DEPOSIT: case WITHDRAW: @@ -364,10 +378,10 @@ static void set_receive_amount_ui(ethQueryContractUI_t *msg, apwine_parameters_t strlcpy(msg->title, "Amount Out", msg->titleLength); break; case ADD_LIQUIDITY: - strlcpy(msg->title, "Amount In 2", msg->titleLength); + strlcpy(msg->title, "2nd Amount In", msg->titleLength); break; case REMOVE_LIQUIDITY: - strlcpy(msg->title, "Amount Out 2", msg->titleLength); + strlcpy(msg->title, "2nd Amount Out", msg->titleLength); break; case ZAPINTOPT: strlcpy(msg->title, "Receive Min", msg->titleLength); @@ -483,7 +497,7 @@ uint8_t default_screen(uint8_t index, apwine_parameters_t *context) { } case 2: if (both_tokens_found) { - return BENEFICIARY_SCREEN; + return ERROR; } else if (both_tokens_not_found) { return WARN_SCREEN; } else { @@ -494,14 +508,6 @@ uint8_t default_screen(uint8_t index, apwine_parameters_t *context) { return ERROR; } else if (both_tokens_not_found) { return RECEIVE_SCREEN; - } else { - return BENEFICIARY_SCREEN; - } - case 4: - if (both_tokens_not_found) { - return BENEFICIARY_SCREEN; - } else { - return ERROR; } default: return ERROR; @@ -509,8 +515,7 @@ uint8_t default_screen(uint8_t index, apwine_parameters_t *context) { } // Helper function that returns the enum corresponding to the screen that should be displayed. -static screens_t get_screen(ethQueryContractUI_t *msg, - apwine_parameters_t *context __attribute__((unused))) { +static screens_t get_screen(ethQueryContractUI_t *msg, apwine_parameters_t *context) { uint8_t index = msg->screenIndex; switch (context->selectorIndex) { case REDEEM_YIELD: diff --git a/tests/package.json b/tests/package.json index 866d240..f2af20e 100644 --- a/tests/package.json +++ b/tests/package.json @@ -16,7 +16,7 @@ "@ledgerhq/hw-app-eth": "^6.27.1", "@ledgerhq/hw-transport-http": "^6.27.1", "@ledgerhq/logs": "^6.2.0", - "@zondax/zemu": "^0.35.1", + "@zondax/zemu": "^0.37.0", "core-js": "^3.16.3", "eslint": "^7.32.0", "eslint-config-airbnb-base": "^14.2.1", diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png index 46242e4..46b37a1 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00004.png index 918d63a..bb11bc8 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00006.png index 23241fe..4e28f43 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00007.png index dcf5603..ca5b021 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png index 33b8d6e..609da52 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00004.png index 65f7748..ecefdfc 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00006.png index f28b7e1..b823c1b 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00007.png index ac09705..22ee7f3 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index cf3efa0..07b12f7 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png index 7f2b321..da49afa 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png index 3505fd2..5098ecf 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png index 26b44f3..6dd50b3 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png index ec649df..3d9e4db 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00004.png index ec5b55b..e5f33a2 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00006.png index 3e46e66..cfbbe0e 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00007.png index b39a358..597db39 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png index 8ebf2c8..2c2e5eb 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00004.png index 58e2a75..38c214a 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00006.png index d350868..1134aa3 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00007.png index da05a8f..fc86ede 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png index f089082..1de9e6f 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00004.png index dc68e0d..730d72e 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00006.png index 980c2e1..2d2794d 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00007.png index 085a9a8..12feda3 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png index 6d86642..cf0c51b 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00004.png index 508305d..5223480 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00006.png index 072695e..581a11c 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00007.png index d654e27..6217732 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png index 31e634e..ed6d768 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00004.png index 514bd16..78a57e4 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00006.png index 431e48a..da50d12 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00007.png index cfba9cf..680383d 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 1902406..a3c3f59 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png index 05d7579..49b638c 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png index 42a028b..3fa534b 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png index 356246c..042c77b 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png index c73b036..cddc51d 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00004.png index 59bc673..24eb694 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00006.png index fa1826e..45a0013 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00007.png index 8e624b4..3b11308 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png index b34348d..17e5553 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00004.png index d9c2112..31005ca 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00006.png index 32de854..d1656bc 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00007.png index d654e27..6217732 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png index 783185f..c161f5d 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00004.png index 8b8bde1..3b1430e 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00006.png index 8c22e7a..7b43bc4 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00007.png index 75ebaa4..78201e4 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png index 9e3b9b0..c343d5c 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00004.png index aea9bce..cf4bfbb 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00006.png index f878516..c599917 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00007.png index e6d2ebc..dc51de0 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png index 09bc5b8..36f2b95 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00004.png index bbf7c8b..c1439d5 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00006.png index c7b614e..095b2f0 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00007.png index c9921ad..9ffc791 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png index dbbbe06..29aa244 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00004.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00004.png index 93204e2..6c0986c 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00004.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00006.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00006.png index ece499b..99b9864 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00006.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00007.png b/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00007.png index 2e51eb6..62b0ce1 100644 Binary files a/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00007.png and b/tests/snapshots/ethereum_nanos_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png index 739cae4..1db5335 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00004.png index 01612ae..a8d801a 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00006.png index fdfe1cf..373445c 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00007.png index 85cc642..cf43ad4 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png index 057932d..c8b3d59 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00004.png index c54cf4b..9d799c0 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00006.png index fb4c06c..8fdff8d 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00007.png index 33cc079..5965a87 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index 7fc75c3..f7bb3b1 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png index 0d10517..1d3e9f0 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png index 052ecf3..45fb35b 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png index e85cbc7..a662846 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png index 6014d2e..005bb04 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00004.png index a4329b1..f76bc56 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00006.png index 4d99ab2..088ee81 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00007.png index 831f9b5..6b41e1f 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png index c778b65..cdb333d 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00004.png index 490fc54..d03b533 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00006.png index 8c86af7..5f61204 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00007.png index b481ac6..0344427 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png index 78402f6..ae030ff 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00004.png index 01612ae..a8d801a 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00006.png index 076b9cb..8229958 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00007.png index 1acf293..f462613 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png index 7fc8eda..c2322c8 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00004.png index 01612ae..a8d801a 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00006.png index f678ad9..241f210 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00007.png index e4e3846..078957e 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png index 96a301f..c6fcf74 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00004.png index f21657c..075a965 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00006.png index 9b17a1f..736a902 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00007.png index 0936822..bd3d8e4 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 81ea645..c4e6bce 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png index ae2ca68..ad1c2e3 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png index 00ee213..3c499be 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png index b2b0d1f..b474c1b 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png index d2c8b79..b4ab944 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00004.png index 3d579aa..eea036d 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00006.png index 41e267e..7dfc3a0 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00007.png index fb3eec2..1a5fc04 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png index 3893394..0b41a8f 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00004.png index 0f32312..934228f 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00006.png index 45fa039..1bf1282 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00007.png index 8f106e0..51b316c 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png index e2353c7..1b25b96 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00004.png index 31c3736..1a2d12b 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00006.png index f4a9c86..d112e8d 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00007.png index 431d6c5..1357fb5 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png index a2627f9..2125338 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00004.png index d33edba..6473554 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00006.png index a10f5c9..751f230 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00007.png index 22639af..ce001c5 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png index 46b9623..5f4367e 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00004.png index 969c66c..504d5e2 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00006.png index 64704a3..71b0850 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00007.png index ac8f7db..74e250c 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png index 28a209e..f41739f 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00004.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00004.png index 275bfdd..3edccb7 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00004.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00004.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00006.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00006.png index da68672..4827d78 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00006.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00006.png differ diff --git a/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00007.png b/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00007.png index e0a9d07..36b4f82 100644 Binary files a/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00007.png and b/tests/snapshots/ethereum_nanos_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00007.png differ diff --git a/tests/snapshots/ethereum_nanos_withdraw/00002.png b/tests/snapshots/ethereum_nanos_withdraw/00002.png index 4d16095..f1f3e78 100644 Binary files a/tests/snapshots/ethereum_nanos_withdraw/00002.png and b/tests/snapshots/ethereum_nanos_withdraw/00002.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png index 5235118..9028815 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png index ead5854..7248bc1 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png index c4c5410..ea2c377 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png index 18d52be..f711ea5 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index a164f82..89dd841 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png index 4036533..8855897 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png index 4015eaf..4772cc8 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png index 8be06fe..115a1ba 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png index 77ebc3a..a938cf5 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png index 2ead463..059e676 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png index c423ad1..3bffecc 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png index 8161ada..cef910c 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png index bedd5bb..37a2d9f 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png index 8cc7660..012c5b7 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png index edd6e8a..50d535e 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png index c883ab1..3ddbe8c 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 754cb83..7f1c2f0 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png index c6c6837..45dd4f5 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png index be1c7be..9a39d1a 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png index b4afe04..905f7d9 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png index b0d5085..dcb38bd 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png index e0f8ee2..a884180 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png index 17d4bb5..bc3aac0 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png index 70e3249..25e1db7 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png index 89c6d86..90eb728 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png index 2184b97..73e3eab 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png index d5a5be9..90dc15d 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png index 3af5274..2f16947 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png index 1a429d3..5800c7d 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png b/tests/snapshots/ethereum_nanosp_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png index 7477ef4..62df7c6 100644 Binary files a/tests/snapshots/ethereum_nanosp_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png and b/tests/snapshots/ethereum_nanosp_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png index 19f5d0f..854d1bf 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png index 990babe..7c57e05 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png index f781efd..9a1760a 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png index 34b4190..eb6deb4 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index 597b982..d000501 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png index 55c62e3..ed98285 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png index 4a5585b..7d02618 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png index 7f5d435..c42cc88 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png index 5d3b5c8..8d9e34f 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png index 6ebdf37..47832a6 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png index 6767632..40c6b6d 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png index 53e987e..44bbd0f 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png index 13e2146..53997d9 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png index d486764..cf9d5a2 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png index 87a837a..6766d96 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png index 6b0341b..6f9dd0f 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 8dad27a..f9c934c 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png index f452dcb..0678f98 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png index 578161e..7642baf 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png index 12caa01..b201b16 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png index 3c8cf9d..aaf4dd1 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png index 1ae59ef..2224a5d 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png index 0d80151..a00ac3e 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png index 422a353..138dd89 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png index fae5760..ab3e48f 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png index 5374776..1660eed 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png index 0c9e5c8..a55534d 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png index c3dff6c..248f8aa 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png index f07795b..28ea041 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png differ diff --git a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png index 765bf1f..e962aed 100644 Binary files a/tests/snapshots/ethereum_nanosp_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png and b/tests/snapshots/ethereum_nanosp_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png differ diff --git a/tests/snapshots/ethereum_nanosp_withdraw/00002.png b/tests/snapshots/ethereum_nanosp_withdraw/00002.png index 897f891..585b05c 100644 Binary files a/tests/snapshots/ethereum_nanosp_withdraw/00002.png and b/tests/snapshots/ethereum_nanosp_withdraw/00002.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png index 5235118..9028815 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png index ead5854..7248bc1 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png index c4c5410..ea2c377 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png index 18d52be..f711ea5 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index a164f82..89dd841 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png index 4036533..8855897 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png index 4015eaf..4772cc8 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png index 8be06fe..115a1ba 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png index 77ebc3a..a938cf5 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png index 2ead463..059e676 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png index c423ad1..3bffecc 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png index 8161ada..cef910c 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png index bedd5bb..37a2d9f 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png index 8cc7660..012c5b7 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png index edd6e8a..50d535e 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png index c883ab1..3ddbe8c 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 754cb83..7f1c2f0 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png index c6c6837..45dd4f5 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png index be1c7be..9a39d1a 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png index b4afe04..905f7d9 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png index b0d5085..dcb38bd 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png index e0f8ee2..a884180 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png index 17d4bb5..bc3aac0 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png index 70e3249..25e1db7 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png index 89c6d86..90eb728 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png index 2184b97..73e3eab 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png index d5a5be9..90dc15d 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png index 3af5274..2f16947 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png index 1a429d3..5800c7d 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png b/tests/snapshots/ethereum_nanox_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png index 7477ef4..62df7c6 100644 Binary files a/tests/snapshots/ethereum_nanox_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png and b/tests/snapshots/ethereum_nanox_addLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png index 19f5d0f..854d1bf 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png index 990babe..7c57e05 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x0cc36e3cc5eaca6d046b537703ae946874d57299/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png index f781efd..9a1760a 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png index 34b4190..eb6deb4 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1089f7bbf8c680db92759a30d42ddfba7c794bd2/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index 597b982..d000501 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png index 55c62e3..ed98285 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png index 4a5585b..7d02618 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png index 7f5d435..c42cc88 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x1a6525e4a4ab2e3aea7ed3cf813e8ed07fa3446d/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png index 5d3b5c8..8d9e34f 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png index 6ebdf37..47832a6 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x49cbbfedb15b5c22cac53daf104512a5de9c8457/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png index 6767632..40c6b6d 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png index 53e987e..44bbd0f 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x4df9bb881e5e61034001440aaaff2fb2932e2883/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png index 13e2146..53997d9 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png index d486764..cf9d5a2 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x7259114df363de5d42fdf00b705fad7c85f8f795/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png index 87a837a..6766d96 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png index 6b0341b..6f9dd0f 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x839bb033738510aa6b4f78af20f066bdc824b189/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 8dad27a..f9c934c 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png index f452dcb..0678f98 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png index 578161e..7642baf 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png index 12caa01..b201b16 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xa4085c106c7a9a7ad0574865bbd7cac5e1098195/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png index 3c8cf9d..aaf4dd1 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png index 1ae59ef..2224a5d 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xb932c4801240753604c768c991eb640bcd7c06eb/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png index 0d80151..a00ac3e 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png index 422a353..138dd89 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xbc35b70ccc8ef4ec1ccc34fab60ccbba162011e4/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png index fae5760..ab3e48f 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png index 5374776..1660eed 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xc61c0f4961f2093a083f47a4b783ad260deaf7ea/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png index 0c9e5c8..a55534d 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png index c3dff6c..248f8aa 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xcba960001307a16ce8a9e326d73e92d53b446e81/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png index f07795b..28ea041 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00003.png differ diff --git a/tests/snapshots/ethereum_nanox_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png b/tests/snapshots/ethereum_nanox_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png index 765bf1f..e962aed 100644 Binary files a/tests/snapshots/ethereum_nanox_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png and b/tests/snapshots/ethereum_nanox_removeLiquidity_0xea851503ff416e34585d28c248918344c569b219/00005.png differ diff --git a/tests/snapshots/ethereum_nanox_withdraw/00002.png b/tests/snapshots/ethereum_nanox_withdraw/00002.png index 897f891..585b05c 100644 Binary files a/tests/snapshots/ethereum_nanox_withdraw/00002.png and b/tests/snapshots/ethereum_nanox_withdraw/00002.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index 70e89d5..f94bf4c 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png b/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png index 357782b..7b68811 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png b/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png index c8e26ca..a40c541 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png b/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png index 301c9b7..1d48cdb 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png b/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png index 97af282..c16bace 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00004.png b/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00004.png index 9487b5c..51c6265 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00004.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00004.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00006.png b/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00006.png index c16fa30..7048aae 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00006.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00006.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00007.png b/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00007.png index bd9dfed..a86b535 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00007.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00007.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png b/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png index aefa563..d4bbc23 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00004.png b/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00004.png index 9487b5c..51c6265 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00004.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00004.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00006.png b/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00006.png index 8803697..2f1ebf2 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00006.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00006.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00007.png b/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00007.png index 2cc6a52..65a5825 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00007.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00007.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png b/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png index 810ebd4..8b10950 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00004.png b/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00004.png index 950e541..d1a6ec9 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00004.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00004.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00006.png b/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00006.png index a48caab..9605655 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00006.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00006.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00007.png b/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00007.png index 60e52fe..53abbad 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00007.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00007.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index de456c9..7ce7da4 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png b/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png index 357782b..7b68811 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png b/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png index 98c3364..9bc7ad8 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png b/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png index ff3bb07..391db9d 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00004.png b/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00004.png index 3c89aec..3ed38cc 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00004.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00004.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00006.png b/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00006.png index cd88360..3e1aed7 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00006.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00006.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00007.png b/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00007.png index 0395829..68672fa 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00007.png and b/tests/snapshots/polygon_nanos_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00007.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png b/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png index b0f1b5e..adc276c 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png and b/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00004.png b/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00004.png index c38f297..da632ff 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00004.png and b/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00004.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00006.png b/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00006.png index 5249e1c..0c53c4c 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00006.png and b/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00006.png differ diff --git a/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00007.png b/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00007.png index dd9464d..7dc8ec0 100644 Binary files a/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00007.png and b/tests/snapshots/polygon_nanos_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00007.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index 3967769..e93a622 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png index 349f183..21ce4bf 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00004.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png index 79a0698..4573714 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00006.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png index 44d92db..11f0b4c 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00007.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png index fe8cf7a..16bd1f7 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00004.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00004.png index 1c60607..548e530 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00004.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00004.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00006.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00006.png index 3326f33..d0749d4 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00006.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00006.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00007.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00007.png index 081073f..c362f76 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00007.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00007.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png index 3b11023..264adcc 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00004.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00004.png index a8f1c85..2d93fbf 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00004.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00004.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00006.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00006.png index 9afbfad..f64208c 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00006.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00006.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00007.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00007.png index fa06431..dd8bf8a 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00007.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00007.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png index 5ade558..6d572b9 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00004.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00004.png index ca8484a..a1acb39 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00004.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00004.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00006.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00006.png index f9f54cf..f487d26 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00006.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00006.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00007.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00007.png index 5b71fc3..380d4e7 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00007.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00007.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 0f92c02..99b6607 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png index 510b59c..104f502 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00004.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png index 7e9f3ed..25989d3 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00006.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png index fa06431..dd8bf8a 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00007.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png index f035878..f310c2b 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00004.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00004.png index 970b4bb..3706df3 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00004.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00004.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00006.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00006.png index 88b3500..1a8e8c9 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00006.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00006.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00007.png b/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00007.png index e3c38cd..6731892 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00007.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00007.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png b/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png index e75af8f..56f977f 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00004.png b/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00004.png index 8280bf7..6c9b1f2 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00004.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00004.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00006.png b/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00006.png index 46bd094..a36eb7b 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00006.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00006.png differ diff --git a/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00007.png b/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00007.png index 51498a2..8e7a503 100644 Binary files a/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00007.png and b/tests/snapshots/polygon_nanos_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00007.png differ diff --git a/tests/snapshots/polygon_nanos_withdraw/00002.png b/tests/snapshots/polygon_nanos_withdraw/00002.png index 6dde832..034976e 100644 Binary files a/tests/snapshots/polygon_nanos_withdraw/00002.png and b/tests/snapshots/polygon_nanos_withdraw/00002.png differ diff --git a/tests/snapshots/polygon_nanos_withdraw/00003.png b/tests/snapshots/polygon_nanos_withdraw/00003.png index cdcae00..79b7e6e 100644 Binary files a/tests/snapshots/polygon_nanos_withdraw/00003.png and b/tests/snapshots/polygon_nanos_withdraw/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index 5552c23..9dea1a2 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png index af26185..76a9241 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png index 2280023..33634af 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png index 58f9d07..049f006 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png index 47e0a9f..222b51a 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png index a12cf5d..c7fc5dd 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png index 12c5e54..0ab8d8c 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png index 14aa057..a2e0364 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 1faad77..e39a6a1 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png index abce675..88e81f7 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png index 850057e..24f9096 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png b/tests/snapshots/polygon_nanosp_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png index 949ea7d..ab5d850 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png b/tests/snapshots/polygon_nanosp_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png index 865ce60..a1eb3ab 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png b/tests/snapshots/polygon_nanosp_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png index a0be5a0..c4a74a4 100644 Binary files a/tests/snapshots/polygon_nanosp_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png and b/tests/snapshots/polygon_nanosp_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index a646835..dc03e61 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png index a8520bd..a874db9 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png index 250d0cc..4b24a74 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png index 4c69992..2cd05a4 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png index 9327d74..44fb000 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png index 5548084..e96dd9d 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png index 4a11c08..904af8a 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png index e0014a1..6c5b29b 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 7802e70..437bab0 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png index b6c301f..ecd4d0f 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png index 42b69a5..721492c 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png index dac0e51..5d420f5 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png index 062faf4..252b9a0 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png differ diff --git a/tests/snapshots/polygon_nanosp_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png b/tests/snapshots/polygon_nanosp_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png index a44283c..22ecac3 100644 Binary files a/tests/snapshots/polygon_nanosp_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png and b/tests/snapshots/polygon_nanosp_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png differ diff --git a/tests/snapshots/polygon_nanosp_withdraw/00002.png b/tests/snapshots/polygon_nanosp_withdraw/00002.png index 17d01ce..56dd114 100644 Binary files a/tests/snapshots/polygon_nanosp_withdraw/00002.png and b/tests/snapshots/polygon_nanosp_withdraw/00002.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/polygon_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index 5552c23..9dea1a2 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png b/tests/snapshots/polygon_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png index af26185..76a9241 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png b/tests/snapshots/polygon_nanox_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png index 2280023..33634af 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png b/tests/snapshots/polygon_nanox_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png index 58f9d07..049f006 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png b/tests/snapshots/polygon_nanox_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png index 47e0a9f..222b51a 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png b/tests/snapshots/polygon_nanox_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png index a12cf5d..c7fc5dd 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png b/tests/snapshots/polygon_nanox_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png index 12c5e54..0ab8d8c 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png b/tests/snapshots/polygon_nanox_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png index 14aa057..a2e0364 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/polygon_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 1faad77..e39a6a1 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png b/tests/snapshots/polygon_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png index abce675..88e81f7 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png b/tests/snapshots/polygon_nanox_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png index 850057e..24f9096 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png b/tests/snapshots/polygon_nanox_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png index 949ea7d..ab5d850 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png and b/tests/snapshots/polygon_nanox_addLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png b/tests/snapshots/polygon_nanox_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png index 865ce60..a1eb3ab 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png and b/tests/snapshots/polygon_nanox_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png differ diff --git a/tests/snapshots/polygon_nanox_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png b/tests/snapshots/polygon_nanox_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png index a0be5a0..c4a74a4 100644 Binary files a/tests/snapshots/polygon_nanox_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png and b/tests/snapshots/polygon_nanox_addLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png index a646835..dc03e61 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00003.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png index a8520bd..a874db9 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x1604c5e9ab488d66e983644355511dcef5c32edf/00005.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png index 250d0cc..4b24a74 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00003.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png index 4c69992..2cd05a4 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x2df9cf57ac79a76a2e8d944b623a9f324af85ab8/00005.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png index 9327d74..44fb000 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00003.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png index 5548084..e96dd9d 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x4bf982f43994033e8c4e2c36d00c776b550e76c3/00005.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png index 4a11c08..904af8a 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00003.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png index e0014a1..6c5b29b 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x7429e160aa4ab7bbec65c101bd2624c8cba8a2f6/00005.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png index 7802e70..437bab0 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00003.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png index b6c301f..ecd4d0f 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x8a362aa1c81ed0ee2ae677a8b59e0f563dd290ba/00005.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png index 42b69a5..721492c 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00003.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png b/tests/snapshots/polygon_nanox_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png index dac0e51..5d420f5 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0x91e94e5e3baa054f92bac48a9c05e6228de1fcac/00005.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png b/tests/snapshots/polygon_nanox_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png index 062faf4..252b9a0 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00003.png differ diff --git a/tests/snapshots/polygon_nanox_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png b/tests/snapshots/polygon_nanox_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png index a44283c..22ecac3 100644 Binary files a/tests/snapshots/polygon_nanox_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png and b/tests/snapshots/polygon_nanox_removeLiquidity_0xc68b6987075944f9e8b0a6c2b52e923bc1fb9028/00005.png differ diff --git a/tests/snapshots/polygon_nanox_withdraw/00002.png b/tests/snapshots/polygon_nanox_withdraw/00002.png index 17d01ce..56dd114 100644 Binary files a/tests/snapshots/polygon_nanox_withdraw/00002.png and b/tests/snapshots/polygon_nanox_withdraw/00002.png differ diff --git a/tests/yarn.lock b/tests/yarn.lock index 26fe2b4..48f2690 100644 --- a/tests/yarn.lock +++ b/tests/yarn.lock @@ -1368,10 +1368,10 @@ "@ethersproject/properties" "^5.7.0" "@ethersproject/strings" "^5.7.0" -"@grpc/grpc-js@^1.8.8": - version "1.8.10" - resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.8.10.tgz#1802adf1d7eaa31acb0e5cafe5989d75fcc892a5" - integrity sha512-x7QS+gJq8WaS1OJYFJkmeoX2PHhi3b5TR5TqR9a8NJv6VyedFecp3LgAUmuJSQZlwoAODpCKRtu4HzG1srNjiA== +"@grpc/grpc-js@^1.8.12": + version "1.8.13" + resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.8.13.tgz#e775685962909b76f8d4b813833c3d123867165b" + integrity sha512-iY3jsdfbc0ARoCLFvbvUB8optgyb0r1XLPb142u+QtgBcKJYkCIFt3Fd/881KqjLYWjsBJF57N3b8Eop9NDfUA== dependencies: "@grpc/proto-loader" "^0.7.0" "@types/node" ">=12.12.47" @@ -1687,7 +1687,7 @@ bignumber.js "^9.1.0" crypto-js "^4.1.1" -"@ledgerhq/hw-transport-http@^6.27.1", "@ledgerhq/hw-transport-http@^6.27.11": +"@ledgerhq/hw-transport-http@^6.27.1", "@ledgerhq/hw-transport-http@^6.27.12": version "6.27.12" resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport-http/-/hw-transport-http-6.27.12.tgz#7121dcd50aeaa7f9aaa5f151548742c2f9e1d2f9" integrity sha512-4qG/de/SgYwzNy5boNYlCAvhMe5SpAMunkc/k/DMRkqsuOWJjxJ8vIQHvCCep5aGjDLjxy6v61vAm3w+/uf5gg== @@ -1706,7 +1706,7 @@ "@ledgerhq/hw-transport" "^6.28.1" "@ledgerhq/logs" "^6.10.1" -"@ledgerhq/hw-transport@^6.28.0", "@ledgerhq/hw-transport@^6.28.1": +"@ledgerhq/hw-transport@^6.28.1": version "6.28.1" resolved "https://registry.yarnpkg.com/@ledgerhq/hw-transport/-/hw-transport-6.28.1.tgz#cb22fe9bc23af4682c30f2aac7fe6f7ab13ed65a" integrity sha512-RaZe+abn0zBIz82cE9tp7Y7aZkHWWbEaE2yJpfxT8AhFz3fx+BU0kLYzuRN9fmA7vKueNJ1MTVUCY+Ex9/CHSQ== @@ -1898,22 +1898,22 @@ resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== -"@zondax/zemu@^0.35.1": - version "0.35.1" - resolved "https://registry.yarnpkg.com/@zondax/zemu/-/zemu-0.35.1.tgz#5a5f083909b9699a6fe346ac0425ff3a5ba45644" - integrity sha512-v7JWBkmnyeZnt1RB6kD2NTc8h/Cl5aDHq/kX8a4KvV0Ay1jB+KAXsfCTtPN9jjc0hkTXB7qFMIFmp07EpM+jfg== +"@zondax/zemu@^0.37.0": + version "0.37.0" + resolved "https://registry.yarnpkg.com/@zondax/zemu/-/zemu-0.37.0.tgz#c91bdcbed3d648cadc0beb385bff34e92458218b" + integrity sha512-XgcquM8RCKWF/PE8T80DRVY4wIxsZ9B1eERiQ78RmxMeYRnZO8LFH+3yLEs4knjAdQVoyJA4zjHM0HjV7QHo3w== dependencies: - "@grpc/grpc-js" "^1.8.8" + "@grpc/grpc-js" "^1.8.12" "@grpc/proto-loader" "^0.7.5" - "@ledgerhq/hw-transport" "^6.28.0" - "@ledgerhq/hw-transport-http" "^6.27.11" - axios "^1.3.3" + "@ledgerhq/hw-transport" "^6.28.1" + "@ledgerhq/hw-transport-http" "^6.27.12" + axios "^1.3.4" axios-retry "^3.4.0" dockerode "^3.3.1" elfy "^1.0.0" fs-extra "^11.0.0" get-port "^5.1.1" - pngjs "^6.0.0" + pngjs "^7.0.0" randomstring "^1.2.3" acorn-jsx@^5.3.1: @@ -2080,7 +2080,7 @@ axios@^0.26.1: dependencies: follow-redirects "^1.14.8" -axios@^1.3.3: +axios@^1.3.4: version "1.3.4" resolved "https://registry.yarnpkg.com/axios/-/axios-1.3.4.tgz#f5760cefd9cfb51fd2481acf88c05f67c4523024" integrity sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ== @@ -4461,10 +4461,10 @@ pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" -pngjs@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-6.0.0.tgz#ca9e5d2aa48db0228a52c419c3308e87720da821" - integrity sha512-TRzzuFRRmEoSW/p1KVAmiOgPco2Irlah+bGFCeNfJXxxYGwSw7YwAOAcd7X28K/m5bjBWKsC29KyoMfHbypayg== +pngjs@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-7.0.0.tgz#a8b7446020ebbc6ac739db6c5415a65d17090e26" + integrity sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow== postinstall-postinstall@^2.1.0: version "2.1.0"