/bridge/transfers
You need an API key for this call. Please reach out to the Blessnet team to get setup.
GET
/bridge/transfers
The /bridge/transfers
endpoint returns bridge transfers that match the passed parameters. Results are paginated, with the default page size being 50 records.
Headers
x-api-key
Your API key
Params
chain
No
mainnet
The chain type we are working with, either mainnet
or sepolia
fromChains
No
A comma separated list of the chain that the transfer must be from, e.g. 11155111,421614
toChains
No
A comma separated list of the chain that the transfer must be to, e.g. 11155111,421614
types
No
A comma separated list of the transfer types to look for, e.g. BLESS, ERC20. Possible values: - BLESS - ERC20 - ERC721 - ERC1155 - TXN
address
No
A specific address, only records that match this address as the from or to address will be returned.
from_timestamp
No
Only records where the origin transaction timestamp is at or after this timestamp will be returned.
to_timestamp
No
Only records where the origin transaction timestamp is at or before this timestamp will be returned.
page_size
No
50
The number of records to return per page.
cursor
No
null
The cursor representing the start point of the next page of results.
Response Body
The response provides an array of bridgeData
objects with a single nextCursor
value providing the cursor for the next page. If this is null there is no next page.
The bridgeData
objects have the following properties:
_id
string
The unique Id for this transfer
type
string
The type of transfer, e.g. BLESS, ERC20. Possible values: - BLESS - ERC20 - ERC721 - ERC1155 - TXN
status
string
The overall status of the transfer, including all nodes on the route. Possible values: done (transfer complete) - wait-wh (awaiting wormhole completion. - wait-rb (awaiting rollup bridge completion) - wait-cc (awaiting child chain confirmation) - manual (awaiting manual confirmation) - error
fromChain
string
The origin chain.
toChain
string
The destination chain.
fromAddress
string
The address that has initiated the transfer.
toAddress
string
The address the transfer is going to.
originTimestamp
number
The timestamp from the first transaction in this transfer.
blessAmount
string
The amount of BLESS being send, if this is a BLESS transfer.
tokenContract
string
The address of the contract for the token being send, if this is a token transfer.
tokenAmount
string
The amount of token being sent, if this is a token transfer.
tokenIds
array
An array of the token Ids being sent, if this is an ERC721 or ERC1155 transfer.
originTxnHash
string
The transaction hash of the first transaction in this transfer.
whTxnHash
string
The transaction hash of this transfer being submitted to wormhole (will only be present if wormhole is used in the route).
rbTxnHash
string
The transaction hash of this transfer being submitted to the rollup bridge (will only be present if the rollup bridge is used in this route).
deliveryTxnHash
string
The transaction hash of this transfer being delivered to the destination chain.
route
array
An array of objects describing the route of this transaction and the hashes at each step, if that step has been completed.
Example Request
Response
Last updated