The Contract class within the HyperMint SDK allows various interactions with your HyperMint contract.

A pre-constructed code snippet can be found within the developer tab on the contract page within the dashboard.

For example:

const { Contract } = HyperMint;

const contract = new Contract({
    contractId: '<<contract id>>',
    enableLogging: true
});

See constructor() for more information.


What’s Next