Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions docs/block.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ The **Block API** supports the following groups of endpoints:

| SDK Method | Endpoint URL | Returns |
| ------------------------------------------------------------------------------------------- | ---------------------------------------- | --------------- |
| `block.accounts_by_address(account_addresses)` | `GET /v0/block/accounts-by-address` | `List[Account]` |
| `block.contracts_by_creator(creator_address, created_after, created_before, order, limit)` | `GET /v0/block/contracts-by-creator` | `List[Account]` |
| `block.accounts_by_date_created(created_after, created_before, account_type, order, limit)` | `GET /v0/block/accounts-by-date-created` | `List[Account]` |
| `block.accounts_by_address(account_addresses)` | `GET /block/accounts-by-address` | `List[Account]` |
| `block.contracts_by_creator(creator_address, created_after, created_before, order, limit)` | `GET /block/contracts-by-creator` | `List[Account]` |
| `block.accounts_by_date_created(created_after, created_before, account_type, order, limit)` | `GET /block/accounts-by-date-created` | `List[Account]` |

### Account Model

Expand All @@ -44,8 +44,8 @@ The **Account Model** represents a single account. This includes both externally

| SDK Method | Endpoint URL | Returns |
| ------------------------------------------------------------------------------------- | -------------------------------- | ------------- |
| `block.blocks_by_number(block_number_above, block_number_below, order, limit)` | `GET /v0/block/blocks-by-number` | `List[Block]` |
| `block.blocks_by_date(added_after, added_before, order, limit)` | `GET /v0/block/blocks-by-date` | `List[Block]` |
| `block.blocks_by_number(block_number_above, block_number_below, order, limit)` | `GET /block/blocks-by-number` | `List[Block]` |
| `block.blocks_by_date(added_after, added_before, order, limit)` | `GET /block/blocks-by-date` | `List[Block]` |

### Block Model

Expand Down Expand Up @@ -85,10 +85,10 @@ The **Block Model** represents a single block. The **Block Model** follows the f

| SDK Method | Endpoint URL | Returns |
| ---------------------------------------------------------------------------------------------------------- | --------------------------------------- | ------------------- |
| `block.transactions_by_hash(transaction_hashes)` | `GET /v0/block/transactions-by-hash` | `List[Transaction]` |
| `block.transactions_by_account(account_address, direction, order, limit)` | `GET /v0/block/transactions-by-account` | `List[Transaction]` |
| `block.transactions_by_block(block_number_above, block_number_below, order, limit)` | `GET /v0/block/transactions-by-block` | `List[Transaction]` |
| `block.transactions_by_date(occurred_after, occurred_before, order, limit)` | `GET /v0/block/transactions-by-date` | `List[Transaction]` |
| `block.transactions_by_hash(transaction_hashes)` | `GET /block/transactions-by-hash` | `List[Transaction]` |
| `block.transactions_by_account(account_address, direction, order, limit)` | `GET /block/transactions-by-account` | `List[Transaction]` |
| `block.transactions_by_block(block_number_above, block_number_below, order, limit)` | `GET /block/transactions-by-block` | `List[Transaction]` |
| `block.transactions_by_date(occurred_after, occurred_before, order, limit)` | `GET /block/transactions-by-date` | `List[Transaction]` |

### Transaction Model

Expand Down Expand Up @@ -128,8 +128,8 @@ The **Transaction Model** represents a single transaction. The **Transaction Mod

| SDK Method | Endpoint URL | Returns |
| -------------------------------------------------------------------------------------------------------------- | ----------------------------------- | ----------- |
| `block.logs_by_transaction(transaction_hash, limit)` | `GET /v0/block/logs-by-transaction` | `List[Log]` |
| `block.logs_by_block(block_number_above, block_number_below, contract_address, event_signature, order, limit)` | `GET /v0/block/logs-by-block` | `List[Log]` |
| `block.logs_by_transaction(transaction_hash, limit)` | `GET /block/logs-by-transaction` | `List[Log]` |
| `block.logs_by_block(block_number_above, block_number_below, contract_address, event_signature, order, limit)` | `GET /block/logs-by-block` | `List[Log]` |

### Log Model

