API Documentation

crypto.configuration.fee

get_fee()

1def get_fee(transaction_type):

Get a fee for a given transaction type

Parameters

Type Name Required Description
int transaction_type Yes Transaction type for which we wish to get a fee

Return Value

<class 'int'>

set_fee()

1def set_fee(transaction_type, value):

Set a fee

Parameters

Type Name Required Description
int transaction_type Yes Transaction type for which we wish to set a fee
int value Yes Fee for a given transaction type

Return Value

<class 'NoneType'>

crypto.configuration.network

set_network()

1def set_network(network_object):

Set what network you want to use in the crypto library

Parameters

Type Name Required Description
Network network_object Yes Testnet, Devnet, Mainnet

Return Value

<class 'NoneType'>

get_network()

1def get_network():

Get settings for a selected network, default network is devnet

Return Value

<class 'dict'>

set_custom_network()

1def set_custom_network(epoch, version, wif):

Set custom network

Parameters

Type Name Required Description
datetime epoch Yes Network epoch time
int version Yes Network version
int wif Yes Network WIF

Return Value

<class 'NoneType'>

crypto.identity.address

address_from_public_key()

1def address_from_public_key(public_key, network_version=None):

Get an address from a public key

Parameters

Type Name Required Description
str public_key Yes Public key
int network_version No Version of the network

Return Value

<class 'str'>

address_from_private_key()

1def address_from_private_key(private_key, network_version=None):

Get an address from private key

Parameters

Type Name Required Description
str private_key Yes Private key
int network_version No Version of the network

Return Value

<class 'str'>

address_from_passphrase()

1def address_from_passphrase(passphrase, network_version=None):

Get an address from passphrase

Parameters

Type Name Required Description
str passphrase Yes Passphrase
int network_version No Version of the network

Return Value

<class 'str'>

validate_address()

1def validate_address(address, network_version=None):

Validate a given address

Parameters

Type Name Required Description
str address Yes Address to validate
int network_version No Version of the network

Return Value

<class 'bool'>

crypto.identity.private_key.PrivateKey

sign()

1def sign(self, message):

Sign a message with this private key object

Parameters

Type Name Required Description
str message Yes Bytes data you want to sign

Return Value

<class 'NoneType'>

to_hex()

1def to_hex(self):

Returns a private key in hex format

Return Value

<class 'str'>

from_passphrase()

1def from_passphrase(cls, passphrase):

Create PrivateKey object from a given passphrase

Parameters

Type Name Required Description
str passphrase Yes Passphrase

Return Value

<class 'PrivateKey'>

from_hex()

1def from_hex(self, private_key):

Create PrivateKey object from a given hex private key

Parameters

Type Name Required Description
str private_key Yes Private key

Return Value

<class 'PrivateKey'>

crypto.identity.public_key.PublicKey

to_hex()

1def to_hex(self):

Returns a public key in hex format

Return Value

<class 'str'>

from_passphrase()

1def from_passphrase(cls, passphrase):

Create PublicKey object from a given passphrase

Parameters

Type Name Required Description
str passphrase Yes Passphrase

Return Value

<class 'PublicKey'>

from_hex()

1def from_hex(cls, public_key):

Create PublicKey object from a given hex private key

Parameters

Type Name Required Description
str public_key Yes Public key

Return Value

<class 'PublicKey'>

crypto.identity.wif

wif_from_passphrase()

1def wif_from_passphrase(passphrase, network_wif=None):

Get wif from passphrase

Parameters

Type Name Required Description
str passphrase Yes Passphrase
int network_wif No Network WIF

Return Value

<class 'str'>

crypto.transactions.builder.base.BaseTransactionBuilder

to_dict()

1def to_dict(self):

Convert the transaction to its dictionary representation.

Return Value

<class 'dict'>

to_json()

1def to_json(self):

Convert the transaction to its JSON representation

Return Value

<class 'dict'>

schnorr_sign()

1def schnorr_sign(self, passphrase):

Sign the transaction using the given passphrase

Parameters

Type Name Required Description
str passphrase Yes Passphrase associated with the account sending this transaction

Return Value

<class 'NoneType'>

second_sign()

1def second_sign(self, passphrase):

Sign the transaction using the given second passphrase

Parameters

Type Name Required Description
str passphrase Yes Second passphrase associated with the account sending this transaction

Return Value

