This repository was archived by the owner on May 20, 2025. It is now read-only.
File tree 1 file changed +11
-0
lines changed 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -6,40 +6,51 @@ components:
6
6
maxSpendUsd :
7
7
type : string
8
8
description : Maximum amount of USD that can be spent by the Gas Manager
9
+ nullable : true
9
10
maxSpendPerSenderUsd :
10
11
type : string
11
12
description : Maximum amount of USD that can be spent by a single sender
13
+ nullable : true
12
14
maxSpendPerUoUsd :
13
15
type : string
14
16
description : Maximum amount of USD that can be spent by a single user operation
17
+ nullable : true
15
18
maxCount :
16
19
type : string
17
20
description : Maximum number of operations that can be sponsored through the policy
21
+ nullable : true
18
22
maxCountPerSender :
19
23
type : string
20
24
description : Maximum number of operations that can be sponsored for a single sender through the policy
25
+ nullable : true
21
26
senderAllowlist :
22
27
type : array
23
28
items :
24
29
type : string
25
30
description : List of addresses that are allowed to send operations
31
+ nullable : true
26
32
senderBlocklist :
27
33
type : array
28
34
items :
29
35
type : string
30
36
description : List of addresses that are not allowed to send operations
37
+ nullable : true
31
38
startTimeUnix :
32
39
type : string
33
40
description : Unix timestamp of when the policy starts
41
+ nullable : true
34
42
endTimeUnix :
35
43
type : string
36
44
description : Unix timestamp of when the policy ends
45
+ nullable : true
37
46
sponsorshipExpiryMs :
38
47
type : string
39
48
description : Milliseconds from signing that the sponsorship expires. Defaults to 600000 (10 minutes).
40
49
default : ' 600000'
50
+ nullable : true
41
51
webhookRules :
42
52
type : object
53
+ nullable : true
43
54
description : Make a request to your server to verify sponsorship eligibility.
44
55
properties :
45
56
webhookUrl :
You can’t perform that action at this time.
0 commit comments