Path Parameters
| Parameter | Type | Description |
|---|---|---|
owner | string | Owner wallet address |
Response (200)
| Field | Type | Description |
|---|---|---|
master | WalletInfo[] | Master wallets for this owner (typically one) |
sub | WalletInfo[] | Sub-wallets for this owner |
WalletInfo
| Field | Type | Description |
|---|---|---|
ownerAddress | string | Owner EOA address |
walletAddress | string | Deployed wallet address |
salt | string | Salt used for CREATE2 deployment |
payerAddress | string | Address that paid for deployment |
paymentTxHash | string | Transaction hash for the deployment fee payment |
deploymentTxHash | string | Transaction hash for the wallet deployment |
paymentCompleted | boolean | Whether the fee payment settled |
deploymentCompleted | boolean | Whether the wallet is deployed on-chain |
fundingRequested | boolean | Whether funding was requested during deployment |
fundingCompleted | boolean | Whether funding was transferred |
fundingAmount | string | Funding amount in wei |
fundingTxHash | string | null | Transaction hash for funding, null if not funded |
createdAt | string | ISO 8601 timestamp of record creation |
updatedAt | string | ISO 8601 timestamp of last update |
Examples
cURL
TypeScript
Example Response
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
validation_error | 400 | Invalid owner address format |
not_found | 404 | No wallets found for this owner |
Related
- Get Master Wallet - Get just the master wallet
- Deploy Wallet (Verify) - Deploy new wallets
