Skip to main content

PrimarySale

Functionality available for contracts that inherit the PrimarySale contract.

getRecipient

Get the primary sale recipient.

const salesRecipient = await contract.sales.getRecipient();
Configuration

Return Value

Returns a string containing the wallet address of the primary sale recipient.

string;

setRecipient

Set the primary sale recipient.

await contract.sales.setRecipient("{{wallet_address}}");
Configuration

recipient

The wallet address of the primary sale recipient.

Must be a string.