Skip to content
Merged
Changes from all commits
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
5 changes: 5 additions & 0 deletions packages/dev-chain-fast/src/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ async function deploy() {
console.log(`- address: ${wallet.address} (private key: ${wallet.privateKey})`)
}

// TODO move this e.g. to deploySponsorshipFactory() when deterministic contract address are in use (ETH-807)
// Currently all transactions affect the contract address calculation, i.e. some contract addresses change
// (relative to what's in @streamr/config) if this transaction is executed inside deploySponsorshipFactory()
await (await streamrEnvDeployer.contracts.streamrConfig.setMinimumDelegationSeconds(1)).wait()

const contractAddresses = {
...streamrEnvDeployer.addresses,
...hubDeployer.addresses,
Expand Down
Loading