From babd0fd47626545a66d560e6f20f7439db816f5c Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Tue, 10 Sep 2024 18:07:14 +0300 Subject: [PATCH 1/2] fix README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ba55c118..5be4633eb 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ This app has several third party api keys that you need in order to run Builder: - [alchemy](https://www.alchemy.com/) as the main rpc node provider in addition to mainnet forks for testing - [tenderly](https://docs.tenderly.co/simulations-and-forks/simulation-api) in order to simulate transactions -- [etherscan](https://docs.etherscan.io/api-endpoints/contracts) to dyanamically fetch abis +- [etherscan](https://docs.etherscan.io/api-endpoints/contracts) to dynamically fetch abis We ask that you supply your own secrets locally for running in development environment. Non-secret environment variables are already included in the `.env` files in this repo. From fbbf3d477310ace502e57c2f276c448727632e3a Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Tue, 10 Sep 2024 18:33:05 +0300 Subject: [PATCH 2/2] Update BridgeForm.tsx --- apps/web/src/components/BridgeModal/BridgeForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/components/BridgeModal/BridgeForm.tsx b/apps/web/src/components/BridgeModal/BridgeForm.tsx index 8e98f871c..7314c80f8 100644 --- a/apps/web/src/components/BridgeModal/BridgeForm.tsx +++ b/apps/web/src/components/BridgeModal/BridgeForm.tsx @@ -77,7 +77,7 @@ export const BridgeForm = () => { const getButtonText = (isAmountInvalid: boolean) => { if (isContractWallet) return 'Contract wallets are not supported' if (loading) return 'Bridging...' - if (isAmountInvalid) return 'Insufficent ETH balance' + if (isAmountInvalid) return 'Insufficient ETH balance' return 'Bridge' }