getAllVaults

GET /getAllVaults

The getAllVaults endpoint retrieves a list of vaults associated with a specific delegate on a specified blockchain.

Headers

NameValue

chainId

The chain, e.g. 1 for mainnet

delegate

The address we are checking

Body

NameTypeDescription

vaults

array

The valid vaults for that user

Example Request

GET https://api.bless.net/getAllVaults?chainId=1&delegate=0x1633C7bD958E2789b51721d5C19441C237919dDa

Response

{
  "vaults": [
    "0x1633C7bD958E2789b51721d5C19441C237919dDa",
    "0x4DF151f6Fa781E7C5f0B10d0c653E7b813cBb65E",
    "0x3d2996Ae16006101Abd515B11b6A836Ce254507c",
    "0x7008f1dA67c7bA098e9a67C328948f6e1710FFDc"
  ]
}

Last updated