Expand Down
14 changes: 7 additions & 7 deletions docs/ens.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ The **ENS API** supports the following groups of endpoints:
## Record Endpoints
| SDK Method | Endpoint URL | Returns |
| ---------------------------------------------------------------------------- | -------------------------------------------- | ----------------- |
| `ens.records_by_owner(owner_address, limit)` | `GET /v0/ens/ens-records-by-owner` | `List[ENSRecord]` |
| `ens.records_by_date(timestamp_after, timestamp_before, type, order, limit)` | `GET /v0/ens/ens-records-by-date` | `List[ENSRecord]` |
| `ens.records_by_account(resolved_address)` | `GET /v0/ens/ens-records-by-account` | `List[ENSRecord]` |
| `ens.records_by_name(ens_names)` | `GET /v0/ens/ens-records-by-name` | `List[ENSRecord]` |
| `ens.records_by_token_id(token_ids)` | `GET /v0/ens/ens-records-by-token-id` | `List[ENSRecord]` |
| `ens.records_by_owner(owner_address, limit)` | `GET /ens/ens-records-by-owner` | `List[ENSRecord]` |
| `ens.records_by_date(timestamp_after, timestamp_before, type, order, limit)` | `GET /ens/ens-records-by-date` | `List[ENSRecord]` |
| `ens.records_by_account(resolved_address)` | `GET /ens/ens-records-by-account` | `List[ENSRecord]` |
| `ens.records_by_name(ens_names)` | `GET /ens/ens-records-by-name` | `List[ENSRecord]` |
| `ens.records_by_token_id(token_ids)` | `GET /ens/ens-records-by-token-id` | `List[ENSRecord]` |

### ENS Record Model
<details>
Expand Down Expand Up @@ -52,8 +52,8 @@ The **ENS Record Model** contains the full set of information for a single ENS n
## Transfer Endpoints
| SDK Method | Endpoint URL | Returns |
| ------------------------------------------------------------------------------------------------------------- | --------------------------------------- | ------------------- |
| `ens.transfers_by_name(ens_name, transferred_after, transferred_before, order, limit)` | `GET /v0/ens/ens-transfers-by-name` | `List[ENSTransfer]` |
| `ens.transfers_by_token_id(token_id, transferred_after, transferred_before, order, limit)` | `GET /v0/ens/ens-transfers-by-token-id` | `List[ENSTransfer]` |
| `ens.transfers_by_name(ens_name, transferred_after, transferred_before, order, limit)` | `GET /ens/ens-transfers-by-name` | `List[ENSTransfer]` |
| `ens.transfers_by_token_id(token_id, transferred_after, transferred_before, order, limit)` | `GET /ens/ens-transfers-by-token-id` | `List[ENSTransfer]` |

### ENS Transfer Model
<details>
Expand Down
38 changes: 19 additions & 19 deletions docs/nft.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ The **NFT API** supports the following groups of endpoints:

| SDK Method | Endpoint URL | Returns |
| ---------------------------------------------------------------------------------------- | --------------------------------------------- | ------------------ |
| `nft.collections_by_date_created(created_after, created_before, standard, order, limit)` | `GET /v0/nft/collections-by-date-created` | `List[Collection]` |
| `nft.collections_by_contract_address(contract_addresses)` | `GET /v0/nft/collections-by-contract-address` | `List[Collection]` |
| `nft.collections_by_name(name, limit, fuzzy)` | `GET /v0/nft/collections-by-name` | `List[Collection]` |
| `nft.collections_by_symbol(symbol, limit, fuzzy)` | `GET /v0/nft/collections-by-symbol` | `List[Collection]` |
| `nft.collections_by_date_created(created_after, created_before, standard, order, limit)` | `GET /nft/collections-by-date-created` | `List[Collection]` |
| `nft.collections_by_contract_address(contract_addresses)` | `GET /nft/collections-by-contract-address` | `List[Collection]` |
| `nft.collections_by_name(name, limit, fuzzy)` | `GET /nft/collections-by-name` | `List[Collection]` |
| `nft.collections_by_symbol(symbol, limit, fuzzy)` | `GET /nft/collections-by-symbol` | `List[Collection]` |

### Collection Model

Expand Down Expand Up @@ -57,11 +57,11 @@ The **Collection Model** represents a single NFT collection. The **Collection Mo

| SDK Method | Endpoint URL | Returns |
| ----------------------------------------------------------------------------------------------------------- | -------------------------------------- | -------------------- |
| `nft.nfts_by_date_minted(minted_after, minted_before, contract_address, order, limit)` | `GET /v0/nft/nfts-by-date-minted` | `List[NFT]` |
| `nft.nfts_by_contract_address(contract_addresses, limit)` | `GET /v0/nft/nfts-by-contract-address` | `List[NFT]` |
| `nft.nfts_by_token_id(contract_addresses, token_ids, limit)` | `GET /v0/nft/nfts-by-token-id` | `List[NFT]` |
| `nft.nfts_by_name(name, limit, fuzzy)` | `GET /v0/nft/nfts-by-name` | `List[NFT]` |
| `nft.nfts_by_owner(owner_address, contract_address, limit)` | `GET /v0/nft/nfts-by-owner` | `List[NFTWithOwner]` |
| `nft.nfts_by_date_minted(minted_after, minted_before, contract_address, order, limit)` | `GET /nft/nfts-by-date-minted` | `List[NFT]` |
| `nft.nfts_by_contract_address(contract_addresses, limit)` | `GET /nft/nfts-by-contract-address` | `List[NFT]` |
| `nft.nfts_by_token_id(contract_addresses, token_ids, limit)` | `GET /nft/nfts-by-token-id` | `List[NFT]` |
| `nft.nfts_by_name(name, limit, fuzzy)` | `GET /nft/nfts-by-name` | `List[NFT]` |
| `nft.nfts_by_owner(owner_address, contract_address, limit)` | `GET /nft/nfts-by-owner` | `List[NFTWithOwner]` |

