ποΈRaffleTix
Raffle Tickets are awarded to users for participating in the KUTHULU ecosystem. They are used to grant access to NFT mints and other rewards. They can also be purchased with MATIC.
Table of Contents
Public Functions
mintTix
Name
Type
Description
const ethers = require('ethers');
const provider = new ethers.providers.JsonRpcProvider('<rpc-url>');
const signer = new ethers.Wallet('<private-key>', provider);
const contract = new ethers.Contract('<contract-address>', abi, signer);
let quantity = 5;
async function mintRaffleTix() {
let tx = await contract.mintTix(quantity, { value: ethers.utils.parseEther((costToMint * quantity).toString()) });
console.log(tx.hash);
}
mintRaffleTix();claimTix
checkTix
Name
Type
Description
getWhaleSizes
getWhales
Name
Type
Description
tokenURI
Name
Type
Description
Multi-Sig Functions
addMultiSigLock
Name
Type
Description
activateMultiSigLock
Name
Type
Description
removeMultiSigLock
Name
Type
Description
getMultiSigAddress
Name
Type
Description
isMultiSigLocked
Name
Type
Description
Last updated