<class 'NoneType'>

multi_sign()

1def multi_sign(self, passphrase, index):

Sign the transaction using the given passphrase. A signature will be generated inside the signatures array of the transaction at the specified index.

Parameters

Type Name Required Description
str passphrase Yes Passphrase associated with the account sending this transaction
int index Yes Index of the signature for the signatures array. Starts at 0.

Return Value

<class 'NoneType'>

verify_schnorr()

1def verify_schnorr(self):

Verify the transaction validity

Return Value

<class 'bool'>

schnorr_verify_multisig()

1def schnorr_verify_multisig(self):

Verify the multisignature transaction validity

Return Value

<class 'bool'>

set_nonce()

1def set_nonce(self, nonce):

Set the nonce of the transaction.

Parameters

Type Name Required Description
int nonce Yes Sequential Nonce of the transaction

Return Value

<class 'NoneType'>

set_amount()

1def set_amount(self, amount):

Set the amount of the transaction.

Parameters

Type Name Required Description
int amount Yes Amount of the transaction

Return Value

<class 'NoneType'>

set_sender_public_key()

1def set_sender_public_key(self, public_key):

Set the Public Key of the transaction.

Parameters

Type Name Required Description
str public_key Yes Public key of the transaction

Return Value

<class 'NoneType'>

set_expiration()

1def set_expiration(self, expiration):

Set the block-height or time when the transaction should expire.

Parameters

Type Name Required Description
int, HTLC_LOCK_EXPIRATION_TYPE expiration Yes Expiration of the transaction

Return Value

<class 'NoneType'>

set_type_group()

1def set_type_group(self, type_group):

Set the type group of the transaction.

Parameters

Type Name Required Description
int, TRANSACTION_TYPE_GROUP type_group Yes Type group of the transaction

Return Value

<class 'NoneType'>

crypto.transactions.builder.delegate_registration.DelegateRegistration

__init__()

1def __init__(self, username, fee=None):

Create a new DelegateRegistration transaction instance

Parameters

Type Name Required Description
str username Yes Delegate username
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.delegate_registration.DelegateRegistration'>

sign()

1def sign(self, passphrase):

Sign the transaction using the given passphrase

Parameters

Type Name Required Description
str passphrase Yes Passphrase

Return Value

<class 'NoneType'>

crypto.transactions.builder.delegate_resignation.DelegateResignation

__init__()

1def __init__(self, fee=None):

Create a new DelegateResignation transaction instance

Parameters

Type Name Required Description
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.delegate_resignation.DelegateResignation'>

get_type_group()

1def get_type_group(self):

Get the type group of the Transaction.

Return Value

<class 'int'>

crypto.transactions.builder.ipfs.IPFS

__init__()

1def __init__(self, fee=None):

Create a new IPFS transaction instance

Parameters

Type Name Required Description
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.ipfs.IPFS'>

get_type_group()

1def get_type_group(self):

Get the type group of the Transaction.

Return Value

<class 'int'>

crypto.transactions.builder.multi_payment.MultiPayment

__init__()

1def __init__(self, fee=None):

Create a new MultiPayment transaction instance

Parameters

Type Name Required Description
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.multi_payment.MultiPayment'>

get_type_group()

1def get_type_group(self):

Get the type group of the Transaction.

Return Value

<class 'int'>

add_payment()

1def add_payment(self, amount, recipient_id):

Add a payment to the Payments array of a Transaction.

Parameters

Type Name Required Description
int amount Yes Transaction amount
string recipient_id Yes Transaction recipient

Return Value

<class 'NoneType'>

crypto.transactions.builder.multi_signature_registration.MultiSignatureRegistration

__init__()

1def __init__(self, fee=None):

Create a new MultiSignatureRegistration transaction instance

Parameters

Type Name Required Description
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.multi_signature_registration.MultiSignatureRegistration'>

set_min()

1def set_min(self, minimum_participants):

Set the minimum amount of participants of a Transaction.

Parameters

Type Name Required Description
int minimum_participants Yes Transaction minimum participants

Return Value

<class 'NoneType'>

set_public_keys()

1def set_public_keys(self, public_keys):

Set the public keys of a Transaction.

Parameters

Type Name Required Description
list public_keys Yes Transaction public keys participants

Return Value

<class 'NoneType'>

add_participant()

1def add_participant(self, public_key):

