API-Reference
Wallet

GET /v1/wallet

For a given EoA, it returns the Enso Smart Wallet Address details

Request

Query Parameters:

Query ParamDescriptionExample
addressAddress of the EoA to get wallet foraddress=0x6b175474e8909...
chainId(Optional, default to 1) Chain ID of the networkchainId=1

It will return a list of action that can be used with the bundle endpoint

Response:

{
  "address": "0x89ba58Cc0e8bcbC1108dbD6F33356a136a021C62", // Enso Smart Wallet Address
  "isDeployed": false // Whether the wallet is deployed or not
}

Example:

curl -X GET \
  -H "Accept: application/json" \
  "https://api.enso.finance/api/v1/wallet?chainId=1&fromAddress=0xd8da6bf26964af9d7eed9e03e53415d37aa96045"

👉 Try it on swagger (opens in a new tab)