package octez-protocol-019-PtParisB-libs

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Cpmm_repr.ParameterSource

Sourcetype add_liquidity = {
  1. owner : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Contract.t;
  2. minLqtMinted : Z.t;
  3. maxTokensDeposited : Z.t;
  4. deadline : Tezos_protocol_019_PtParisB.Protocol.Script_timestamp.t;
}
Sourcetype remove_liquidity = {
  1. to_ : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Contract.t;
  2. lqtBurned : Z.t;
  3. minXtzWithdrawn : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Tez.t;
  4. minTokensWithdrawn : Z.t;
  5. deadline : Tezos_protocol_019_PtParisB.Protocol.Script_timestamp.t;
}
Sourcetype token_to_token = {
  1. outputDexterContract : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Contract.t;
  2. minTokensBought : Z.t;
  3. to_ : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Contract.t;
  4. tokensSold : Z.t;
  5. deadline : Tezos_protocol_019_PtParisB.Protocol.Script_timestamp.t;
}
Sourcetype token_to_xtz = {
  1. to_ : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Contract.t;
  2. tokensSold : Z.t;
  3. minXtzBought : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Tez.t;
  4. deadline : Tezos_protocol_019_PtParisB.Protocol.Script_timestamp.t;
}
Sourcetype xtz_to_token = {
  1. to_ : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Contract.t;
  2. minTokensBought : Z.t;
  3. deadline : Tezos_protocol_019_PtParisB.Protocol.Script_timestamp.t;
}
Sourcetype t =
  1. | AddLiquidity of add_liquidity
  2. | Default of unit
  3. | RemoveLiquidity of remove_liquidity
  4. | TokenToToken of token_to_token
  5. | TokenToXtz of token_to_xtz
  6. | XtzToToken of xtz_to_token
Sourceval addLiquidity : add_liquidity -> t
Sourceval default : unit -> t
Sourceval removeLiquidity : remove_liquidity -> t
Sourceval tokenToToken : token_to_token -> t
Sourceval tokenToXtz : token_to_xtz -> t
Sourceval xtzToToken : xtz_to_token -> t
Sourceval add_liquidity_to_string : add_liquidity -> string
Sourceval remove_liquidity_to_string : remove_liquidity -> string
Sourceval token_to_token_to_string : token_to_token -> string
Sourceval token_to_xtz_to_string : token_to_xtz -> string
Sourceval xtz_to_token_to_string : xtz_to_token -> string
Sourceval to_string : t -> string
Sourceval entrypoint_of_parameter : t -> Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Entrypoint.t
Sourceval pp : Format.formatter -> t -> unit
Sourceval eq : 'a -> 'a -> bool
Sourceval to_expr_rooted : loc:int -> t -> (int, Tezos_protocol_019_PtParisB.Protocol.Michelson_v1_primitives.prim) Tezos_micheline.Micheline.node
Sourceval to_expr : loc:int -> t -> (int, Tezos_protocol_019_PtParisB.Protocol.Michelson_v1_primitives.prim) Tezos_micheline.Micheline.node
Sourceval to_michelson_string : t -> string
OCaml

Innovation. Community. Security.