Skip to content

Commit

Permalink
Merge pull request #574 from balancer/ethers-to-deps
Browse files Browse the repository at this point in the history
chore: Add ethers v5 to deps instead of dev deps.
  • Loading branch information
johngrantuk authored May 14, 2024
2 parents e7c2a5e + af7fd11 commit 6d131c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion balancer-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
"eslint": "^7.9.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^3.1.4",
"ethers": "^5.0.0",
"fishery": "^2.2.2",
"hardhat": "^2.9.3",
"mocha": "^8.2.1",
Expand Down Expand Up @@ -98,6 +97,7 @@
"@ethersproject/contracts": "^5.4.0",
"@ethersproject/providers": "^5.4.5",
"axios": "^0.24.0",
"ethers": "^5",
"graphql": "^15.6.1",
"graphql-request": "^3.5.0",
"json-to-graphql-query": "^2.2.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const migrations = (network: 1 | 137) => {
};

const remoteRpcUrls = {
[Network.MAINNET]: 'https://rpc.ankr.com/eth',
[Network.POLYGON]: 'https://rpc.ankr.com/polygon',
[Network.MAINNET]: process.env.ALCHEMY_URL,
[Network.POLYGON]: process.env.ALCHEMY_URL_POLYGON,
};

const blockNumbers = {
Expand Down
2 changes: 1 addition & 1 deletion balancer-js/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3482,7 +3482,7 @@ ethereumjs-util@^7.1.4:
ethereum-cryptography "^0.1.3"
rlp "^2.2.4"

ethers@^5.0.0:
ethers@^5:
version "5.7.2"
resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.7.2.tgz#3a7deeabbb8c030d4126b24f84e525466145872e"
integrity sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==
Expand Down

0 comments on commit 6d131c6

Please sign in to comment.