PartyFactory
Create Party
(createParty)
nonpayable
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
});