Skip to content

Commit

Permalink
fix: remove store contracts addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
mrekucci committed Aug 14, 2024
1 parent 3e78702 commit 7b80064
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.

This file was deleted.

6 changes: 3 additions & 3 deletions contracts/scripts/DeployScripts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ contract DeployScript is Script {
providerRegistry.setPreconfirmationsContract(
address(preConfCommitmentStore)
);
console.log("ProviderRegistryWithPreConfCommitmentStore:", address(preConfCommitmentStore));
console.log("_ProviderRegistryWithPreConfCommitmentStore:", address(preConfCommitmentStore));

bidderRegistry.setPreconfirmationsContract(
address(preConfCommitmentStore)
);
console.log("BidderRegistryWithPreConfCommitmentStore:", address(preConfCommitmentStore));
console.log("_BidderRegistryWithPreConfCommitmentStore:", address(preConfCommitmentStore));

address oracleProxy = Upgrades.deployUUPSProxy(
"Oracle.sol",
Expand All @@ -105,7 +105,7 @@ contract DeployScript is Script {
console.log("Oracle:", address(oracle));

preConfCommitmentStore.updateOracleContract(address(oracle));
console.log("PreConfCommitmentStoreWithOracle:", address(oracle));
console.log("_PreConfCommitmentStoreWithOracle:", address(oracle));

vm.stopBroadcast();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ job "{{ job.name }}" {
echo "${LOGS}" \
| sed -n '/{.*}/p' \
| jq -c 'reduce .logs[] as $item ({}; . + {($item | split(": ")[0]): ($item | split(": ")[1])})' \
| jq -c 'del(._*)' \
> local/www/contracts.json

python3 -m http.server {{ job.ports[0]['http']['static'] }} --directory /local/www
Expand Down

0 comments on commit 7b80064

Please sign in to comment.