package octez-protocol-011-PtHangz2-libs
Octez protocol 011-PtHangz2 libraries
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-18.1.tar.gz
sha256=aa2f5bc99cc4ca2217c52a1af2a2cdfd3b383208cb859ca2e79ca0903396ca1d
sha512=d68bb3eb615e3dcccc845fddfc9901c95b3c6dc8e105e39522ce97637b1308a7fa7aa1d271351d5933febd7476b2819e1694f31198f1f0919681f1f9cc97cb3a
doc/octez-protocol-011-PtHangz2-libs.client/Tezos_client_011_PtHangz2/Client_proto_multisig/index.html
Module Tezos_client_011_PtHangz2.Client_proto_multisig
Source
Source
type multisig_action =
| Transfer of {
amount : Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Tez.t;
destination : Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Contract.t;
entrypoint : string;
parameter_type : Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Script.expr;
parameter : Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Script.expr;
}
| Change_delegate of Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.public_key_hash option
| Lambda of Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Script.expr
| Change_keys of Z.t * Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.public_key list
Source
type multisig_prepared_action = {
bytes : Tezos_base.TzPervasives.Bytes.t;
threshold : Z.t;
keys : Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.public_key list;
counter : Z.t;
entrypoint : string option;
generic : bool;
}
Source
val 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_011_PtHangz2.Protocol.Alpha_context.Tez.t ->
?gas_limit:
Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Gas.Arith.integral ->
?storage_limit:Z.t ->
?verbose_signing:bool ->
delegate:
Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.public_key_hash option ->
threshold:Z.t ->
keys:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.public_key list ->
balance:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Tez.t ->
source:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.public_key_hash ->
src_pk:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.public_key ->
src_sk:Tezos_client_base.Client_keys_v0.sk_uri ->
fee_parameter:Injection.fee_parameter ->
unit ->
(Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Kind.origination
Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Kind.manager
Injection.result
* Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Contract.t)
Tezos_base.TzPervasives.tzresult
Lwt.t
Source
val 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_011_PtHangz2.Protocol.Alpha_context.Contract.t ->
action:multisig_action ->
unit ->
multisig_prepared_action Tezos_base.TzPervasives.tzresult Lwt.t
Source
val 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_011_PtHangz2.Protocol.Alpha_context.public_key_hash ->
src_pk:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.public_key ->
src_sk:Tezos_client_base.Client_keys_v0.sk_uri ->
multisig_contract:
Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Contract.t ->
action:multisig_action ->
signatures:Tezos_crypto.Signature.V0.t list ->
amount:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Tez.t ->
?fee:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Tez.t ->
?gas_limit:
Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Gas.Arith.integral ->
?storage_limit:Z.t ->
?counter:Z.t ->
fee_parameter:Injection.fee_parameter ->
unit ->
(Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Kind.transaction
Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Kind.manager
Injection.result
* Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Contract.t list)
Tezos_base.TzPervasives.tzresult
Lwt.t
Source
val 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_011_PtHangz2.Protocol.Alpha_context.public_key_hash ->
src_pk:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.public_key ->
src_sk:Tezos_client_base.Client_keys_v0.sk_uri ->
multisig_contract:
Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Contract.t ->
bytes:Tezos_base.TzPervasives.Bytes.t ->
signatures:Tezos_crypto.Signature.V0.t list ->
amount:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Tez.t ->
?fee:Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Tez.t ->
?gas_limit:
Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Gas.Arith.integral ->
?storage_limit:Z.t ->
?counter:Z.t ->
fee_parameter:Injection.fee_parameter ->
unit ->
(Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Kind.transaction
Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Kind.manager
Injection.result
* Tezos_protocol_011_PtHangz2.Protocol.Alpha_context.Contract.t list)
Tezos_base.TzPervasives.tzresult
Lwt.t
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>