Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(protocol): add proto_broker / oracle_prover addresses into AddressManager in deploy_L1 script #13079

Merged
merged 2 commits into from
Jan 31, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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