AgentWallet¶
The main entry point for PayGraph. Orchestrates policy checks, gateway calls, and audit logging.
paygraph.wallet.AgentWallet
¶
Main entry point for PayGraph spend governance.
Orchestrates policy checks, gateway calls, and audit logging for both virtual card and x402 payment flows.
Example
Source code in src/paygraph/wallet.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | |
spend_tool
cached
property
¶
LangChain-compatible tool for virtual card spends.
Returns a @tool-decorated function usable in LangGraph agents.
Requires langchain-core: install with pip install paygraph[langgraph].
x402_tool
cached
property
¶
LangChain-compatible tool for x402 HTTP payments.
Returns a @tool-decorated function usable in LangGraph agents.
Requires langchain-core and an x402_gateway to be configured.
__init__(gateway=None, x402_gateway=None, policy=None, agent_id='default', log_path='paygraph_audit.jsonl', verbose=True, animate=False)
¶
Initialize the wallet with a gateway, policy, and audit settings.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
gateway
|
Card gateway implementing |
None
|
|
x402_gateway
|
Optional x402 gateway ( |
None
|
|
policy
|
SpendPolicy | None
|
Spend policy rules. Defaults to |
None
|
agent_id
|
str
|
Identifier for this agent in audit logs. |
'default'
|
log_path
|
str
|
File path for the JSONL audit log. |
'paygraph_audit.jsonl'
|
verbose
|
bool
|
If True, print policy check results to stdout. |
True
|
animate
|
bool
|
If True, add a short delay between policy checks for visual effect in demos. |
False
|
Source code in src/paygraph/wallet.py
request_spend(amount, vendor, justification)
¶
Request a policy-checked virtual card spend.
Evaluates the spend against the configured policy, then calls the card gateway to mint a virtual card if approved.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
amount
|
float
|
Dollar amount to spend (e.g. 4.20 for $4.20). |
required |
vendor
|
str
|
Name of the vendor or service. |
required |
justification
|
str
|
Explanation of why this purchase is necessary. |
required |
Returns:
| Type | Description |
|---|---|
str
|
A string with the card details (PAN, CVV, expiry). |
Raises:
| Type | Description |
|---|---|
PolicyViolationError
|
If the policy engine denies the request. |
SpendDeniedError
|
If a human denies the request (MockGateway). |
GatewayError
|
If the gateway API call fails. |
Source code in src/paygraph/wallet.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | |
request_x402(url, amount, vendor, justification, method='GET', headers=None, body=None)
¶
Make a policy-checked x402 payment to a paid HTTP endpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
The x402-enabled API endpoint URL. |
required |
amount
|
float
|
Dollar amount for the request (e.g. 0.50 for $0.50). |
required |
vendor
|
str
|
Name of the service or vendor. |
required |
justification
|
str
|
Explanation of why this API call is necessary. |
required |
method
|
str
|
HTTP method (default |
'GET'
|
headers
|
dict | None
|
Optional additional HTTP headers. |
None
|
body
|
str | None
|
Optional request body string. |
None
|
Returns:
| Type | Description |
|---|---|
str
|
The response body from the paid resource. |
Raises:
| Type | Description |
|---|---|
GatewayError
|
If no x402 gateway is configured, or the payment fails. |
PolicyViolationError
|
If the policy engine denies the request. |
SpendDeniedError
|
If a human denies the request (MockX402Gateway). |
Source code in src/paygraph/wallet.py
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | |