thirdweb

Create Party

(createParty)

nonpayable

partyImpl

authorities

Input should be passed in JSON format - Ex: ["0x..."]

opts

Input should be passed in JSON format - Ex: { "governance": { "hosts": ["0x..."], "voteDuration": "0", "executionDelay": "0", "passThresholdBps": "0", "totalVotingPower": "0", "feeBps": "0", "feeRecipient": "0x..." }, "proposalEngine": { "enableAddAuthorityProposal": true, "allowArbCallsToSpendPartyEth": true, "allowOperators": true, "distributionsConfig": "0" }, "name": "...", "symbol": "...", "customizationPresetId": "0" }

preciousTokens

Input should be passed in JSON format - Ex: ["0x..."]

preciousTokenIds

Input should be passed in JSON format - Ex: ["0"]

rageQuitTimestamp


Sign in

Use this function in your app


import { prepareContractCall, sendTransaction } from "thirdweb"; const transaction = await prepareContractCall({ contract, method: "function createParty(address partyImpl, address[] authorities, ((address[] hosts, uint40 voteDuration, uint40 executionDelay, uint16 passThresholdBps, uint96 totalVotingPower, uint16 feeBps, address feeRecipient) governance, (bool enableAddAuthorityProposal, bool allowArbCallsToSpendPartyEth, bool allowOperators, uint8 distributionsConfig) proposalEngine, string name, string symbol, uint256 customizationPresetId) opts, address[] preciousTokens, uint256[] preciousTokenIds, uint40 rageQuitTimestamp) returns (address party)", params: [partyImpl, authorities, opts, preciousTokens, preciousTokenIds, rageQuitTimestamp] }); const { transactionHash } = await sendTransaction({ transaction, account });