type CreateAgentWallet = {
application: string;
label: string;
network: | "EthereumAnvil"
| "BaseSepolia"
| "BaseMainnet"
| "XdcApothem"
| "XdcMainnet"
| "StellarQuickstart"
| "StellarTestnet"
| "StellarMainnet";
owner?: string;
paymentRail: "x402";
policy?: {
currency: string;
maxAmountPerDayRef?: string | null;
maxAmountPerMonthRef?: string | null;
maxAmountPerPaymentRef?: string | null;
maxAmountPerWeekRef?: string | null;
requireHumanAboveRef?: string | null;
timezone?: string | null;
volatilityMarginBps?: number | null;
};
};