Skip to content

Commit

Permalink
feat(protocol): add proto_broker address into AddressManager in d…
Browse files Browse the repository at this point in the history
…eploy_L1 script
  • Loading branch information
davidtaikocha committed Jan 31, 2023
1 parent d69c369 commit 53019c2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/protocol/tasks/deploy_L1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,15 @@ export async function deployContracts(hre: any) {
await AddressManager.setAddress(`${chainId}.taiko`, TaikoL1.address)
);

// Used by TkoToken
await utils.waitTx(
hre,
await AddressManager.setAddress(
`${chainId}.proto_broker`,
TaikoL1.address
)
);

// Bridge
const Bridge = await deployBridge(hre, AddressManager.address);

Expand Down

0 comments on commit 53019c2

Please sign in to comment.