Skip to content

Commit 096f316

Browse files
committed
feat: lisk
1 parent b4b0977 commit 096f316

6 files changed

Lines changed: 320 additions & 2 deletions

File tree

broadcast/Deploy.s.sol/1135/run-1732707792.json

Lines changed: 152 additions & 0 deletions
Large diffs are not rendered by default.

broadcast/Deploy.s.sol/1135/run-latest.json

Lines changed: 152 additions & 0 deletions
Large diffs are not rendered by default.

deploy-lisk.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source .env
2+
forge script ./script/Deploy.s.sol --tc DeployLisk --ffi --json --rpc-url lisk --private-key $MODE_PRIVATE_KEY --broadcast --verify --verifier blockscout --verifier-url https://blockscout.lisk.com/api? -vvv

foundry.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ mode = "https://mainnet.mode.network"
1313
base = "https://mainnet.base.org"
1414
optimism = "https://mainnet.optimism.io"
1515
bob = "https://rpc.gobob.xyz"
16-
fraxtal = "https://rpc.frax.com"
16+
fraxtal = "https://rpc.frax.com"
17+
lisk = "https://rpc.api.lisk.com"

script/Deploy.s.sol

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,14 @@ contract DeployFraxtal is Script, DeployHelper {
5858
vm.stopBroadcast();
5959
}
6060
}
61+
62+
contract DeployLisk is Script, DeployHelper {
63+
function setUp() public {}
64+
65+
function run() public {
66+
address multisig = 0x03A376468888cee39Fa23C234201Ba704992e030;
67+
vm.startBroadcast();
68+
_deployImplementationAndProxy(multisig, false);
69+
vm.stopBroadcast();
70+
}
71+
}

test/IonicToken.t.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ contract IonicTokenTest is Test, DeployHelper {
1313
function setUp() public {
1414
(owner, ownerPk) = makeAddrAndKey("alice");
1515
vm.startPrank(owner);
16-
_deployImplementationAndProxy(msg.sender);
16+
_deployImplementationAndProxy(msg.sender, true);
1717
vm.stopPrank();
1818

1919
sigUtils = new SigUtils(token.DOMAIN_SEPARATOR());

0 commit comments

Comments
 (0)