Strategy
Create a Strategy
import { Cohort, Strategy } from '@nucypher/nucypher-ts';
const config = {
threshold: 3,
shares: 5,
porterUri: 'https://porter-ibex.nucypher.community',
};
const newCohort = await Cohort.create(config);
const newStrategy = Strategy.create(
newCohort
);Deploy a Strategy
Import and Export Strategies
Last updated
Was this helpful?