Skip to content

Commit

Permalink
feat(protocol): deploy a test ERC-20 token to test bridge (#13132)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha authored Feb 10, 2023
1 parent 50e1661 commit 95596e4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/protocol/tasks/deploy_L1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,10 @@ export async function deployContracts(hre: any) {
);
}

// BullToken
// TODO(david): remove this deployment after we finish bridge testing in devnet.
const BullToken = await utils.deployContract(hre, "BullToken");

// save deployments
const deployments = {
network,
Expand All @@ -245,7 +249,8 @@ export async function deployContracts(hre: any) {
{ TaikoL1: TaikoL1.address },
{ Bridge: Bridge.address },
{ SignalService: SignalService.address },
{ TokenVault: TokenVault.address }
{ TokenVault: TokenVault.address },
{ BullToken: BullToken.address }
),
};

Expand Down

0 comments on commit 95596e4

Please sign in to comment.