/** * Entrypoint script function payloads. * * @module */ /** * Script function payload for `0x1::coins::register`. * * Entry function to register to receive a specific `CoinType`. An account that wants to hold a coin type * has to explicitly registers to do so. The register creates a special `CoinStore` * to hold the specified `CoinType`. */ export declare type Register = { readonly type: "script_function_payload"; readonly function: "0x1::coins::register"; readonly arguments: []; readonly type_arguments: [CoinType: string]; }; //# sourceMappingURL=payloads.d.ts.map