@@ -179,60 +179,18 @@ npm run compile
179179
180180### Deploy contracts
181181
182- Deploy contracts to networks such as goerli , harmonytest, polygontest, ganache, mainnet, harmony, polygon or avalanche.
182+ Deploy contracts to networks such as sepolia , harmonytest, polygontest, ganache, mainnet, harmony, polygon or avalanche.
183183
184184``` sh
185- npm run deploy goerli
186- ```
187-
188- OR
189-
190- ``` sh
191- npm run deploy harmonytest
192- ```
193-
194- OR
195-
196- ``` sh
197- npm run deploy polygontest
198- ```
199-
200- OR
201-
202- ``` sh
203- npm run deploy avalanchetest
204- ```
205-
206- OR
207-
208- ``` sh
209- npm run deploy mainnet
210- ```
211-
212- OR
213-
214- ``` sh
215- npm run deploy harmony
216- ```
217-
218- OR
219-
220- ``` sh
221- npm run deploy polygon
222- ```
223-
224- OR
225-
226- ``` sh
227- npm run deploy avalanche
185+ npm run deploy sepolia
228186```
229187
230188For more information about the deployment, see the in logs [ logs/contracts] ( logs/contracts )
231189
232190### Verify contracts
233191
234192``` sh
235- npm run verify goerli
193+ npm run verify sepolia
236194```
237195
238196OR
@@ -248,21 +206,21 @@ In the same `.env` file created under the `tribute-contracts` folder, set the fo
248206```
249207######################## Tribute UI env vars ########################
250208
251- # Configure the UI to use the Goerli network for local development
252- REACT_APP_DEFAULT_CHAIN_NAME_LOCAL=GOERLI
209+ # Configure the UI to use the Sepolia network for local development
210+ REACT_APP_DEFAULT_CHAIN_NAME_LOCAL=SEPOLIA
253211
254212# It can be the same value you used for the Tribute DAO deployment.
255213REACT_APP_INFURA_PROJECT_ID_DEV=YOUR_INFURA_API_KEY
256214
257- # The address of the Multicall smart contract deployed to the Goerli network.
258- # Copy that from the tribute-contracts/build/contracts-goerli -YYYY-MM-DD-HH:mm:ss.json
215+ # The address of the Multicall smart contract deployed to the Sepolia network.
216+ # Copy that from the tribute-contracts/build/contracts-sepolia -YYYY-MM-DD-HH:mm:ss.json
259217REACT_APP_MULTICALL_CONTRACT_ADDRESS=0x...
260218
261- # The address of the DaoRegistry smart contract deployed to the Goerli network.
262- # Copy that from the tribute-contracts/build/contracts-goerli -YYYY-MM-DD-HH:mm:ss.json
219+ # The address of the DaoRegistry smart contract deployed to the Sepolia network.
220+ # Copy that from the tribute-contracts/build/contracts-sepolia -YYYY-MM-DD-HH:mm:ss.json
263221REACT_APP_DAO_REGISTRY_CONTRACT_ADDRESS=0x...
264222
265- # Enable Goerli network for Tribute UI
223+ # Enable Sepolia network for Tribute UI
266224REACT_APP_ENVIRONMENT=development
267225```
268226
@@ -326,7 +284,7 @@ Snapshot-hub:
326284- ` ENV ` : To indicate in which environment it is being executed: local, dev, or prod
327285- ` USE_IPFS ` : To indicated the pinning service on IPFS should be enabled/disabled (if enabled cause delay in the responses)
328286- ` RELAYER_PK ` : The PK of the account that will be used to sign the messages.
329- - ` NETWORK ` : The network name that will be used by the relayer (use testnet for goerli and mainnet for the main ethereum network)
287+ - ` NETWORK ` : The network name that will be used by the relayer (use testnet for sepolia and mainnet for the main ethereum network)
330288- ` JAWSDB_URL ` : The postgres url: postgres://user: pwd @host:5432/db-name
331289- ` ALLOWED_DOMAINS ` : The list of domains that should be allowed to send requests to the API
332290- ` ALCHEMY_API_URL ` : The relayer API (alternative to Infura)
0 commit comments