plugins.aea-ledger-cosmos.aea_
ledger_
cosmos.cosmos
Cosmos module wrapping the public and private key cryptography and ledger api.
DataEncrypt Objects
Class to encrypt/decrypt data strings with password provided.
encrypt
Encrypt data with password.
bytes_
encode
Encode bytes to ascii friendly string.
bytes_
decode
Decode ascii friendly string to bytes.
decrypt
Decrypt data with password provided.
CosmosHelper Objects
Helper class usable as Mixin for CosmosApi or as standalone class.
is_
transaction_
settled
Check whether a transaction is settled or not.
Arguments:
tx_receipt
: the receipt of the transaction.
Returns:
True if the transaction has been settled, False o/w.
get_
code_
id
Retrieve the code_id
from a transaction receipt.
Arguments:
tx_receipt
: the receipt of the transaction.
Returns:
the code id, if present
get_
contract_
address
Retrieve the contract_address
from a transaction receipt.
Arguments:
tx_receipt
: the receipt of the transaction.
Returns:
the contract address, if present
is_
transaction_
valid
| @staticmethod
| is_transaction_valid(tx: JSONLike, seller: Address, client: Address, tx_nonce: str, amount: int) -> bool
Check whether a transaction is valid or not.
Arguments:
tx
: the transaction.seller
: the address of the seller.client
: the address of the client.tx_nonce
: the transaction nonce.amount
: the amount we expect to get from the transaction.
Returns:
True if the random_message is equals to tx['input']
generate_
tx_
nonce
Generate a unique hash to distinguish transactions with the same terms.
Arguments:
seller
: the address of the seller.client
: the address of the client.
Returns:
return the hash in hex.
get_
address_
from_
public_
key
Get the address from the public key.
Arguments:
public_key
: the public key
Returns:
str
recover_
message
| @classmethod
| recover_message(cls, message: bytes, signature: str, is_deprecated_mode: bool = False) -> Tuple[Address, ...]
Recover the addresses from the hash.
Arguments:
message
: the message we expectsignature
: the transaction signatureis_deprecated_mode
: if the deprecated signing was used
Returns:
the recovered addresses
recover_
public_
keys_
from_
message
| @classmethod
| recover_public_keys_from_message(cls, message: bytes, signature: str, is_deprecated_mode: bool = False) -> Tuple[str, ...]
Get the public key used to produce the signature
of the message
Arguments:
message
: raw bytes used to produce signaturesignature
: signature of the messageis_deprecated_mode
: if the deprecated signing was used
Returns:
the recovered public keys
get_
hash
Get the hash of a message.
Arguments:
message
: the message to be hashed.
Returns:
the hash of the message.
is_
valid_
address
Check if the address is valid.
Arguments:
address
: the address to validate
Returns:
whether address is valid or not
load_
contract_
interface
Load contract interface.
Arguments:
file_path
: the file path to the interface
Returns:
the interface
CosmosCrypto Objects
Class wrapping the Account Generation from Ethereum ledger.
__
init__
Instantiate an ethereum crypto object.
Arguments:
private_key_path
: the private key path of the agentpassword
: the password to encrypt/decrypt the private key.
private_
key
Return a private key.
Returns:
a private key string
public_
key
Return a public key in hex format.
Returns:
a public key string in hex format
address
Return the address for the key pair.
Returns:
a display_address str
load_
private_
key_
from_
path
| @classmethod
| load_private_key_from_path(cls, file_name: str, password: Optional[str] = None) -> SigningKey
Load a private key in hex format from a file.
Arguments:
file_name
: the path to the hex file.password
: the password to encrypt/decrypt the private key.
Returns:
the Entity.
sign_
message
Sign a message in bytes string form.
Arguments:
message
: the message to be signedis_deprecated_mode
: if the deprecated signing is used
Returns:
signature of the message in string form
sign_
transaction
Sign a transaction in bytes string form.
Arguments:
transaction
: the transaction to be signed
Returns:
signed transaction
generate_
private_
key
Generate a key pair for cosmos network.
encrypt
Encrypt the private key and return in json.
Arguments:
password
: the password to decrypt.
Returns:
json string containing encrypted private key.
decrypt
Decrypt the private key and return in raw form.
Arguments:
keyfile_json
: json string containing encrypted private key.password
: the password to decrypt.
Returns:
the raw private key.
_
CosmosApi Objects
Class to interact with the Cosmos SDK via a HTTP APIs.
__
init__
Initialize the Cosmos ledger APIs.
api
Get the underlying API object.
get_
balance
Get the balance of a given account.
get_
state
Call a specified function on the ledger API.
Based on the cosmos REST API specification, which takes a path (strings separated by '/'). The convention here is to define the root of the path (txs, blocks, etc.) as the callable_name and the rest of the path as args.
Arguments:
callable_name
: name of the callableargs
: positional argumentskwargs
: keyword arguments
Returns:
the transaction dictionary
get_
deploy_
transaction
| get_deploy_transaction(contract_interface: Dict[str, str], deployer_address: Address, **kwargs: Any, ,) -> Optional[JSONLike]
Get the transaction to deploy the smart contract.
Dispatches to _get_storage_transaction and _get_init_transaction based on kwargs.
Arguments:
contract_interface
: the contract interface.deployer_address
: The address that will deploy the contract.kwargs
: keyword arguments.
Returns:
the transaction dictionary.
get_
handle_
transaction
| get_handle_transaction(sender_address: Address, contract_address: Address, handle_msg: Any, amount: int, tx_fee: int, denom: Optional[str] = None, gas: int = DEFAULT_GAS_AMOUNT, memo: str = "", chain_id: Optional[str] = None, account_number: Optional[int] = None, sequence: Optional[int] = None, tx_fee_denom: Optional[str] = None) -> Optional[JSONLike]
Create a CosmWasm HandleMsg transaction.
Arguments:
sender_address
: the sender address of the message initiator.contract_address
: the address of the smart contract.handle_msg
: HandleMsg in JSON format.amount
: Funds amount sent with transaction.tx_fee
: the tx fee accepted.denom
: the name of the denomination of the contract fundsgas
: Maximum amount of gas to be used on executing command.memo
: any string comment.chain_id
: the Chain ID of the CosmWasm transaction. Default is 1 (i.e. mainnet).account_number
: Account numbersequence
: Sequencetx_fee_denom
: Denomination of tx_fee, identical with denom param when None
Returns:
the unsigned CosmWasm HandleMsg
execute_
contract_
query
Execute a CosmWasm QueryMsg. QueryMsg doesn't require signing.
Arguments:
contract_address
: the address of the smart contract.query_msg
: QueryMsg in JSON format.
Returns:
the message receipt
get_
transfer_
transaction
| get_transfer_transaction(sender_address: Address, destination_address: Address, amount: int, tx_fee: int, tx_nonce: str, denom: Optional[str] = None, gas: int = DEFAULT_GAS_AMOUNT, memo: str = "", chain_id: Optional[str] = None, account_number: Optional[int] = None, sequence: Optional[int] = None, tx_fee_denom: Optional[str] = None, **kwargs: Any, ,) -> Optional[JSONLike]
Submit a transfer transaction to the ledger.
Arguments:
sender_address
: the sender address of the payer.destination_address
: the destination address of the payee.amount
: the amount of wealth to be transferred.tx_fee
: the transaction fee.tx_nonce
: verifies the authenticity of the txdenom
: the denomination of tx fee and amountgas
: the gas used.memo
: memo to include in tx.chain_id
: the chain ID of the transaction.account_number
: Account numbersequence
: Sequencetx_fee_denom
: Denomination of tx_fee, identical with denom param when Nonekwargs
: keyword arguments.
Returns:
the transfer transaction
get_
packed_
exec_
msg
| get_packed_exec_msg(sender_address: Address, contract_address: str, msg: JSONLike, funds: int = 0, denom: Optional[str] = None) -> ProtoAny
Create and pack MsgExecuteContract
Arguments:
sender_address
: Address of sendercontract_address
: Address of contractmsg
: Paramaters to be passed to smart contractfunds
: Funds to be sent to smart contractdenom
: the denomination of funds
Returns:
Packed MsgExecuteContract
get_
packed_
send_
msg
| get_packed_send_msg(from_address: Address, to_address: Address, amount: int, denom: Optional[str] = None) -> ProtoAny
Generate and pack MsgSend
Arguments:
from_address
: Address of senderto_address
: Address of recipientamount
: amount of coins to be sentdenom
: the denomination of and amount
Returns:
packer ProtoAny type message
get_
multi_
transaction
| get_multi_transaction(from_addresses: List[str], pub_keys: Optional[List[bytes]], msgs: List[ProtoAny], gas: int, tx_fee: int = 0, memo: str = "", chain_id: Optional[str] = None, denom: Optional[str] = None, tx_fee_denom: Optional[str] = None) -> JSONLike
Generate transaction with multiple messages
Arguments:
from_addresses
: Addresses of signerspub_keys
: Public keys of signersmsgs
: Messages to be included in transactiongas
: the gas used.tx_fee
: the transaction fee.memo
: memo to include in tx.chain_id
: the chain ID of the transaction.denom
: the denomination of tx feetx_fee_denom
: Denomination of tx_fee, identical with denom param when None
:raises: RuntimeError if number of pubkeys is not equal to number of from_addresses
Returns:
the transaction
send_
signed_
transaction
Send a signed transaction and wait for confirmation.
Arguments:
tx_signed
: the signed transaction
Returns:
tx_digest, if present
get_
transaction_
receipt
Get the transaction receipt for a transaction digest.
Arguments:
tx_digest
: the digest associated to the transaction.
Returns:
the tx receipt, if present
get_
transaction
Get the transaction for a transaction digest.
Arguments:
tx_digest
: the digest associated to the transaction.
Returns:
the tx, if present
get_
contract_
instance
| get_contract_instance(contract_interface: Dict[str, str], contract_address: Optional[str] = None) -> Any
Get the instance of a contract.
Arguments:
contract_interface
: the contract interface.contract_address
: the contract address.
Returns:
the contract instance
update_
with_
gas_
estimate
Attempts to update the transaction with a gas estimate
Arguments:
transaction
: the transaction :raises: NotImplementedError
CosmosApi Objects
Class to interact with the Cosmos SDK via a HTTP APIs.
CosmosFaucetApi Objects
Cosmos testnet faucet API.
__
init__
Initialize CosmosFaucetApi.
get_
wealth
Get wealth from the faucet for the provided address.
Arguments:
address
: the address.url
: the url :raises: RuntimeError of explicit faucet failures