package octez-protocol-019-PtParisB-libs

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

Module Tezos_client_019_PtParisB.Client_proto_multisigSource

Sourceval multisig_script : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Script.expr
Sourcetype multisig_action =
  1. | Transfer of {
    1. amount : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Tez.t;
    2. destination : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Contract.t;
    3. entrypoint : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Entrypoint.t;
    4. parameter_type : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Script.expr;
    5. parameter : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Script.expr;
    }
  2. | Change_delegate of Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key_hash option
  3. | Lambda of Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Script.expr
  4. | Change_keys of Z.t * Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key list
Sourcetype multisig_prepared_action = {
  1. bytes : Tezos_base.TzPervasives.Bytes.t;
  2. threshold : Z.t;
  3. keys : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key list;
  4. counter : Z.t;
  5. entrypoint : Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Entrypoint.t option;
  6. generic : bool;
}
Sourceval known_multisig_hashes : Tezos_protocol_019_PtParisB.Protocol.Script_expr_hash.t list
Sourceval originate_multisig : Protocol_client_context.full -> chain:Tezos_shell_services.Shell_services.chain -> block:Tezos_shell_services.Shell_services.block -> ?confirmations:int -> ?dry_run:bool -> ?branch:int -> ?fee:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Tez.t -> ?gas_limit: Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Gas.Arith.integral -> ?safety_guard: Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Gas.Arith.integral -> ?storage_limit:Z.t -> ?verbose_signing:bool -> delegate: Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key_hash option -> threshold:Z.t -> keys:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key list -> balance:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Tez.t -> source:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key_hash -> src_pk:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key -> src_sk:Tezos_client_base.Client_keys.sk_uri -> fee_parameter:Injection.fee_parameter -> unit -> (Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Kind.origination Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Kind.manager Injection.result * Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Contract.t) Tezos_base.TzPervasives.tzresult Lwt.t
Sourceval prepare_multisig_transaction : Protocol_client_context.full -> chain:Tezos_shell_services.Shell_services.chain -> block:Tezos_shell_services.Shell_services.block -> multisig_contract:Tezos_protocol_019_PtParisB.Protocol.Contract_hash.t -> action:multisig_action -> unit -> multisig_prepared_action Tezos_base.TzPervasives.tzresult Lwt.t
Sourceval call_multisig : Protocol_client_context.full -> chain:Tezos_shell_services.Shell_services.chain -> block:Tezos_shell_services.Shell_services.block -> ?confirmations:int -> ?dry_run:bool -> ?verbose_signing:bool -> ?branch:int -> source:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key_hash -> src_pk:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key -> src_sk:Tezos_client_base.Client_keys.sk_uri -> multisig_contract:Tezos_protocol_019_PtParisB.Protocol.Contract_hash.t -> action:multisig_action -> signatures:Tezos_base.TzPervasives.Signature.t list -> amount:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Tez.t -> ?fee:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Tez.t -> ?gas_limit: Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Gas.Arith.integral -> ?safety_guard: Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Gas.Arith.integral -> ?storage_limit:Z.t -> ?counter:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Manager_counter.t -> fee_parameter:Injection.fee_parameter -> unit -> (Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Kind.transaction Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Kind.manager Injection.result * Tezos_protocol_019_PtParisB.Protocol.Contract_hash.t list) Tezos_base.TzPervasives.tzresult Lwt.t
Sourceval call_multisig_on_bytes : Protocol_client_context.full -> chain:Tezos_shell_services.Shell_services.chain -> block:Tezos_shell_services.Shell_services.block -> ?confirmations:int -> ?dry_run:bool -> ?verbose_signing:bool -> ?branch:int -> source:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key_hash -> src_pk:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.public_key -> src_sk:Tezos_client_base.Client_keys.sk_uri -> multisig_contract:Tezos_protocol_019_PtParisB.Protocol.Contract_hash.t -> bytes:Tezos_base.TzPervasives.Bytes.t -> signatures:Tezos_base.TzPervasives.Signature.t list -> amount:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Tez.t -> ?fee:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Tez.t -> ?gas_limit: Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Gas.Arith.integral -> ?safety_guard: Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Gas.Arith.integral -> ?storage_limit:Z.t -> ?counter:Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Manager_counter.t -> fee_parameter:Injection.fee_parameter -> unit -> (Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Kind.transaction Tezos_protocol_019_PtParisB.Protocol.Alpha_context.Kind.manager Injection.result * Tezos_protocol_019_PtParisB.Protocol.Contract_hash.t list) Tezos_base.TzPervasives.tzresult Lwt.t
OCaml

Innovation. Community. Security.