-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Integrate chain config * Add temporary DapiDataRegistry storage * Self review
- Loading branch information
Showing
10 changed files
with
921 additions
and
5 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 |
---|---|---|
|
@@ -9,3 +9,5 @@ dist | |
node_modules | ||
coverage | ||
.DS_Store | ||
airseeker.json | ||
secrets.env |
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,29 @@ | ||
{ | ||
"sponsorWalletMnemonic": "${SPONSOR_WALLET_MNEMONIC}", | ||
"chains": { | ||
"31337": { | ||
"contracts": { | ||
"Api3ServerV1": "0xe7f1725E7734CE288F8367e1Bb143E90bb3F0512" | ||
}, | ||
"__Temporary__DapiDataRegistry": { | ||
"airnodeToSignedApiUrl": { | ||
"0xbF3137b0a7574563a23a8fC8badC6537F98197CC": "http://127.0.0.1:8090/" | ||
}, | ||
"dataFeedIdToBeacons": { | ||
"0xebba8507d616ed80766292d200a3598fdba656d9938cecc392765d4a284a69a4": [ | ||
{ | ||
"airnode": "0xbF3137b0a7574563a23a8fC8badC6537F98197CC", | ||
"templateId": "0xcc35bd1800c06c12856a87311dd95bfcbb3add875844021d59a929d79f3c99bd" | ||
} | ||
] | ||
}, | ||
"activeDapiNames": ["ETH/USD"] | ||
}, | ||
"providers": { | ||
"hardhat": { | ||
"url": "${HARDHAT_PROVIDER_URL}" | ||
} | ||
} | ||
} | ||
} | ||
} |
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,5 @@ | ||
# Secrets must NOT be quoted. | ||
# | ||
# The mnemonic is randomly generated. !!! USE ONLY FOR DEVELOPMENT PURPOSES !!!. | ||
SPONSOR_WALLET_MNEMONIC=wonder assume clip draw aisle issue angle holiday puzzle glass worry ball | ||
HARDHAT_PROVIDER_URL=http://127.0.0.1:8545/ |
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
Oops, something went wrong.