Add a participant with his public key to the Transaction.

Parameters

Type Name Required Description
str public_key Yes Participant public key

Return Value

<class 'NoneType'>

crypto.transactions.builder.second_signature_registration.SecondSignatureRegistration

__init__()

1def __init__(self, second_passphrase, fee=None):

Create a new SecondSignatureRegistration transaction instance

Parameters

Type Name Required Description
str second_passphrase No Second passphrase
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.second_signature_registration.SecondSignatureRegistration'>

crypto.transactions.builder.htlc_lock.HtlcLock

__init__()

1def __init__(self, recipient_id, secret_hash, expiration_type, expiration_value, fee=None):

Create a new HtlcLock transaction instance

Parameters

Type Name Required Description
str recipient_id Yes Transaction recipient
str secret_hash Yes Transaction secret hash. The same hash must be used in the corresponding “claim” transaction
int expiration_type Yes Transaction expiration type. Either block height or network epoch timestamp based
int expiration_value Yes Transaction expiration value. The block-height or time when the transaction should expire
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.htlc_lock.HtlcLock'>

get_type_group()

1def get_type_group(self):

Get the type group of the Transaction.

Return Value

<class 'int'>

crypto.transactions.builder.htlc_claim.HtlcClaim

__init__()

1def __init__(self, transaction_id, unlock_secret, fee=None):

Create a new HtlcClaim transaction instance

Parameters

Type Name Required Description
str transaction_id Yes HTLC Lock transaction id
str unlock_secret Yes Transaction secret hash
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.htlc_claim.HtlcClaim'>

get_type_group()

1def get_type_group(self):

Get the type group of the Transaction.

Return Value

<class 'int'>

crypto.transactions.builder.htlc_refund.HtlcRefund

__init__()

1def __init__(self, transaction_id, fee=None):

Create a new HtlcRefund transaction instance

Parameters

Type Name Required Description
str transaction_id Yes HTLC Lock transaction id
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.htlc_refund.HtlcRefund'>

get_type_group()

1def get_type_group(self):

Get the type group of the Transaction.

Return Value

<class 'int'>

crypto.transactions.builder.Transfer.Transfer

__init__()

1def __init__(self, recipientId, amount, vendorField=None, fee=None):

Create a new Transfer transaction instance

Parameters

Type Name Required Description
str recipientId Yes Recipient identifier
int amount Yes Transaction amount
str vendorField No Transaction vendorfield
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.transfer.Transfer'>

crypto.transactions.builder.vote.Vote

__init__()

1def __init__(self, vote, fee=None):

Create a new Vote transaction instance

Parameters

Type Name Required Description
str vote Yes Vote
int fee No Transaction fee

Return Value

<class 'crypto.transactions.builder.vote.Vote'>

sign()

1def sign(self, passphrase):

Sign the transaction using the given passphrase

Parameters

Type Name Required Description
str passphrase Yes Passphrase

Return Value

<class 'NoneType'>

crypto.transactions.deserializers.base

__init__()

1def __init__(self, serialized, asset_offset, transaction):

Create a new deserializer instance

Parameters

Type Name Required Description
??? serialized Yes Serialized
??? asset_offset Yes Offset
??? transaction Yes Transaction

Return Value

<class 'crypto.transactions.deserializers.base.BaseDeserializer'>

deserialize()

1def deserialize(self):

Handle the deserialization of transaction data

Return Value

NotImplementedError

crypto.transactions.deserializers.delegate_registration

deserialize()

1def deserialize(self):

Handle the deserialization of “delegate registration” data

Return Value

<class 'dict'>

crypto.transactions.deserializers.delegate_resignation

deserialize()

1def deserialize(self):

Handle the deserialization of “delegate resignation” data

Return Value

<class 'dict'>

crypto.transactions.deserializers.htlc_lock

deserialize()

1def deserialize(self):

Handle the deserialization of “HTLC Lock” data

Return Value

<class 'dict'>

crypto.transactions.deserializers.htlc_claim

deserialize()

1def deserialize(self):

Handle the deserialization of “HTLC Claim” data

Return Value

<class 'dict'>

crypto.transactions.deserializers.htlc_refund

deserialize()

1def deserialize(self):

Handle the deserialization of “HTLC refund” data

Return Value

<class 'dict'>

crypto.transactions.deserializers.ipfs

deserialize()

