Skip to content

Commit 72fca54

Browse files
xeno097claude
andcommitted
feat: add bsc and tea deploy parameters
Check in the generated leaf deploy scripts for bsc and tea, alongside the deployment addresses already recorded for those chains. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent 39f7d39 commit 72fca54

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// SPDX-License-Identifier: UNLICENSED
2+
pragma solidity ^0.8.15;
3+
4+
import {XERC20DeployFixture} from "../../xerc20/XERC20DeployFixture.s.sol";
5+
6+
contract DeployBase is XERC20DeployFixture {
7+
function setUp() public override {
8+
_params = XERC20DeployFixture.DeploymentParameters({
9+
tokenAdmin: 0xa7ECcdb9Be08178f896c26b7BbD8C3D4E844d9Ba,
10+
outputFilename: "bsc.json"
11+
});
12+
}
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// SPDX-License-Identifier: UNLICENSED
2+
pragma solidity ^0.8.15;
3+
4+
import {XERC20DeployFixture} from "../../xerc20/XERC20DeployFixture.s.sol";
5+
6+
contract DeployBase is XERC20DeployFixture {
7+
function setUp() public override {
8+
_params = XERC20DeployFixture.DeploymentParameters({
9+
tokenAdmin: 0xa7ECcdb9Be08178f896c26b7BbD8C3D4E844d9Ba,
10+
outputFilename: "tea.json"
11+
});
12+
}
13+
}

0 commit comments

Comments
 (0)