pour_out
Call parameters
type pour_out_t is [@layout:comb] record [
receiver : contract(unit);
amt : nat;
]Field
Type
Description
Usage
Errors
Last updated
An entrypoint that withdraws TEZ tokens to the receiver from the parameters (mostly to the DexCore contract).
type pour_out_t is [@layout:comb] record [
receiver : contract(unit);
amt : nat;
]receiver
contract(unit)
Receiver of TEZ tokens
amt
nat
Amount to withdraw
Only DexCore contract can call this entrypoint.
403 - sender of the transaction is not DexCore contract.
412 - non payable entrypoint (can't accept TEZ tokens during call of an entrypoint).
Last updated