id | title |
---|---|
api-documentation |
API Documentation |
def all(self, page=None, limit=100, **kwargs)
List All Blocks.
Type | Name | Required | Description |
---|---|---|---|
int | page | No | Pagination |
int | limit | No | Result limits |
any | **kwargs | No | Query parameters |
<class 'dict'>
def get(self, block_id)
Retrieve a Block
Type | Name | Required | Description |
---|---|---|---|
int | block_id | Yes | Block ID |
<class 'dict'>
def transactions(self, block_id, page=None, limit=100)
List All Transactions of a Block
Type | Name | Required | Description |
---|---|---|---|
str | block_id | Yes | Block ID |
int | page | No | Pagination |
int | limit | No | Query parameters |
<class 'dict'>
def search(self, criteria, page=None, limit=100)
Search All Blocks
Type | Name | Required | Description |
---|---|---|---|
dict | criteria | Yes | Search parameters |
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>
def all(self, page=None, limit=100, **kwargs)
List All Delegates
Type | Name | Required | Description |
---|---|---|---|
int | page | No | Pagination |
int | limit | No | Result limits |
any | **kwargs | No | Query parameters |
<class 'dict'>
def get(self, delegate_id)
Retrieve a Delegate
Type | Name | Required | Description |
---|---|---|---|
int | delegate_id | Yes | Delegate identifier |
<class 'dict'>
def search(self, username, page=None, limit=100)
Search Delegates
Type | Name | Required | Description |
---|---|---|---|
str | username | Yes | Delegate username |
int | page | No | Pagination |
int | limit | No | Result limits |
<class 'dict'>
def blocks(self, delegate_id, page=None, limit=100)
List All Blocks of a Delegate
Type | Name | Required | Description |
---|---|---|---|
str | delegate_id | Yes | Delegate identifier |
int | page | No | Pagination |
int | limit | No | Result limits |
<class 'dict'>
def voters(self, delegate_id, page=None, limit=100, **kwargs)
List All Voters of a Delegate
Type | Name | Required | Description |
---|---|---|---|
str | delegate_id | Yes | Delegate identifier |
int | page | No | Pagination |
int | limit | No | Result limits |
any | **kwargs | No | Query parameters |
<class 'dict'>
def configuration(self)
Retrieve the Configuration
<class 'dict'>
def status(self)
Retrieve the Status
<class 'dict'>
def syncing(self)
Retrieve the Syncing Status
<class 'dict'>
def fees(self, days=None)
Retrieve the Fees
Type | Name | Required | Description |
---|---|---|---|
int | days | No | ... |
<class 'dict'>
def all(self, os=None, status=None, port=None, version=None, order_by=None, page=None, limit=100)
List All Peers
Type | Name | Required | Description s |
---|---|---|---|
str | os | No | Operating System |
str | status | No | Peer status |
int | port | No | Peer port |
str | version | No | Peer version |
str | order_by | No | Order by |
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>
def get(self, ip)
Retrieve a Peer
Type | Name | Required | Description |
---|---|---|---|
str | ip | Yes | IP addresss |
<class 'dict'>
def create(self, transactions)
Create a Transaction
Type | Name | Required | Description |
---|---|---|---|
list | transactions | Yes | Transaction to broadcast |
<class 'dict'>
def get(self, transaction_id)
Retrieve a Transaction
Type | Name | Required | Description |
---|---|---|---|
str | transaction_id | Yes | Transaction ID |
<class 'dict'>
def all(self, page=None, limit=100, **kwargs)
List All Transactions
Type | Name | Required | Description |
---|---|---|---|
int | page | No | Pagination |
int | limit | No | Result limit |
any | **kwargs | No | Query parameters |
<class 'dict'>
def all_unconfirmed(self, limit=100, offset=None, **kwargs)
List All Unconfirmed Transactions
Type | Name | Required | Description |
---|---|---|---|
int | limit | No | Result limit |
int | offset | No | Offset |
any | **kwargs | No | Query parameters |
<class 'dict'>
def get_unconfirmed(self, transaction_id)
Get Unconfirmed Transaction
Type | Name | Required | Description |
---|---|---|---|
str | transaction_id | Yes | Transaction ID |
<class 'dict'>
def search(self, criteria, page=None, limit=100)
Search Transactions
Type | Name | Required | Description |
---|---|---|---|
dict | criteria | Yes | Search parameters |
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>
def types(self)
List Transaction Types
<class 'dict'>
def fees(self)
List Transaction Fees (Non-Dynamic)
<class 'dict'>
def all(self, page=None, limit=100)
List All Votes
Type | Name | Required | Description s |
---|---|---|---|
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>
def get(self, vote_id)
Retrieve a Vote
Type | Name | Required | Description |
---|---|---|---|
str | vote_id | Yes | Vote IDs |
<class 'dict'>
def all(self, page=None, limit=100)
Retrieve All Wallets
Type | Name | Required | Description |
---|---|---|---|
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>
def get(self, wallet_id)
Retrieve a Wallet
Type | Name | Required | Description |
---|---|---|---|
str | wallet_id | Yes | Wallet identifier |
<class 'dict'>
def transactions(self, wallet_id ,page=None, limit=100, **kwargs)
List All Transactions of a Wallet
Type | Name | Required | Description |
---|---|---|---|
str | wallet_id | Yes | Wallet identifier |
int | page | No | Pagination |
int | limit | No | Result limit |
any | **kwargs | No | Query parameters |
<class 'dict'>
def transactions_received(self, wallet_id, page=None, limit=100)
List All Received Transactions of a Wallet
Type | Name | Required | Description |
---|---|---|---|
str | wallet_id | Yes | Wallet identifier |
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>
def transactions_sent(self, wallet_id, page=None, limit=100)
List All Sent Transactions of a Wallet
Type | Name | Required | Description |
---|---|---|---|
str | wallet_id | Yes | Wallet identifier |
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>
def votes(self, wallet_id,page=None, limit=100)
List All Votes of a Wallet
Type | Name | Required | Description |
---|---|---|---|
str | wallet_id | Yes | Wallet identifier |
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>
def top(self, page=None, limit=100)
List All Top Wallets
Type | Name | Required | Description |
---|---|---|---|
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>
def search(self, criteria, page=None, limit=100)
Search All Wallets
Type | Name | Required | Description |
---|---|---|---|
dict | criteria | Yes | Search parameters |
int | page | No | Pagination |
int | limit | No | Result limit |
<class 'dict'>