Noble API
Methods
connect
Connect with the noble
client
Method Declaration
Python
Parameters
Response
Examples: TypeScript | Rust
Get Account Balance
Query token balance of an account/address.
Method Declaration
Python
async def get_account_balance(
self, address: str, denom: str
) -> bank_query.QueryBalanceResponse
Parameters
Response
Examples: TypeScript
Get Account Balances
Query all balances of an account/address.
Method Declaration
Python
async def get_account_balances(
self, address: str
) -> bank_query.QueryAllBalancesResponse:
Parameters
Response
Examples: TypeScript | Rust
Get account
Query for an account by it's address.
Method Declaration
Python
async def get_account(self, address: str) -> BaseAccount
Parameters
Response
Examples: Python | [TypeScript] | Rust
Query Address
Fetch account's number and sequence number from the network.
Method Declaration
Python
Parameters
Response
Send Token Ibc
Transfer a token asset between Cosmos blockchain networks.
Method Declaration
Python
Parameters
Response
Examples: Rust
Simulate
Method Declaration
Python
Parameters
Response
Examples: TypeScript