type CreateAgentWallet = {
application: string;
label: string;
network: | "EthereumAnvil"
| "BaseSepolia"
| "BaseMainnet"
| "StarknetDevnet"
| "StarknetSepolia"
| "StarknetMainnet"
| "StellarQuickstart"
| "StellarTestnet"
| "StellarMainnet";
owner?: string;
paymentRail: "x402";
policy?: {
currency: string;
domainAllowList?: string[] | null;
maxAmountPerDayRef?: string | null;
maxAmountPerMonthRef?: string | null;
maxAmountPerPaymentRef?: string | null;
maxAmountPerWeekRef?: string | null;
recipientAllowList?: string[] | null;
requireHumanAboveRef?: string | null;
timezone?: string | null;
volatilityMarginBps?: number | null;
};
};