1def deserialize(self):

Handle the deserialization of “IPFS” data

Return Value

<class 'dict'>

crypto.transactions.deserializers.multi_payment

deserialize()

1def deserialize(self):

Handle the deserialization of “multi payments” data

Return Value

<class 'dict'>

crypto.transactions.deserializers.multi_signature_registration

deserialize()

1def deserialize(self):

Handle the deserialization of “multi signature registration” data

Return Value

<class 'dict'>

crypto.transactions.deserializers.second_signature_registration

deserialize()

1def deserialize(self):

Handle the deserialization of “second signature” data.

Return Value

<class 'dict'>

crypto.transactions.deserializers.transfer

deserialize()

1def deserialize(self):

Handle the deserialization of “transfer” data

Return Value

<class 'dict'>

crypto.transactions.deserializers.vote

deserialize()

1def deserialize(self):

Handle the deserialization of “vote” data.

Return Value

<class 'dict'>

crypto.transactions.serializers.base

__init__()

1def __init__(self, transaction, byte_data=bytes()):

Create a new serializer instance

Parameters

Type Name Required Description
Transaction transaction Yes Transaction
bytes byte_data No

Return Value

<class 'crypto.transactions.serializers.base.BaseSerializer'>

serialize

1def serialize(self):

Handle the serialization of transaction data

Return Value

NotImplementedError

crypto.transactions.serializers.delegate_registration

serialize

1def serialize(self):

Handle the serialization of “delegate registration” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.delegate_resignation

serialize

1def serialize(self):

Handle the serialization of “delegate resignation” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.htlc_lock

serialize()

1def serialize(self):

Handle the serialization of “HTLC Lock” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.htlc_claim

serialize()

1def serialize(self):

Handle the serialization of “HTLC Claim” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.htlc_refund

serialize()

1def serialize(self):

Handle the serialization of “HTLC Refund” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.ipfs

serialize

1def serialize(self):

Handle the serialization of “ipfs” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.multi_payment

serialize

1def serialize(self):

Handle the serialization of “multi payment” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.multi_signature_registration

serialize

1def serialize(self):

Handle the serialization of “multi signature” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.second_signature_registration

serialize

1def serialize(self):

Handle the serialization of “second signature” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.transfer

serialize

1def serialize(self):

Handle the serialization of “transfer” data

Return Value

<class 'bytes'>

crypto.transactions.serializers.vote

serialize

1def serialize(self):

Handle the serialization of “vote” data

Return Value

<class 'bytes'>

crypto.transactions.deserializer

__init__

1def __init__(self, serialized):

Create a new deserializer instance

Parameters

Type Name Required Description
str serialized Yes Serialized

Return Value

<class 'crypto.transactions.deserializer.Deserializer'>

deserialize

1def deserialize(self):

Perform AIP11 compliant deserialization

Return Value

<class 'crypto.transactions.transaction.Transaction'>

_handle_transaction_type

1def _handle_transaction_type(self, asset_offset, transaction):

Handle the deserialization of transaction data

Parameters

Type Name Required Description
int asset_offset Yes Offset
transaction.Transaction transaction Yes Transaction

Return Value

<class 'crypto.transactions.transaction.Transaction'>

_handle_version_two

1def _handle_version_two(self, transaction):

Handle the deserialization of transaction data with a version of 2.0.

Parameters

Type Name Required Description
transaction.Transaction transaction Yes Transaction

Return Value

<class 'NoneType'>

crypto.transactions.serializer

__init__

1def __init__(self, transaction):

Create a new serializer instance

Parameters

Type Name Required Description
transaction.Transaction transaction Yes Transaction

Return Value

<class 'crypto.transactions.serializer.Serializer'>

serialize

1def serialize(self, skip_signature=True, skip_second_signature=True, skip_multi_signature=True, raw=False):

Perform AIP11 compliant serialization

Parameters

Type Name Required Description
bool skip_signature No Should we skip the serialization of the signature
bool skip_second_signature No Should we skip the serialization of the second signature
bool skip_multi_signature No Should we skip the serialization of multiple signatures
bool raw No Raw output

Return Value

<class 'str'>

_handle_transaction_type

1def _handle_transaction_type(self, bytes_data):

Handle the serialization of transaction data

Parameters

Type Name Required Description
bytes bytes_data Yes

Return Value

<class 'bytes'>

