> ## Documentation Index
> Fetch the complete documentation index at: https://docs.openxswitch.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Deposit Event

Webhooks for `Smart Accounts` deposit flow notifies you about incoming deposits and their status.

* **Parent Method:** `smart-accounts:deposit`
* **Sub-Methods:**
  * `pending`: Triggered when a deposit is initiated and is awaiting blockchain confirmation.
  * `success`: Triggered when the deposit is fully confirmed and credited to the wallet

### **Example Payload for Deposit:**

<CodeGroup>
  ```json deposit.pending theme={null}
  {
    "requestId": "04afc1dd8ffae1f6f8c66f96eed0f5",
    "method": "smart-accounts:deposit.pending",
    "params": {
  	  "id": "6a382b951e117b952736649b",
  	  "refId": "13829984-e7b4-415d-911f-72724f817405",
  	  "idempotencyKey": "db3237b5-81d0-4ee6-a939-a940a26a0d02",
  	  "tokenName": "USD Coin",
  	  "tokenSymbol": "USDC",
  	  "tokenTicker": "USDC_BASE",
  	  "tokenAddress": "0x036cbd53842c5426634e7929541ec2318f3dcf7e",
  	  "decimals": 6,
  	  "isNative": false,
  	  "amount": {
  	    "value": "0.028011",
  	    "rawValue": "28011"
  	  },
  	  "chainDecimals": 18,
  	  "blockchain": "BASE",
  	  "protocol": "EVM",
  	  "environment": "testnet",
  	  "network": "base-sepolia",
  	  "txType": "incoming",
  	  "status": "pending",
  	  "fromAddress": "0xda0348137a73899a156944e31c81f05f646d168c",
  	  "toAddress": "0x7a750d8d6e12cce09a7c15482077a8a4d4c37de4",
  	  "txHash": "0xee30898cdfaee9c810996756337044fd98b4b0406583dd2d5706288b97f472e5",
  	  "note": null,
  	  "triggerOrigin": "blockchain",
  	  "confirmation": null,
  	  "confirmed": false,
  	  "confirmedAt": null,
  	  "walletId": "69eba664a8d8bc8c594d17fd",
  	  "accountId": "69eb85d1c06eb2ab09c8d1dc",
  	  "workspaceId": "67e723ed4b44a4f73dd2e8a2",
  	  "createdAt": "2026-06-21T18:21:09.560Z",
  	  "updatedAt": "2026-06-21T18:21:09.560Z",
  	  "wallet": {
  	    "id": "69eba664a8d8bc8c594d17fd",
  	    "address": "0x7A750D8D6e12cce09A7c15482077a8A4d4c37de4",
  	    "type": "settlement",
  	    "protocol": "EVM",
  	    "isEvmCompatible": true,
  	    "name": "Default Wallet(EVM)",
  	    "refId": "b2be0f63-f73e-49f5-bc52-93dae008b1d7",
  	    "custodyType": "DEVELOPER",
  	    "token": {
  	      "name": "USD Coin",
  	      "symbol": "USDC",
  	      "blockchain": "BASE",
  	      "tokenAddress": "0x036cbd53842c5426634e7929541ec2318f3dcf7e",
  	      "isNative": false,
  	      "decimals": 6,
  	      "standard": "ERC20",
  	      "balance": {
  	        "value": "5.028011",
  	        "rawValue": "5028011"
  	      }
  	    }
  	  }
  	}
     }
  }
  ```

  ```json deposit.success theme={null}
  {
    "requestId": "04afc1dd8ffae1f6f8c66f96eed0f5",
    "method": "smart-accounts:deposit.success",
    "params": {
        "id": "6a382b951e117b952736649a",
  	  "refId": "9395d9b3-b58a-4856-8a3e-886c687f8d6f",
  	  "idempotencyKey": "d1526226-27c2-440f-8d57-a2e3bc980e89",
  	  "tokenName": "USD Coin",
  	  "tokenSymbol": "USDC",
  	  "tokenTicker": "USDC_BASE",
  	  "tokenAddress": "0x036cbd53842c5426634e7929541ec2318f3dcf7e",
  	  "decimals": 6,
  	  "isNative": false,
  	  "amount": {
  	    "value": "5",
  	    "rawValue": "5000000"
  	  },
  	  "chainDecimals": 18,
  	  "blockchain": "BASE",
  	  "protocol": "EVM",
  	  "environment": "testnet",
  	  "network": "base-sepolia",
  	  "txType": "incoming",
  	  "status": "success",
  	  "fromAddress": "0xda0348137a73899a156944e31c81f05f646d168c",
  	  "toAddress": "0x226917bdc6d659672050e48ca6ce73dbd3a1d318",
  	  "txHash": "0xee30898cdfaee9c810996756337044fd98b4b0406583dd2d5706288b97f472e5",
  	  "note": null,
  	  "triggerOrigin": "blockchain",
  	  "confirmation": "1",
  	  "confirmed": true,
  	  "confirmedAt": "2026-06-21T18:24:28.849Z",
  	  "walletId": "6a38259e7b6635a105154d11",
  	  "accountId": "69eba97c3f7e15428aef8811",
  	  "workspaceId": "67e723ed4b44a4f73dd2e8a2",
  	  "createdAt": "2026-06-21T18:21:08.955Z",
  	  "updatedAt": "2026-06-21T18:24:29.478Z",
  	  "wallet": {
  	    "id": "6a38259e7b6635a105154d11",
  	    "address": "0x226917Bdc6d659672050E48ca6CE73dbd3A1D318",
  	    "type": "deposit",
  	    "protocol": "EVM",
  	    "isEvmCompatible": true,
  	    "name": "dev-user-4",
  	    "refId": "2198ddd0-4738-4ef6-b703-d1bfa79531d0",
  	    "custodyType": "DEVELOPER",
  	    "token": {
  	      "name": "USD Coin",
  	      "symbol": "USDC",
  	      "blockchain": "BASE",
  	      "tokenAddress": "0x036cbd53842c5426634e7929541ec2318f3dcf7e",
  	      "isNative": false,
  	      "decimals": 6,
  	      "standard": "ERC20",
  	      "balance": {
  	        "value": "5",
  	        "rawValue": "5000000"
  	      }
  	    }
  	  }
  	}
    }
  }
  ```
</CodeGroup>

<CodeGroup>
  ```json deposit.pending theme={null}
  {
    "requestId": "04afc1dd8ffae1f6f8c66f96eed0f5",
    "method": "smart-accounts:deposit.pending",
    "params": {
  	  "id": "6a382b951e117b952736649b",
  	  "refId": "13829984-e7b4-415d-911f-72724f817405",
  	  "idempotencyKey": "db3237b5-81d0-4ee6-a939-a940a26a0d02",
  	  "tokenName": "USD Coin",
  	  "tokenSymbol": "USDC",
  	  "tokenTicker": "USDC_BASE",
  	  "tokenAddress": "0x036cbd53842c5426634e7929541ec2318f3dcf7e",
  	  "decimals": 6,
  	  "isNative": false,
  	  "amount": {
  	    "value": "0.028011",
  	    "rawValue": "28011"
  	  },
  	  "chainDecimals": 18,
  	  "blockchain": "BASE",
  	  "protocol": "EVM",
  	  "environment": "testnet",
  	  "network": "base-sepolia",
  	  "txType": "incoming",
  	  "status": "pending",
  	  "fromAddress": "0xda0348137a73899a156944e31c81f05f646d168c",
  	  "toAddress": "0x7a750d8d6e12cce09a7c15482077a8a4d4c37de4",
  	  "txHash": "0xee30898cdfaee9c810996756337044fd98b4b0406583dd2d5706288b97f472e5",
  	  "note": null,
  	  "triggerOrigin": "blockchain",
  	  "confirmation": null,
  	  "confirmed": false,
  	  "confirmedAt": null,
  	  "walletId": "69eba664a8d8bc8c594d17fd",
  	  "accountId": "69eb85d1c06eb2ab09c8d1dc",
  	  "workspaceId": "67e723ed4b44a4f73dd2e8a2",
  	  "createdAt": "2026-06-21T18:21:09.560Z",
  	  "updatedAt": "2026-06-21T18:21:09.560Z",
  	  "wallet": {
  	    "id": "69eba664a8d8bc8c594d17fd",
  	    "address": "0x7A750D8D6e12cce09A7c15482077a8A4d4c37de4",
  	    "type": "settlement",
  	    "protocol": "EVM",
  	    "isEvmCompatible": true,
  	    "name": "Default Wallet(EVM)",
  	    "refId": "b2be0f63-f73e-49f5-bc52-93dae008b1d7",
  	    "custodyType": "DEVELOPER",
  	    "token": {
  	      "name": "USD Coin",
  	      "symbol": "USDC",
  	      "blockchain": "BASE",
  	      "tokenAddress": "0x036cbd53842c5426634e7929541ec2318f3dcf7e",
  	      "isNative": false,
  	      "decimals": 6,
  	      "standard": "ERC20",
  	      "balance": {
  	        "value": "5.028011",
  	        "rawValue": "5028011"
  	      }
  	    }
  	  }
  	}
     }
  }
  ```

  ```json deposit.success theme={null}
  {
    "requestId": "04afc1dd8ffae1f6f8c66f96eed0f5",
    "method": "smart-accounts:deposit.success",
    "params": {
        "id": "6a382b951e117b952736649a",
  	  "refId": "9395d9b3-b58a-4856-8a3e-886c687f8d6f",
  	  "idempotencyKey": "d1526226-27c2-440f-8d57-a2e3bc980e89",
  	  "tokenName": "USD Coin",
  	  "tokenSymbol": "USDC",
  	  "tokenTicker": "USDC_BASE",
  	  "tokenAddress": "0x036cbd53842c5426634e7929541ec2318f3dcf7e",
  	  "decimals": 6,
  	  "isNative": false,
  	  "amount": {
  	    "value": "5",
  	    "rawValue": "5000000"
  	  },
  	  "chainDecimals": 18,
  	  "blockchain": "BASE",
  	  "protocol": "EVM",
  	  "environment": "testnet",
  	  "network": "base-sepolia",
  	  "txType": "incoming",
  	  "status": "success",
  	  "fromAddress": "0xda0348137a73899a156944e31c81f05f646d168c",
  	  "toAddress": "0x226917bdc6d659672050e48ca6ce73dbd3a1d318",
  	  "txHash": "0xee30898cdfaee9c810996756337044fd98b4b0406583dd2d5706288b97f472e5",
  	  "note": null,
  	  "triggerOrigin": "blockchain",
  	  "confirmation": "1",
  	  "confirmed": true,
  	  "confirmedAt": "2026-06-21T18:24:28.849Z",
  	  "walletId": "6a38259e7b6635a105154d11",
  	  "accountId": "69eba97c3f7e15428aef8811",
  	  "workspaceId": "67e723ed4b44a4f73dd2e8a2",
  	  "createdAt": "2026-06-21T18:21:08.955Z",
  	  "updatedAt": "2026-06-21T18:24:29.478Z",
  	  "wallet": {
  	    "id": "6a38259e7b6635a105154d11",
  	    "address": "0x226917Bdc6d659672050E48ca6CE73dbd3A1D318",
  	    "type": "deposit",
  	    "protocol": "EVM",
  	    "isEvmCompatible": true,
  	    "name": "dev-user-4",
  	    "refId": "2198ddd0-4738-4ef6-b703-d1bfa79531d0",
  	    "custodyType": "DEVELOPER",
  	    "token": {
  	      "name": "USD Coin",
  	      "symbol": "USDC",
  	      "blockchain": "BASE",
  	      "tokenAddress": "0x036cbd53842c5426634e7929541ec2318f3dcf7e",
  	      "isNative": false,
  	      "decimals": 6,
  	      "standard": "ERC20",
  	      "balance": {
  	        "value": "5",
  	        "rawValue": "5000000"
  	      }
  	    }
  	  }
  	}
    }
  }
  ```
</CodeGroup>
