Type alias SchemaContractV0

SchemaContractV0: {
    init?: SchemaFunctionV1;
    receive: Map<EntrypointName, SchemaFunctionV1>;
    state?: SchemaType;
}

Describes all the schemas of a V0 smart contract.

Type declaration

  • Optional init?: SchemaFunctionV1

    Schemas for the init-function.

  • receive: Map<EntrypointName, SchemaFunctionV1>

    Map of schemas for the receive-functions.

  • Optional state?: SchemaType

    Schema for the smart contract state.

Generated using TypeDoc