Skip to content

Commit

Permalink
updates from upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
InoMurko committed Oct 29, 2024
1 parent 3f9b951 commit 5d90dcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/setup-fast-withdrawal/1-create_multisig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async function main() {
//execute the transaction
//https://help.safe.global/en/articles/40834-verify-safe-creation
//in the executed transaction find `ProxyCreation` event
//Data singleton : <address> is what you're looing for
//Data proxy : <address> is what you're looing for
}

main();
Original file line number Diff line number Diff line change
Expand Up @@ -129,16 +129,15 @@ async function main() {

// Batch poster configuration
const timeDelay = getTimeDelayFromNumberOfBlocks(parentChain.id, minimumAssertionPeriod);
console.log('Your batch poster has to run at least nitro v3.1.1');
console.log('Your batch poster has to run at least nitro v3.1.2');
console.log('Add the following parameter:');
console.log(`--node.batch-poster.max-delay=${timeDelay}`);
console.log('');

// Validator configuration
console.log('Your validators have to run at least nitro v3.1.1');
console.log('Your validators have to run at least nitro v3.1.2');
console.log('Add the following parameters:');
console.log(`--node.staker.enable-fast-confirmation=true`);
console.log(`--node.staker.fast-confirm-safe-address=${process.env.FC_VALIDATORS_SAFE_ADDRESS}`);
console.log(`--node.staker.make-assertion-interval=${timeDelay}`);
console.log('');

Expand Down

0 comments on commit 5d90dcd

Please sign in to comment.