Skip to content
Merged
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
25 changes: 23 additions & 2 deletions src/openapi/portfolio/portfolio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -703,15 +703,30 @@ components:
maxItems: 5
items:
type: string
enum:
- eth-mainnet
- matic-mainnet
- arb-mainnet
- opt-mainnet
- base-mainnet
- bnb-mainnet
- celo-mainnet
- ronin-mainnet
- monad-mainnet
- monad-testnet
- robinhood-mainnet
- robinhood-testnet
- arc-mainnet
- arc-testnet
default: eth-mainnet
default:
- eth-mainnet
- base-mainnet
- matic-mainnet
description: >
Networks to query. Defaults to Ethereum, Base, and Polygon mainnet (same as the
other Portfolio APIs). You can query up to 5 networks. Reach out if you need more.
Find network enums [here](https://dashboard.alchemy.com/chains).
other Portfolio APIs). You can query up to 5 networks per request. Reach out if
you need more.
fromTimestamp:
type: string
format: date-time
Expand Down Expand Up @@ -748,6 +763,12 @@ components:
description: >
Transfer categories to fetch. **Required**, with no default — provide one or more of
the listed categories.


**Network support for `internal`:** the `internal` category is only supported on
Ethereum Mainnet (`eth-mainnet`), Base Mainnet (`base-mainnet`), Polygon Mainnet
(`matic-mainnet`), Arc Mainnet (`arc-mainnet`), and Arc Testnet (`arc-testnet`).
All other categories are supported on every network listed under `networks`.
contractAddresses:
type: array
items:
Expand Down
8 changes: 6 additions & 2 deletions src/openapi/portfolio/transfers/by-address.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ description: >

Fetches historical transfers (native, ERC-20, ERC-721, ERC-1155, special NFT, and internal) for
a single wallet address and multiple networks. Returns a list of transfers ordered by
`blockTimestamp`. This endpoint supports Ethereum and many EVM chains. See the full list of
supported networks [here](https://dashboard.alchemy.com/chains).
`blockTimestamp`. Supported on 14 EVM networks — see the `networks` request-body field for
the enumerated list.


Note: the `internal` category is only supported on Ethereum Mainnet, Base Mainnet, Polygon
Mainnet, Arc Mainnet, and Arc Testnet.


This endpoint fans out across every requested network and merges the results. If one or more
Expand Down
Loading