Skip to content

Commit

Permalink
Decommissioned Sokol and replaced with a new Chiado testnet (#220)
Browse files Browse the repository at this point in the history
* Decommissioned Sokol and replaced with a new Chiado testnet

* Version updated
  • Loading branch information
kaushalrajbacancy authored Apr 28, 2023
1 parent ed8716f commit 53c49eb
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "etherspot",
"version": "1.43.0",
"version": "1.43.1",
"description": "Etherspot SDK",
"keywords": [
"ether",
Expand Down Expand Up @@ -42,7 +42,7 @@
},
"dependencies": {
"@apollo/client": "3.4.0",
"@etherspot/contracts": "1.9.6",
"@etherspot/contracts": "1.9.7",
"@lifi/sdk": "1.6.4",
"@nerdwallet/apollo-cache-policies": "1.2.1",
"class-transformer": "0.4.0",
Expand Down
2 changes: 1 addition & 1 deletion schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1126,7 +1126,7 @@ enum NetworkNames {
Mainnet
Matic
Mumbai
Sokol
Chiado
Xdai
Optimism
ArbitrumTest
Expand Down
2 changes: 1 addition & 1 deletion src/sdk/env/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const SUPPORTED_ENVS: { [key: string]: Env } = {
networkOptions: {
supportedNetworkNames: [
NetworkNames.Goerli,
NetworkNames.Sokol,
NetworkNames.Chiado,
NetworkNames.BscTest,
NetworkNames.FantomTest,
NetworkNames.Mumbai,
Expand Down
4 changes: 2 additions & 2 deletions src/sdk/network/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export enum NetworkNames {
Mainnet = 'mainnet',
Goerli = 'goerli',
Xdai = 'xdai',
Sokol = 'sokol',
Chiado = 'chiado',
Bsc = 'bsc',
BscTest = 'bscTest',
Fantom = 'fantom',
Expand Down Expand Up @@ -39,7 +39,7 @@ export const NETWORK_NAME_TO_CHAIN_ID: {
[NetworkNames.Mainnet]: 1,
[NetworkNames.Goerli]: 5,
[NetworkNames.Xdai]: 100,
[NetworkNames.Sokol]: 77,
[NetworkNames.Chiado]: 10200,
[NetworkNames.Bsc]: 56,
[NetworkNames.BscTest]: 97,
[NetworkNames.Fantom]: 250,
Expand Down

0 comments on commit 53c49eb

Please sign in to comment.