Skip to content

Commit

Permalink
Migrate to Sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
ardier16 committed Feb 22, 2024
1 parent e42f4ae commit b494b11
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .env-development
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ VITE_ISSUER_API_URL=https://issuer.polygon.robotornot.mainnet-beta.rarimo.com
VITE_APP_NAME=Identity | dev
VITE_CLAIM_OFFER_DELAY=2000
VITE_CLAIM_OFFER_MAX_TRIES_COUNT=40
VITE_DEFAULT_CHAIN=GOERLI
VITE_IDENTITY_SBT_VERIFIER_CONTRACT_ADDRESS_GOERLI=0x86906AbAAfA7F58Fb4D3125BD1971Fcf04F52CDd
VITE_DEFAULT_CHAIN=SEPOLIA
VITE_IDENTITY_SBT_VERIFIER_CONTRACT_ADDRESS_SEPOLIA=0x862e0673919068efeA3caa4059Bb7a2e03cA3279
VITE_KYC_VERIFICATION_DELAY=1000
VITE_UNSTOPPABLE_DOMAINS_CLIENT_ID=0b5cfed5-ddbb-4f17-83a7-df967204fabc
VITE_WORLDCOIN_APP_ID=app_staging_57fb7b672557043bebccf82b2b4ca030
Expand All @@ -17,4 +17,4 @@ VITE_COMMUNITY_LINK=https://discord.gg/EcVcxPGaZp
VITE_GA_ID=G-6PTZ0C0LN5
VITE_DASHBOARD_LINK=https://dashboard.stage.rarime.com

VITE_SUPPORTED_CHAINS_DETAILS={"GOERLI":{"id":"5","name":"Goerli","rpcUrl":"https://ethereum-goerli.publicnode.com","explorerUrl":"https://goerli.etherscan.io/","token":{"name":"ETH","symbol":"ETH","decimals":18},"type":"EVM","icon":"ethereum"}}
VITE_SUPPORTED_CHAINS_DETAILS={"SEPOLIA":{"id":"11155111","name":"Sepolia","rpcUrl":"https://ethereum-sepolia-rpc.publicnode.com","explorerUrl":"https://sepolia.etherscan.io/","token":{"name":"ETH","symbol":"ETH","decimals":18},"type":"EVM","icon":"ethereum"}}
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ VITE_CLAIM_OFFER_DELAY=1000
# redirect link for success page
VITE_EXTERNAL_PLATFORM_REDIRECT_URL=https://galxe.com/

VITE_DEFAULT_CHAIN=GOERLI
VITE_IDENTITY_SBT_VERIFIER_CONTRACT_ADDRESS_GOERLI=
VITE_IDENTITY_VERIFIER_CONTRACT_ADDRESS_GOERLI=
VITE_DEFAULT_CHAIN=SEPOLIA
VITE_IDENTITY_SBT_VERIFIER_CONTRACT_ADDRESS_SEPOLIA=
VITE_IDENTITY_VERIFIER_CONTRACT_ADDRESS_SEPOLIA=

VITE_SUPPORTED_CHAINS_DETAILS=

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ VITE_LIGHTWEIGHT_STATE_V2_CONTRACT_ADDRESS_[VITE_DEFAULT_CHAIN_VALUE]=0x00000000
To update variables in deployed app - setup .env variables from .env.example to [env.js](./static/env.js) but in `JSON` format, and change `VITE_` prefix to `VITE_APP`
```js
document.ENV = document.ENV || Object.freeze({
VITE_DEFAULT_CHAIN: "GOERLI",
VITE_IDENTITY_SBT_VERIFIER_CONTRACT_ADDRESS_GOERLI: "0x...",
VITE_IDENTITY_VERIFIER_CONTRACT_ADDRESS_GOERLI: "0x...",
VITE_DEFAULT_CHAIN: "SEPOLIA",
VITE_IDENTITY_SBT_VERIFIER_CONTRACT_ADDRESS_SEPOLIA: "0x...",
VITE_IDENTITY_VERIFIER_CONTRACT_ADDRESS_SEPOLIA: "0x...",
...,
})
```
Expand Down

0 comments on commit b494b11

Please sign in to comment.