Skip to content

Commit

Permalink
Merge branch 'test-interface' into poller
Browse files Browse the repository at this point in the history
  • Loading branch information
mfw78 authored Jun 27, 2024
2 parents f2e764e + bc6e62b commit 0638da6
Show file tree
Hide file tree
Showing 5 changed files with 464 additions and 0 deletions.
145 changes: 145 additions & 0 deletions broadcast/ConstantProductHelper.s.sol/1/run-1719408725.json

Large diffs are not rendered by default.

242 changes: 242 additions & 0 deletions broadcast/ConstantProductHelper.s.sol/100/run-1719409081.json

Large diffs are not rendered by default.

46 changes: 46 additions & 0 deletions broadcast/ConstantProductHelper.s.sol/11155111/run-1719475870.json

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,19 @@
"address": "0xbd18758055dbe3ed37a2471394559ae97a5da5c0",
"transactionHash": "0x6bb46c17360c05537b2b0a5f750e407c976c1839c219e555a02e79e3587fcab8"
}
},
"ConstantProductHelper": {
"1": {
"address": "0xac1fd793691299b701ae211094985853497789ec",
"transactionHash": "0xf34747baf268ffd3e35c1b9546e2bfbc506928ec8ebd9af521dc9ad6c726d347"
},
"100": {
"address": "0x18a2facebef44a72dfdcc52ef9588fefc84fdfbf",
"transactionHash": "0xcdbc954d309e0c1a68e5ab499530ce53ef20001ae47e092525578fb228d8fab9"
},
"11155111": {
"address": "0x758fe3195f6499fd64de2b96a0b97d0441c10bab",
"transactionHash": "0x544836f65ba99d61687dc829fb8d1ef657ca29b5011fca4d2758c677256d570a"
}
}
}
17 changes: 17 additions & 0 deletions script/single-deployment/ConstantProductHelper.s.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.24;

import {Script} from "forge-std/Script.sol";

import {ConstantProductHelper} from "src/ConstantProductHelper.sol";

contract DeployConstantProductHelper is Script {
function run() public virtual {
deployConstantProductHelper();
}

function deployConstantProductHelper() internal returns (ConstantProductHelper) {
vm.broadcast();
return new ConstantProductHelper();
}
}

0 comments on commit 0638da6

Please sign in to comment.