package octez-protocol-011-PtHangz2-libs
Octez protocol 011-PtHangz2 libraries
Install
Dune Dependency
Authors
Maintainers
Sources
octez-19.1.tar.gz
sha256=55ea1fb8bb3273a7fc270ca8f650d45c56449665619482aad9bc12f3ea736b7e
sha512=fec850fc2d17d7490bbabd5147d62aad13b3aaed8774270f8a38ab419670ed03e0fd30cf8642a97984eca5c2446726fe590ad99c015f7ec50919dc7652f25053
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)"
>