Skip to content

Commit

Permalink
Merge pull request #55 from windingtree/gnosis-chiado
Browse files Browse the repository at this point in the history
feat: 🎸 Upgraded test tokens contracts in Chiado
  • Loading branch information
kostysh authored Mar 8, 2024
2 parents 88ae2ed + a233a3f commit f0eb116
Show file tree
Hide file tree
Showing 14 changed files with 289 additions and 197 deletions.
2 changes: 1 addition & 1 deletion contracts/test/MockERC20Dec18.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ contract MockERC20Dec18 is
_unpause();
}

function mint(address to, uint256 amount) public onlyOwner {
function mint(address to, uint256 amount) public {
_mint(to, amount);
}

Expand Down
2 changes: 1 addition & 1 deletion deploy/002.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const setupToken = async (
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const { network, deployments, getNamedAccounts } = hre;

if (!["polzktest", "chiado"].includes(network.name)) {
if (!["chiado"].includes(network.name)) {
return;
}

Expand Down
4 changes: 2 additions & 2 deletions deployments/chiado/LIF.json

Large diffs are not rendered by default.

88 changes: 44 additions & 44 deletions deployments/chiado/LIF_Implementation.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions deployments/chiado/STABLE18.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions deployments/chiado/STABLE18PERMIT.json

Large diffs are not rendered by default.

88 changes: 44 additions & 44 deletions deployments/chiado/STABLE18PERMIT_Implementation.json

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions deployments/chiado/STABLE18_Implementation.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions deployments/chiado/STABLE6.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions deployments/chiado/STABLE6PERMIT.json

Large diffs are not rendered by default.

88 changes: 44 additions & 44 deletions deployments/chiado/STABLE6PERMIT_Implementation.json

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions deployments/chiado/STABLE6_Implementation.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion utils/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function nodeUrl(networkName: string): string {

if (networkName === "localhost") {
// do not use ETH_NODE_URI
return "http://localhost:8545";
return "http://0.0.0.0:8545";
}

let uri = process.env.ETH_NODE_URI;
Expand Down

0 comments on commit f0eb116

Please sign in to comment.