A tool for generating predeployed MultiSigWallet smart contract
pip install multisigwallet-predeployed
from multisigwallet_predeployed import MultiSigWalletGenerator, MULTISIGWALLET_ADDRESS
ORIGINATOR_ADDRESS = '0xd200000000000000000000000000000000000000'
multisigwallet_generator = MultiSigWalletGenerator()
genesis = {
# genesis block parameters
'alloc': {
**multisigwallet_generator.generate_allocation(
contract_address=MULTISIGWALLET_ADDRESS,
originator_addresses=[ORIGINATOR_ADDRESS]
)
}
}