@vechain/sdk-core
Version:
This module is crafted for dApp development and various blockchain operations that seamlessly unfold offline
22 lines (18 loc) • 439 B
TypeScript
/**
* Options for creating a clause.
*/
interface ClauseOptions {
/**
* Optional value for the clause wei units as hexadecimal expression.
*/
value?: string;
/**
* Optional comment for the clause, helpful for displaying what the clause is doing.
*/
comment?: string;
/**
* Optional ABI for the contract method invocation.
*/
includeABI?: boolean;
}
export type { ClauseOptions };