-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '72fc4584597ab936b2ea45d2b7f2baf5b26eb393'
- Loading branch information
Showing
9 changed files
with
94 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,11 @@ | ||
{ | ||
"addresses": [ | ||
{ | ||
"Deployer": "0x7a2088a1bFc9d81c55368AE168C2C02570cB814F" | ||
}, | ||
{ | ||
"ERC721Base": "0x09635F643e140090A9A8Dcd712eD6285858ceBef" | ||
}, | ||
{ | ||
"ERC20Base": "0xc5a5C42992dECbae36851359345FE25997F5C42d" | ||
}, | ||
{ | ||
"RouterFactory": "0x67d269191c92Caf3cD7723F116c85e6E9bf55933" | ||
}, | ||
{ | ||
"FixedRateExchange": "0xE6E340D132b5f46d1e472DebcD681B2aBc16e57E" | ||
}, | ||
{ | ||
"IDentity": "0xc3e53F4d16Ae77Db1c982e75a937B9f60FE63690" | ||
}, | ||
{ | ||
"ERC721Factory": "0x84eA74d481Ee0A5332c457a4d796187F6Ba67fEB" | ||
} | ||
] | ||
"addresses": { | ||
"Deployer": "0xd17dD3803786E6c7E5B466bd2c22eD6718bA36D7", | ||
"ERC721Base": "0x5cF677D2D7844B7CE367093e2EAE01F36AdC7953", | ||
"ERC20Base": "0xf26d2BCF934AF6Ac388E0F3c4888Bd26B76857Fc", | ||
"RouterFactory": "0x371D33e3e61AD98dA65361BbBCB81d26af03bF4C", | ||
"FixedRateExchange": "0xf74A8E86D90E90eafb468d6bF5c142Ac17E1bfcc", | ||
"IDentityAddress": "0xa8f364E1829eBf480e738057953b38f79fe2E17A", | ||
"ERC721Factory": "0x90A98F282Db0d6df64e83AF48011C46D83B8F8cE" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
npx hardhat --network localhost faucet 0xF9692336D7f37336C2061a545D8b2895B1415EFe & ^ | ||
npx hardhat --network localhost faucet 0xACC7CE50Be9D1db2eF86f804F5bC03b53681Fcbe & ^ | ||
npx hardhat --network localhost faucet 0xBB3fb731CC4b103C072594E226A396F84C3E5DF4 & ^ | ||
npx hardhat --network localhost faucet 0x25B2E1942578bCBB1Aa6E8EAa038DfE73440fcbe & ^ | ||
npx hardhat --network localhost faucet 0xAba0719cc3E1187A4C9Caf6773D9766541C2Dd8D & ^ | ||
npx hardhat --network localhost faucet 0xd0300C2817624BDd6C34F1d8e44857046dE13110 & ^ | ||
npx hardhat --network localhost faucet 0xD12270A9054d045ba276C16Cb1C64386cDAA6AC7 & ^ | ||
npx hardhat --network localhost faucet 0x6d3fbD514D62E2D305e4435dDe99483f20f264BF & ^ | ||
npx hardhat run --network hardhat-issuer scripts/deploy.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
require("dotenv").config(); | ||
const ethers = require("ethers"); | ||
const fs =require("fs") ; | ||
|
||
|
||
const addresses = JSON.parse(fs.readFileSync(process.env.ADDRESS_FILE)).addresses; | ||
|
||
console.log(`Deployer address: ${addresses.Deployer}`) | ||
console.log(`ERC721Base address: ${addresses.ERC721Base}`) | ||
console.log(`ERC721Factory address: ${addresses.ERC721Factory}`) | ||
console.log(`ERC20Base address: ${addresses.ERC20Base}`) | ||
console.log(`FixedRateExchange address: ${addresses.FixedRateExchange}`) | ||
console.log(`IDentityAddress address: ${addresses.IDentityAddress}`) | ||
|
||
|