### NFT Model

Expand Down Expand Up @@ -115,8 +115,8 @@ The **NFT Model** represents a single NFT with included ownership data (i.e. the

| SDK Method | Endpoint URL | Returns |
| ----------------------------------------------------------- | ---------------------------------------- | ---------------- |
| `nft.owners_by_contract_address(contract_address, limit)` | `GET /v0/nft/owners-by-contract-address` | `List[NFTOwner]` |
| `nft.owners_by_token_id(contract_address, token_id, limit)` | `GET /v0/nft/owners-by-token-id` | `List[NFTOwner]` |
| `nft.owners_by_contract_address(contract_address, limit)` | `GET /nft/owners-by-contract-address` | `List[NFTOwner]` |
| `nft.owners_by_token_id(contract_address, token_id, limit)` | `GET /nft/owners-by-token-id` | `List[NFTOwner]` |

### NFT Owner Model

Expand All @@ -138,10 +138,10 @@ The **NFT Owner Model** represents a single NFT owner. The **NFT Owner Model** f

| SDK Method | Endpoint URL | Returns |
| --------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | ------------------- |
| `nft.transfers(transferred_after, transferred_before, order, limit)` | `GET /v0/nft/transfers` | `List[NFTTransfer]` |
| `nft.transfers_by_contract_address(contract_address, transferred_after, transferred_before, order, limit)` | `GET /v0/nft/transfers-by-contract-address` | `List[NFTTransfer]` |
| `nft.transfers_by_token_id(contract_address, token_id, transferred_after, transferred_before, order, limit)` | `GET /v0/nft/transfers-by-token-id` | `List[NFTTransfer]` |
| `nft.transfers_by_account(account_address, transferred_after, transferred_before, transfer_direction, order, limit)` | `GET /v0/nft/transfers-by-account` | `List[NFTTransfer]` |
| `nft.transfers(transferred_after, transferred_before, order, limit)` | `GET /nft/transfers` | `List[NFTTransfer]` |
| `nft.transfers_by_contract_address(contract_address, transferred_after, transferred_before, order, limit)` | `GET /nft/transfers-by-contract-address` | `List[NFTTransfer]` |
| `nft.transfers_by_token_id(contract_address, token_id, transferred_after, transferred_before, order, limit)` | `GET /nft/transfers-by-token-id` | `List[NFTTransfer]` |
| `nft.transfers_by_account(account_address, transferred_after, transferred_before, transfer_direction, order, limit)` | `GET /nft/transfers-by-account` | `List[NFTTransfer]` |

### NFT Transfer Model

Expand Down Expand Up @@ -170,10 +170,10 @@ The **NFT Transfer Model** represents a single transfer of an nft. **The NFT Tra

| SDK Method | Endpoint URL | Returns |
| ------------------------------------------------------------------------------------------ | --------------------------------------- | --------------- |
| `nft.sales(sold_after, sold_before, order, limit)` | `GET /v0/nft/sales` | `List[NFTSale]` |
| `nft.sales_by_contract_address(contract_address, sold_after, sold_before, order, limit)` | `GET /v0/nft/sales-by-contract-address` | `List[NFTSale]` |
| `nft.sales_by_token_id(contract_address, token_id, sold_after, sold_before, order, limit)` | `GET /v0/nft/sales-by-contract-address` | `List[NFTSale]` |
| `nft.sales_by_account(account_address, sold_after, sold_before, role, order, limit)` | `GET /v0/nft/sales-by-account` | `List[NFTSale]` |
| `nft.sales(sold_after, sold_before, order, limit)` | `GET /nft/sales` | `List[NFTSale]` |
| `nft.sales_by_contract_address(contract_address, sold_after, sold_before, order, limit)` | `GET /nft/sales-by-contract-address` | `List[NFTSale]` |
| `nft.sales_by_token_id(contract_address, token_id, sold_after, sold_before, order, limit)` | `GET /nft/sales-by-contract-address` | `List[NFTSale]` |
| `nft.sales_by_account(account_address, sold_after, sold_before, role, order, limit)` | `GET /nft/sales-by-account` | `List[NFTSale]` |

### NFT Sale Model

Expand Down
Loading