_handle_signature

1def _handle_signature(self, bytes_data, skip_signature, skip_second_signature, skip_multi_signature):

Handle the serialization of “signatures” data

Parameters

Type Name Required Description
bytes bytes_data Yes
bool skip_signature Yes Should we skip the serialization of the signature
bool skip_second_signature Yes Should we skip the serialization of the second signature
bool skip_multi_signature Yes Should we skip the serialization of multiple signatures

Return Value

<class 'bytes'>

crypto.transactions.transaction

__init__

1def __init__(self, *args, **kwargs):

Create a new transaction instance

Parameters

Type Name Required Description
any *args No
any **kwargs No

Return Value

<class 'crypto.transactions.transaction.Transaction'>

get_id

1def get_id(self):

Convert the byte representation to a unique identifier

Return Value

<class 'str'>

to_dict

1def to_dict(self):

Convert the transaction to its dictionary representation.

Return Value

<class 'dict'>

to_json

1def to_json(self):

Convert the transaction to its JSON representation

Return Value

<class 'dict'>

to_bytes

1def to_bytes(self, skip_signature=True, skip_second_signature=True, skip_multi_signature=True):

Convert the transaction to its byte representation

Parameters

Type Name Required Description
bool skip_signature Yes Skip first signature
bool skip_second_signature Yes Skip second signature
bool skip_multi_signature Yes Skip multi signatures

Return Value

<class 'bytes'>

parse_signatures

1def parse_signatures(self, serialized, start_offset):

Parse the signature, second signature and multi signatures

Parameters

Type Name Required Description
str serialized Yes Serialized
int start_offset Yes Offset

Return Value

<class 'NoneType'>

serialize

1def serialize(self, skip_signature=True, skip_second_signature=True, skip_multi_signature=True):

Perform AIP11 compliant serialization

Parameters

Type Name Required Description
bool skip_signature Yes Skip first signature
bool skip_second_signature Yes Skip second signature
bool skip_multi_signature Yes Skip multi signatures

Return Value

<class 'str'>

deserialize

1def deserialize(self, serialized):

Perform AIP11 compliant deserialization

Parameters

Type Name Required Description
str serialized Yes Serialized

Return Value

<class 'str'>

verify_schnorr

1def verify_schnorr(self):

Verify the transaction. Method will raise an exception if invalid, if it’s valid it will returns True

Return Value

<class 'bool'>

verify_schnorr_multisig

1def verify_schnorr_multisig(self):

Verify the multisignatures transaction. Method will raise an exception if invalid, it will returns True

Return Value

<class 'bool'>

_handle_transaction_type

1def _handle_transaction_type(self, bytes_data):

Handle each transaction type differently

Parameters

Type Name Required Description
bytes bytes_data Yes Input the bytes data to which you want to append new bytes

Return Value

<class 'bytes'>

_handle_signature

1def _handle_signature(self, bytes_data, skip_signature, skip_second_signature, skip_multi_signature):

Handle the serialization of “signatures” data

Parameters

Type Name Required Description
bytes bytes_data Yes Input the bytes data to which you want to append new bytes from signature
bool skip_signature Yes Skip first signature
bool skip_second_signature Yes Skip second signature
bool skip_multi_signature Yes Skip multi signatures

Return Value

<class 'bytes'>

crypto.utils.message

__init__

1def __init__(self, message, signature, public_key):

Create a new message instance

Parameters

Type Name Required Description
str message Yes Message
str signature Yes Signature
str public_key Yes Public key

Return Value

<class 'crypto.utils.message.Message'>

sign

1def sign(cls, message, passphrase):

Sign a message using the given passphrase

Parameters

Type Name Required Description
str message Yes Message
str passphrase Yes Passphrase

Return Value

<class 'crypto.utils.message.Message'>

verify

1def verify(self):

Verify the message contents

Return Value

<class 'bool'>

to_dict

1def to_dict(self):

Convert the message to its dictionary representation

Return Value

<class 'dict'>

to_json

1def to_json(self):

Convert the message to its JSON representation

Return Value

<class 'dict'>

crypto.utils.slot

get_time

1def get_time():

Get the time diff between now and network start

Return Value

<class 'int'>

get_epoch

1def get_epoch():

Get the network start epoch

Return Value

<class 'datetime'>

Last updated 2 years ago
Edit Page
Share: