Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 2b59d12

Browse files
committed
add nullables back
1 parent 6f8aac1 commit 2b59d12

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

account-abstraction/schemas.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,40 +6,51 @@ components:
66
maxSpendUsd:
77
type: string
88
description: Maximum amount of USD that can be spent by the Gas Manager
9+
nullable: true
910
maxSpendPerSenderUsd:
1011
type: string
1112
description: Maximum amount of USD that can be spent by a single sender
13+
nullable: true
1214
maxSpendPerUoUsd:
1315
type: string
1416
description: Maximum amount of USD that can be spent by a single user operation
17+
nullable: true
1518
maxCount:
1619
type: string
1720
description: Maximum number of operations that can be sponsored through the policy
21+
nullable: true
1822
maxCountPerSender:
1923
type: string
2024
description: Maximum number of operations that can be sponsored for a single sender through the policy
25+
nullable: true
2126
senderAllowlist:
2227
type: array
2328
items:
2429
type: string
2530
description: List of addresses that are allowed to send operations
31+
nullable: true
2632
senderBlocklist:
2733
type: array
2834
items:
2935
type: string
3036
description: List of addresses that are not allowed to send operations
37+
nullable: true
3138
startTimeUnix:
3239
type: string
3340
description: Unix timestamp of when the policy starts
41+
nullable: true
3442
endTimeUnix:
3543
type: string
3644
description: Unix timestamp of when the policy ends
45+
nullable: true
3746
sponsorshipExpiryMs:
3847
type: string
3948
description: Milliseconds from signing that the sponsorship expires. Defaults to 600000 (10 minutes).
4049
default: '600000'
50+
nullable: true
4151
webhookRules:
4252
type: object
53+
nullable: true
4354
description: Make a request to your server to verify sponsorship eligibility.
4455
properties:
4556
webhookUrl:

0 commit comments

Comments
 (0)