Skip to content
Open
Show file tree
Hide file tree
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
Prev Previous commit
Next Next commit
updates from upstream
  • Loading branch information
InoMurko committed Nov 6, 2024
commit 1e365f148082e9481f528a4b8c0c53cfb13fa195
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