Adding an Existing Plugin
Multicall Plugin
To add this plugin to an existing DAO:
1. Deploy a new Multicall plugin using the factory contract.
[
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "genericSchemeMultiCall",
"type": "address"
}
],
"name": "NewGenericSchemeMultiCall",
"type": "event"
},
{
"constant": true,
"inputs": [],
"name": "CUSTOM",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "FAST",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "NORMAL",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "SLOW",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"internalType": "contract Avatar",
"name": "_avatar",
"type": "address"
},
{
"internalType": "contract IntVoteInterface",
"name": "_votingMachine",
"type": "address"
},
{
"internalType": "uint8",
"name": "_voteParamsType",
"type": "uint8"
},
{
"internalType": "uint256[11]",
"name": "_votingParams",
"type": "uint256[11]"
},
{
"internalType": "address",
"name": "_voteOnBehalf",
"type": "address"
},
{
"internalType": "address[]",
"name": "_contractsWhiteList",
"type": "address[]"
},
{
"internalType": "string",
"name": "_descriptionHash",
"type": "string"
}
],
"name": "createGenericSchemeMultiCallSimple",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
}
]
2. Get the address of your new plugin from Etherscan.

3. Propose to add this plugin to your DAO.

Last updated
Was this helpful?
