Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 2.23 KB

ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner.md

File metadata and controls

37 lines (29 loc) · 2.23 KB

ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner

Properties

Name Type Description Notes
anchor str Defines a Merkle tree root of a note commitment tree which uniquely identifies a note commitment tree state given the assumed security properties of the Merkle tree’s hash function.
cipher_texts List[str]
commitments List[str]
macs List[str]
nullifiers List[str]
one_time_pub_key str Defines the one time public key.
proof str Defines the proof.
random_seed str Represents a 256-bit seed that must be chosen independently at random for each JoinSplit description.
v_pub_new str Defines the value that the joinSplit transfer will insert into the transparent transaction value pool.
v_pub_old str Defines the value that the joinSplit transfer will remove from the transparent transaction value pool.

Example

from cryptoapis.models.list_confirmed_transactions_by_address_ribszv_join_split_inner import ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner

# TODO update the JSON string below
json = "{}"
# create an instance of ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner from a JSON string
list_confirmed_transactions_by_address_ribszv_join_split_inner_instance = ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner.from_json(json)
# print the JSON string representation of the object
print ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner.to_json()

# convert the object into a dict
list_confirmed_transactions_by_address_ribszv_join_split_inner_dict = list_confirmed_transactions_by_address_ribszv_join_split_inner_instance.to_dict()
# create an instance of ListConfirmedTransactionsByAddressRIBSZVJoinSplitInner from a dict
list_confirmed_transactions_by_address_ribszv_join_split_inner_form_dict = list_confirmed_transactions_by_address_ribszv_join_split_inner.from_dict(list_confirmed_transactions_by_address_ribszv_join_split_inner_dict)

[Back to Model list] [Back to API list] [Back to README]