- A multisig wallet is a smart contract for transferring funds or interacting with other contracts. The transfers are done based on approval from multiple addresses.
- You can use the smart contract and the associated library provided by parity as a multisig wallet for managing your funds.
- The library contains an initWallet function. Use this to set the address of owners and other basic parameters:
function initWallet( address[] _owners, uint _required, uint _daylimit) { initDaylimit(_daylimit); initMultiowned(_owners, _required);}
- While deploying a wallet contract, the initWallet function will be called from the constructor wallet contract. This is probably to bring some reusability to the constructor code.
- You can use ...