diff --git a/mobile-app/app/contexts/CustomServiceProvider.tsx b/mobile-app/app/contexts/CustomServiceProvider.tsx index 9ccea592d5..4953e6bc99 100644 --- a/mobile-app/app/contexts/CustomServiceProvider.tsx +++ b/mobile-app/app/contexts/CustomServiceProvider.tsx @@ -105,8 +105,8 @@ function getEthRpcUrl(network: EnvironmentNetwork) { // TODO: Add proper ethereum RPC URLs for each network switch (network) { case EnvironmentNetwork.LocalPlayground: - return "http://localhost:19551"; case EnvironmentNetwork.RemotePlayground: + return "http://localhost:19551"; case EnvironmentNetwork.DevNet: case EnvironmentNetwork.Changi: return "http://34.34.156.49:20551"; // TODO: add final eth rpc url for changi, devnet and remote playground diff --git a/mobile-app/cypress/e2e/functional/transferDomain/addresses.spec.ts b/mobile-app/cypress/e2e/functional/transferDomain/addresses.spec.ts index 5923c9991e..61ef758e93 100644 --- a/mobile-app/cypress/e2e/functional/transferDomain/addresses.spec.ts +++ b/mobile-app/cypress/e2e/functional/transferDomain/addresses.spec.ts @@ -68,8 +68,6 @@ context("Portfolio - Send - Address Book", () => { addresses[index], ); - cy.getByTestID(`address_row_${index}_WHITELISTED_caret`).should("exist"); - // dvm address if (index === 0) { cy.getByTestID(`address_row_label_${index}_WHITELISTED_EVM_tag`).should( @@ -95,9 +93,6 @@ context("Portfolio - Send - Address Book", () => { cy.getByTestID(`address_row_text_${index}_YOUR_ADDRESS_EVM`).should( "exist", ); - - // caret - cy.getByTestID(`address_row_${index}_YOUR_ADDRESS_caret`).should("exist"); } // Send DFI tokens dvm -> evm diff --git a/mobile-app/cypress/e2e/functional/wallet/portfolio/sendConfirmation.spec.ts b/mobile-app/cypress/e2e/functional/wallet/portfolio/sendConfirmation.spec.ts index d032af62a9..e9a5f36111 100644 --- a/mobile-app/cypress/e2e/functional/wallet/portfolio/sendConfirmation.spec.ts +++ b/mobile-app/cypress/e2e/functional/wallet/portfolio/sendConfirmation.spec.ts @@ -20,14 +20,14 @@ context("Wallet - Send Preview/Confirmation", () => { .invoke("text") .should((t) => expect(t).equal("1.23400000")); cy.getByTestID("wallet_address").should("exist"); - cy.getByTestID("summary_to_value").should( + cy.getByTestID("address_input_footer").should( "have.text", - "bcrt1q8rfsfny80jx78cmk4rsa069e2ckp6rn83u6ut9" + "bcrt1q8rfsfny80jx78cmk4rsa069e2ckp6rn83u6ut9", ); cy.getByTestID("transaction_fee_label").should( "have.text", - "Transaction fee" + "Transaction fee", ); cy.getByTestID("transaction_fee_value").contains("DFI"); @@ -35,7 +35,7 @@ context("Wallet - Send Preview/Confirmation", () => { cy.getByTestID("text_amount").contains("1.23400000 dBTC"); cy.getByTestID("text_amount_rhsUsdAmount").should( "have.text", - "$12,340.00" + "$12,340.00", ); cy.getByTestID("button_confirm_send").should("not.have.attr", "disabled"); });