Skip to content

Commit

Permalink
chore: phase out goerli (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCardinalError authored Jan 31, 2024
1 parent 78440cb commit 4fdb26e
Show file tree
Hide file tree
Showing 14 changed files with 1,436 additions and 791 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,6 @@ Feel free to use public RPCs but if you want extra security and speed, feel free

**Note** can also use npx instead of yarn, so it would be 'yarn hardhat compile'. For fastest typing you can install https://hardhat.org/hardhat-runner/docs/guides/command-line-completion and then just run 'hh compile' 'hh test'

**Note:** If using Goerli as tesnet be aware that GAS prices are very high and maybe you will should add custom gasPrice that is very high if you want to get your picked up fast, set it in hardhat.config.ts or as options when deploying

**Note:** After successfully deploying to mainnet or testnet the [mainnet_deployed.json](./mainnet_deployed.json) and [testnet_deployed.json](./testnet_deployed.json) will be automatically updated and those changes should be committed as bee node is picking them up as data that is used in nodes. This is done utilizing codegen/generate_src.sh script that is activated as github action, more on this at the bottom in Releasing section

**Note:** `WALLET_SECRET` can be **Mnemonic** or **Private Key**.
Expand Down
2 changes: 1 addition & 1 deletion deploy/test/009_deploy_local_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const func: DeployFunction = async function ({ deployments, network, config }) {

if (fileName.length == 0 || !fs.existsSync(fileName)) {
fileName = network.name + '_deployed.json';
if (network.name == 'pretestnet' || network.name == 'sepolia') {
if (network.name == 'pretestnet' || network.name == 'testnet') {
fileName = 'testnet_deployed.json';
}
}
Expand Down
2 changes: 1 addition & 1 deletion deployments/testnet/.chainId
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5
11155111
72 changes: 36 additions & 36 deletions deployments/testnet/PostageStamp.json

Large diffs are not rendered by default.

146 changes: 86 additions & 60 deletions deployments/testnet/PriceOracle.json

Large diffs are not rendered by default.

180 changes: 102 additions & 78 deletions deployments/testnet/Redistribution.json

Large diffs are not rendered by default.

101 changes: 54 additions & 47 deletions deployments/testnet/StakeRegistry.json

Large diffs are not rendered by default.

Loading

0 comments on commit 4fdb26e

Please sign in to comment.