curl --request GET \
--url https://api.paxoslabs.com/v1/vaults/deposits[
{
"chain_id": 1,
"vault": "<string>",
"time": 123,
"tx_hash": "<string>",
"asset": "<string>",
"asset_amount": 123,
"share_amount": 123,
"from": "<string>",
"to": "<string>"
}
]Returns a list of all deposit events, which can be filtered by user or vault.
curl --request GET \
--url https://api.paxoslabs.com/v1/vaults/deposits[
{
"chain_id": 1,
"vault": "<string>",
"time": 123,
"tx_hash": "<string>",
"asset": "<string>",
"asset_amount": 123,
"share_amount": 123,
"from": "<string>",
"to": "<string>"
}
]The address of the vault. Optional.
"0x9Ed15383940CC380fAEF0a75edacE507cC775f22"
User's address. Optional.
"0x04354e44ed31022716e77eC6320C04Eda153010c"
Successful response with deposit events.
ID of the blockchain.
1
The address of the vault.
^0x[a-fA-F0-9]{40}$Unix timestamp when the deposit was made.
Transaction hash of the deposit event.
The address of the asset deposited.
^0x[a-fA-F0-9]{40}$Amount of the asset deposited.
Amount of shares received from the deposit.
The address of the depositor.
^0x[a-fA-F0-9]{40}$The address of the recipient.
^0x[a-fA-F0-9]{40}$