Mainnet Deployment
Cohort Formation
Mainnet use of TACo post-cohort formation
import { domains } from "@nucypher/taco"
// This should be a environment variable
const rpcProviderUrl = "https://polygon-mainnet.infura.io/v3/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
const provider = new ethers.providers.JsonRpcProvider(rpcProviderUrl);
const domain = domains.MAINNET;
const id = 0 // Replace by the relevant ID
// TACo operations
...Last updated