From d4275d662619245f469011480258ea47c8f6e7c4 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Mon, 2 Dec 2024 20:46:26 +0300 Subject: [PATCH 1/4] typo README.md --- apps/subgraph/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/subgraph/README.md b/apps/subgraph/README.md index 8470d6c39..f140d9f35 100644 --- a/apps/subgraph/README.md +++ b/apps/subgraph/README.md @@ -13,7 +13,7 @@ The Nouns Builder Subgraph is built on the Graph Protocol and includes the follo Nouns Builder subgraph currently supports two networks: `mainnet` and `goerli`. The environment variables indicated below dictate the network that the app interacts with. -You can swap out the environment variables as defined below to run the subgraph locally against mainnnet or testnet locally. +You can swap out the environment variables as defined below to run the subgraph locally against mainnet or testnet locally. ``` # the default chain id defined in .env, to run against testnet From 98ace47b55af1fe73e9c67527fecb50d2088ce42 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Mon, 2 Dec 2024 20:50:19 +0300 Subject: [PATCH 2/4] typo 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' } From b5d94cd8efac780921e643bbebe202bde4af09ec Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:13:33 +0300 Subject: [PATCH 3/4] typos README.md --- apps/web/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/README.md b/apps/web/README.md index 33e33c5ba..d5e40f158 100644 --- a/apps/web/README.md +++ b/apps/web/README.md @@ -45,7 +45,7 @@ The app is mostly organised by function and for the larger areas of concern ther Nouns Builder currently only supports two networks: `mainnet` and `goerli testnet`. The environment variables indicated below dictate the network that the app interacts with. -You can swap out the environment variables as defined below to run against mainnnet or testnet locally. +You can swap out the environment variables as defined below to run against mainnet or testnet locally. ``` # the default network type is defined in .env, to run against testnet @@ -118,7 +118,7 @@ sdk.daosByMember({ addresses: ['0x123'], chain: Chain.GOERLI }) > Note: `sdk.generated.ts` is auto-generated and should not be touched -> Note: If you use vscode, it might also be helfpul to install the vscode plugin for graphql to pick up syntax highlighting for `.graphql` files. +> Note: If you use vscode, it might also be helpful to install the vscode plugin for graphql to pick up syntax highlighting for `.graphql` files. ### Styling From 9e95549b755aa5d16c78a5525f41b2165702a530 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:16:16 +0300 Subject: [PATCH 4/4] typos README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4ba55c118..8dc6005a6 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ For an introduction to Nouns Builder and its concept, you can find further [docu - `zoralabs-zord`: Shareable ui components - `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) - `tsconfig`: `tsconfig.json`s used throughout the monorepo -- `ipfs-service`: api to for image uploads to ipfs +- `ipfs-service`: api to for image uploads ipfs ## Quickstart @@ -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.