Skip to content

Commit a233a3f

Browse files
committedMar 8, 2024··
feat: 🎸 Upgraded test tokens contracts in Chiado
1 parent 6b05297 commit a233a3f

14 files changed

+289
-197
lines changed
 

‎contracts/test/MockERC20Dec18.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ contract MockERC20Dec18 is
3838
_unpause();
3939
}
4040

41-
function mint(address to, uint256 amount) public onlyOwner {
41+
function mint(address to, uint256 amount) public {
4242
_mint(to, amount);
4343
}
4444

‎deploy/002.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const setupToken = async (
5353
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
5454
const { network, deployments, getNamedAccounts } = hre;
5555

56-
if (!["polzktest", "chiado"].includes(network.name)) {
56+
if (!["chiado"].includes(network.name)) {
5757
return;
5858
}
5959

‎deployments/chiado/LIF.json

+2-2
Large diffs are not rendered by default.

‎deployments/chiado/LIF_Implementation.json

+44-44
Large diffs are not rendered by default.

‎deployments/chiado/STABLE18.json

+2-2
Large diffs are not rendered by default.

‎deployments/chiado/STABLE18PERMIT.json

+2-2
Large diffs are not rendered by default.

‎deployments/chiado/STABLE18PERMIT_Implementation.json

+44-44
Large diffs are not rendered by default.

‎deployments/chiado/STABLE18_Implementation.json

+26-26
Large diffs are not rendered by default.

‎deployments/chiado/STABLE6.json

+2-2
Large diffs are not rendered by default.

‎deployments/chiado/STABLE6PERMIT.json

+2-2
Large diffs are not rendered by default.

‎deployments/chiado/STABLE6PERMIT_Implementation.json

+44-44
Large diffs are not rendered by default.

‎deployments/chiado/STABLE6_Implementation.json

+26-26
Large diffs are not rendered by default.

‎deployments/chiado/solcInputs/3acf1e9aac700d678ca25a4cb51968a9.json

+92
Large diffs are not rendered by default.

‎utils/network.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export function nodeUrl(networkName: string): string {
1515

1616
if (networkName === "localhost") {
1717
// do not use ETH_NODE_URI
18-
return "http://localhost:8545";
18+
return "http://0.0.0.0:8545";
1919
}
2020

2121
let uri = process.env.ETH_NODE_URI;

0 commit comments

Comments
 (0)
Please sign in to comment.