Path Parameters
| Parameter | Type | Description |
|---|---|---|
owner | string | Owner wallet address |
Response (200)
Returns a single wallet object with the same shape as items in the List Wallets response.| Field | Type | Description |
|---|---|---|
ownerAddress | string | Owner EOA address |
walletAddress | string | Master wallet address |
salt | string | Deterministic master salt |
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 |
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 |
Master Salt Derivation
The master wallet salt is deterministic:normalizedOwnerAddress is the checksummed address with 0x stripped, then reversed as a string. This guarantees a single, predictable master wallet per owner.
Examples
cURL
TypeScript
Example Response
Error Codes
| Code | HTTP Status | Description |
|---|---|---|
validation_error | 400 | Invalid owner address format |
not_found | 404 | No master wallet found for this owner |
Related
- List Wallets - List all wallets (master + sub)
- Deploy Wallet (Verify) - Deploy a master wallet
