Skip to content

Commit 8441365

Browse files
committed
mainnet updates
1 parent c2d17d8 commit 8441365

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ coverage/
1010
/broadcast/*/31337/
1111
/broadcast/*/84532/
1212
!/broadcast/*/84532/run-latest.json
13+
/broadcast/*/8453/
14+
!/broadcast/*/8453/run-latest.json
1315
/broadcast/**/dry-run/
1416

1517
# Forge files

deployments/8453.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"LLMOracleRegistry": {
3+
"proxyAddr": "0x7645eef691ad9dc0f29b6abfc73cca4c8be44051",
4+
"implAddr": "0xfc9bc11ef75575c8c048989a874356ce2d1fd290"
5+
},
6+
"LLMOracleCoordinator": {
7+
"proxyAddr": "0x17b6d1eddcd5f9ca19bb2ffed2f3deb6bd74bd20",
8+
"implAddr": "0x01547c5e13fd80ea6f3b7811acda51cf3989f832"
9+
}
10+
}

script/Helper.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ contract Helper is Script {
1414
/// see https://book.getfoundry.sh/cheatcodes/external for more.
1515
function getDeploymentsJson() external view returns (string memory) {
1616
string memory chainId = Strings.toString(block.chainid);
17-
string memory path = string.concat("deployments/", chainId, "addresses.json");
17+
string memory path = string.concat("deployments/", chainId, ".json");
1818

1919
return vm.readFile(path);
2020
}

0 commit comments

Comments
 (0)