@sly-rentals/core 1.2.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api.json +12695 -9074
- package/dist/cjs/calculator/ContestTimeline.js +407 -0
- package/dist/cjs/calculator/ContestTimeline.js.map +1 -0
- package/dist/cjs/calculator/MinBidChart.js +424 -0
- package/dist/cjs/calculator/MinBidChart.js.map +1 -0
- package/dist/cjs/calculator/dom.js +39 -0
- package/dist/cjs/calculator/dom.js.map +1 -0
- package/dist/cjs/calculator/emitter.js +36 -0
- package/dist/cjs/calculator/emitter.js.map +1 -0
- package/dist/cjs/calculator/index.js +20 -0
- package/dist/cjs/calculator/index.js.map +1 -0
- package/dist/cjs/cost/constants.js +54 -6
- package/dist/cjs/cost/constants.js.map +1 -1
- package/dist/cjs/cost/estimate.js +7 -4
- package/dist/cjs/cost/estimate.js.map +1 -1
- package/dist/cjs/cost/estimate.test.js +16 -4
- package/dist/cjs/cost/estimate.test.js.map +1 -1
- package/dist/cjs/cost/index.js +32 -17
- package/dist/cjs/cost/index.js.map +1 -1
- package/dist/cjs/cost/sizes.js +20 -3
- package/dist/cjs/cost/sizes.js.map +1 -1
- package/dist/cjs/generated/codama/errors/srsly.js +13 -16
- package/dist/cjs/generated/codama/errors/srsly.js.map +1 -1
- package/dist/cjs/idl/srsly.json +300 -2396
- package/dist/cjs/instructions/closeContract.js +3 -37
- package/dist/cjs/instructions/closeContract.js.map +1 -1
- package/dist/cjs/instructions/createContract.js +2 -4
- package/dist/cjs/instructions/createContract.js.map +1 -1
- package/dist/cjs/instructions/createContractThread.js +1 -2
- package/dist/cjs/instructions/createContractThread.js.map +1 -1
- package/dist/cjs/instructions/index.js +65 -42
- package/dist/cjs/instructions/index.js.map +1 -1
- package/dist/cjs/kit/index.js +5 -27
- package/dist/cjs/kit/index.js.map +1 -1
- package/dist/cjs/legacy/index.js +5 -3
- package/dist/cjs/legacy/index.js.map +1 -1
- package/dist/cjs/package.json +10 -3
- package/dist/cjs/react/ContestTimeline.js +59 -0
- package/dist/cjs/react/ContestTimeline.js.map +1 -0
- package/dist/cjs/react/MinBidChart.js +34 -0
- package/dist/cjs/react/MinBidChart.js.map +1 -0
- package/dist/cjs/react/index.js +18 -0
- package/dist/cjs/react/index.js.map +1 -0
- package/dist/cjs/utils/contestChain.js +222 -0
- package/dist/cjs/utils/contestChain.js.map +1 -0
- package/dist/cjs/utils/index.js +8 -1
- package/dist/cjs/utils/index.js.map +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/calculator/ContestTimeline.js +403 -0
- package/dist/esm/calculator/ContestTimeline.js.map +1 -0
- package/dist/esm/calculator/MinBidChart.js +417 -0
- package/dist/esm/calculator/MinBidChart.js.map +1 -0
- package/dist/esm/calculator/dom.js +35 -0
- package/dist/esm/calculator/dom.js.map +1 -0
- package/dist/esm/calculator/emitter.js +32 -0
- package/dist/esm/calculator/emitter.js.map +1 -0
- package/dist/esm/calculator/index.js +13 -0
- package/dist/esm/calculator/index.js.map +1 -0
- package/dist/esm/cost/constants.js +52 -5
- package/dist/esm/cost/constants.js.map +1 -1
- package/dist/esm/cost/estimate.js +9 -6
- package/dist/esm/cost/estimate.js.map +1 -1
- package/dist/esm/cost/estimate.test.js +18 -6
- package/dist/esm/cost/estimate.test.js.map +1 -1
- package/dist/esm/cost/index.js +13 -3
- package/dist/esm/cost/index.js.map +1 -1
- package/dist/esm/cost/sizes.js +19 -2
- package/dist/esm/cost/sizes.js.map +1 -1
- package/dist/esm/generated/codama/errors/srsly.js +14 -17
- package/dist/esm/generated/codama/errors/srsly.js.map +1 -1
- package/dist/esm/idl/srsly.json +300 -2396
- package/dist/esm/instructions/closeContract.js +1 -2
- package/dist/esm/instructions/closeContract.js.map +1 -1
- package/dist/esm/instructions/createContract.js +2 -4
- package/dist/esm/instructions/createContract.js.map +1 -1
- package/dist/esm/instructions/createContractThread.js +2 -3
- package/dist/esm/instructions/createContractThread.js.map +1 -1
- package/dist/esm/instructions/index.js +36 -28
- package/dist/esm/instructions/index.js.map +1 -1
- package/dist/esm/kit/index.js +4 -4
- package/dist/esm/kit/index.js.map +1 -1
- package/dist/esm/legacy/index.js +4 -2
- package/dist/esm/legacy/index.js.map +1 -1
- package/dist/esm/package.json +10 -3
- package/dist/esm/react/ContestTimeline.js +56 -0
- package/dist/esm/react/ContestTimeline.js.map +1 -0
- package/dist/esm/react/MinBidChart.js +30 -0
- package/dist/esm/react/MinBidChart.js.map +1 -0
- package/dist/esm/react/index.js +12 -0
- package/dist/esm/react/index.js.map +1 -0
- package/dist/esm/utils/contestChain.js +214 -0
- package/dist/esm/utils/contestChain.js.map +1 -0
- package/dist/esm/utils/index.js +2 -0
- package/dist/esm/utils/index.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/idl/srsly.json +301 -2397
- package/dist/types/calculator/ContestTimeline.d.ts +69 -0
- package/dist/types/calculator/ContestTimeline.d.ts.map +1 -0
- package/dist/types/calculator/MinBidChart.d.ts +73 -0
- package/dist/types/calculator/MinBidChart.d.ts.map +1 -0
- package/dist/types/calculator/dom.d.ts +16 -0
- package/dist/types/calculator/dom.d.ts.map +1 -0
- package/dist/types/calculator/emitter.d.ts +13 -0
- package/dist/types/calculator/emitter.d.ts.map +1 -0
- package/dist/types/calculator/index.d.ts +13 -0
- package/dist/types/calculator/index.d.ts.map +1 -0
- package/dist/types/cost/constants.d.ts +49 -5
- package/dist/types/cost/constants.d.ts.map +1 -1
- package/dist/types/cost/estimate.d.ts +12 -1
- package/dist/types/cost/estimate.d.ts.map +1 -1
- package/dist/types/cost/index.d.ts +13 -3
- package/dist/types/cost/index.d.ts.map +1 -1
- package/dist/types/cost/sizes.d.ts +19 -2
- package/dist/types/cost/sizes.d.ts.map +1 -1
- package/dist/types/generated/codama/errors/srsly.d.ts +11 -13
- package/dist/types/generated/codama/errors/srsly.d.ts.map +1 -1
- package/dist/types/instructions/closeContract.d.ts.map +1 -1
- package/dist/types/instructions/createContract.d.ts.map +1 -1
- package/dist/types/instructions/index.d.ts +36 -28
- package/dist/types/instructions/index.d.ts.map +1 -1
- package/dist/types/kit/index.d.ts +0 -2
- package/dist/types/kit/index.d.ts.map +1 -1
- package/dist/types/legacy/index.d.ts +0 -2
- package/dist/types/legacy/index.d.ts.map +1 -1
- package/dist/types/react/ContestTimeline.d.ts +17 -0
- package/dist/types/react/ContestTimeline.d.ts.map +1 -0
- package/dist/types/react/MinBidChart.d.ts +12 -0
- package/dist/types/react/MinBidChart.d.ts.map +1 -0
- package/dist/types/react/index.d.ts +12 -0
- package/dist/types/react/index.d.ts.map +1 -0
- package/dist/types/utils/contestChain.d.ts +130 -0
- package/dist/types/utils/contestChain.d.ts.map +1 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/index.d.ts.map +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +38 -2
package/dist/cjs/idl/srsly.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"address": "SRSLYxcFnjd5jG2DpJw4as6UEyjwJQK1U4J1TD1hvZH",
|
|
3
3
|
"metadata": {
|
|
4
4
|
"name": "srsly",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.2",
|
|
6
6
|
"spec": "0.1.0",
|
|
7
7
|
"description": "Space Rental from SLY",
|
|
8
8
|
"repository": "https://github.com/wuwei-labs/srsly"
|
|
@@ -15,16 +15,7 @@
|
|
|
15
15
|
"Used when no active rental exists. For queued rentals, use reserve_rental.",
|
|
16
16
|
"Optionally verifies an ed25519 discount signature via slyvault CPI."
|
|
17
17
|
],
|
|
18
|
-
"discriminator": [
|
|
19
|
-
192,
|
|
20
|
-
221,
|
|
21
|
-
241,
|
|
22
|
-
212,
|
|
23
|
-
141,
|
|
24
|
-
161,
|
|
25
|
-
36,
|
|
26
|
-
146
|
|
27
|
-
],
|
|
18
|
+
"discriminator": [192, 221, 241, 212, 141, 161, 36, 146],
|
|
28
19
|
"accounts": [
|
|
29
20
|
{
|
|
30
21
|
"name": "borrower",
|
|
@@ -38,14 +29,7 @@
|
|
|
38
29
|
"seeds": [
|
|
39
30
|
{
|
|
40
31
|
"kind": "const",
|
|
41
|
-
"value": [
|
|
42
|
-
99,
|
|
43
|
-
111,
|
|
44
|
-
110,
|
|
45
|
-
102,
|
|
46
|
-
105,
|
|
47
|
-
103
|
|
48
|
-
]
|
|
32
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
49
33
|
}
|
|
50
34
|
]
|
|
51
35
|
}
|
|
@@ -57,22 +41,7 @@
|
|
|
57
41
|
"seeds": [
|
|
58
42
|
{
|
|
59
43
|
"kind": "const",
|
|
60
|
-
"value": [
|
|
61
|
-
98,
|
|
62
|
-
111,
|
|
63
|
-
114,
|
|
64
|
-
114,
|
|
65
|
-
111,
|
|
66
|
-
119,
|
|
67
|
-
101,
|
|
68
|
-
114,
|
|
69
|
-
95,
|
|
70
|
-
115,
|
|
71
|
-
116,
|
|
72
|
-
97,
|
|
73
|
-
116,
|
|
74
|
-
101
|
|
75
|
-
]
|
|
44
|
+
"value": [98, 111, 114, 114, 111, 119, 101, 114, 95, 115, 116, 97, 116, 101]
|
|
76
45
|
},
|
|
77
46
|
{
|
|
78
47
|
"kind": "account",
|
|
@@ -87,9 +56,7 @@
|
|
|
87
56
|
},
|
|
88
57
|
{
|
|
89
58
|
"name": "fleet",
|
|
90
|
-
"docs": [
|
|
91
|
-
"Fleet validated by contract"
|
|
92
|
-
],
|
|
59
|
+
"docs": ["Fleet validated by contract"],
|
|
93
60
|
"writable": true
|
|
94
61
|
},
|
|
95
62
|
{
|
|
@@ -107,23 +74,7 @@
|
|
|
107
74
|
"seeds": [
|
|
108
75
|
{
|
|
109
76
|
"kind": "const",
|
|
110
|
-
"value": [
|
|
111
|
-
114,
|
|
112
|
-
101,
|
|
113
|
-
110,
|
|
114
|
-
116,
|
|
115
|
-
97,
|
|
116
|
-
108,
|
|
117
|
-
95,
|
|
118
|
-
99,
|
|
119
|
-
111,
|
|
120
|
-
110,
|
|
121
|
-
116,
|
|
122
|
-
114,
|
|
123
|
-
97,
|
|
124
|
-
99,
|
|
125
|
-
116
|
|
126
|
-
]
|
|
77
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
127
78
|
},
|
|
128
79
|
{
|
|
129
80
|
"kind": "account",
|
|
@@ -135,28 +86,13 @@
|
|
|
135
86
|
},
|
|
136
87
|
{
|
|
137
88
|
"name": "active_rental",
|
|
138
|
-
"docs": [
|
|
139
|
-
"Active rental slot"
|
|
140
|
-
],
|
|
89
|
+
"docs": ["Active rental slot"],
|
|
141
90
|
"writable": true,
|
|
142
91
|
"pda": {
|
|
143
92
|
"seeds": [
|
|
144
93
|
{
|
|
145
94
|
"kind": "const",
|
|
146
|
-
"value": [
|
|
147
|
-
114,
|
|
148
|
-
101,
|
|
149
|
-
110,
|
|
150
|
-
116,
|
|
151
|
-
97,
|
|
152
|
-
108,
|
|
153
|
-
95,
|
|
154
|
-
115,
|
|
155
|
-
116,
|
|
156
|
-
97,
|
|
157
|
-
116,
|
|
158
|
-
101
|
|
159
|
-
]
|
|
95
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
160
96
|
},
|
|
161
97
|
{
|
|
162
98
|
"kind": "account",
|
|
@@ -164,42 +100,20 @@
|
|
|
164
100
|
},
|
|
165
101
|
{
|
|
166
102
|
"kind": "const",
|
|
167
|
-
"value": [
|
|
168
|
-
97,
|
|
169
|
-
99,
|
|
170
|
-
116,
|
|
171
|
-
105,
|
|
172
|
-
118,
|
|
173
|
-
101
|
|
174
|
-
]
|
|
103
|
+
"value": [97, 99, 116, 105, 118, 101]
|
|
175
104
|
}
|
|
176
105
|
]
|
|
177
106
|
}
|
|
178
107
|
},
|
|
179
108
|
{
|
|
180
109
|
"name": "queued_rental",
|
|
181
|
-
"docs": [
|
|
182
|
-
"Queued rental slot"
|
|
183
|
-
],
|
|
110
|
+
"docs": ["Queued rental slot"],
|
|
184
111
|
"writable": true,
|
|
185
112
|
"pda": {
|
|
186
113
|
"seeds": [
|
|
187
114
|
{
|
|
188
115
|
"kind": "const",
|
|
189
|
-
"value": [
|
|
190
|
-
114,
|
|
191
|
-
101,
|
|
192
|
-
110,
|
|
193
|
-
116,
|
|
194
|
-
97,
|
|
195
|
-
108,
|
|
196
|
-
95,
|
|
197
|
-
115,
|
|
198
|
-
116,
|
|
199
|
-
97,
|
|
200
|
-
116,
|
|
201
|
-
101
|
|
202
|
-
]
|
|
116
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
203
117
|
},
|
|
204
118
|
{
|
|
205
119
|
"kind": "account",
|
|
@@ -207,14 +121,7 @@
|
|
|
207
121
|
},
|
|
208
122
|
{
|
|
209
123
|
"kind": "const",
|
|
210
|
-
"value": [
|
|
211
|
-
113,
|
|
212
|
-
117,
|
|
213
|
-
101,
|
|
214
|
-
117,
|
|
215
|
-
101,
|
|
216
|
-
100
|
|
217
|
-
]
|
|
124
|
+
"value": [113, 117, 101, 117, 101, 100]
|
|
218
125
|
}
|
|
219
126
|
]
|
|
220
127
|
}
|
|
@@ -227,22 +134,7 @@
|
|
|
227
134
|
{
|
|
228
135
|
"kind": "const",
|
|
229
136
|
"value": [
|
|
230
|
-
114,
|
|
231
|
-
101,
|
|
232
|
-
110,
|
|
233
|
-
116,
|
|
234
|
-
97,
|
|
235
|
-
108,
|
|
236
|
-
95,
|
|
237
|
-
97,
|
|
238
|
-
117,
|
|
239
|
-
116,
|
|
240
|
-
104,
|
|
241
|
-
111,
|
|
242
|
-
114,
|
|
243
|
-
105,
|
|
244
|
-
116,
|
|
245
|
-
121
|
|
137
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
246
138
|
]
|
|
247
139
|
}
|
|
248
140
|
]
|
|
@@ -326,10 +218,7 @@
|
|
|
326
218
|
"name": "discount_signature",
|
|
327
219
|
"type": {
|
|
328
220
|
"option": {
|
|
329
|
-
"array": [
|
|
330
|
-
"u8",
|
|
331
|
-
64
|
|
332
|
-
]
|
|
221
|
+
"array": ["u8", 64]
|
|
333
222
|
}
|
|
334
223
|
}
|
|
335
224
|
},
|
|
@@ -360,16 +249,7 @@
|
|
|
360
249
|
"- cancel_delay = 0: Instant cancellation (fleet returned immediately)",
|
|
361
250
|
"- cancel_delay > 0: Deferred cancellation (fleet stays with borrower until delay expires)"
|
|
362
251
|
],
|
|
363
|
-
"discriminator": [
|
|
364
|
-
97,
|
|
365
|
-
204,
|
|
366
|
-
63,
|
|
367
|
-
8,
|
|
368
|
-
84,
|
|
369
|
-
34,
|
|
370
|
-
28,
|
|
371
|
-
43
|
|
372
|
-
],
|
|
252
|
+
"discriminator": [97, 204, 63, 8, 84, 34, 28, 43],
|
|
373
253
|
"accounts": [
|
|
374
254
|
{
|
|
375
255
|
"name": "borrower",
|
|
@@ -382,14 +262,7 @@
|
|
|
382
262
|
"seeds": [
|
|
383
263
|
{
|
|
384
264
|
"kind": "const",
|
|
385
|
-
"value": [
|
|
386
|
-
99,
|
|
387
|
-
111,
|
|
388
|
-
110,
|
|
389
|
-
102,
|
|
390
|
-
105,
|
|
391
|
-
103
|
|
392
|
-
]
|
|
265
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
393
266
|
}
|
|
394
267
|
]
|
|
395
268
|
}
|
|
@@ -404,22 +277,7 @@
|
|
|
404
277
|
"seeds": [
|
|
405
278
|
{
|
|
406
279
|
"kind": "const",
|
|
407
|
-
"value": [
|
|
408
|
-
98,
|
|
409
|
-
111,
|
|
410
|
-
114,
|
|
411
|
-
114,
|
|
412
|
-
111,
|
|
413
|
-
119,
|
|
414
|
-
101,
|
|
415
|
-
114,
|
|
416
|
-
95,
|
|
417
|
-
115,
|
|
418
|
-
116,
|
|
419
|
-
97,
|
|
420
|
-
116,
|
|
421
|
-
101
|
|
422
|
-
]
|
|
280
|
+
"value": [98, 111, 114, 114, 111, 119, 101, 114, 95, 115, 116, 97, 116, 101]
|
|
423
281
|
},
|
|
424
282
|
{
|
|
425
283
|
"kind": "account",
|
|
@@ -440,38 +298,8 @@
|
|
|
440
298
|
{
|
|
441
299
|
"kind": "const",
|
|
442
300
|
"value": [
|
|
443
|
-
6,
|
|
444
|
-
|
|
445
|
-
246,
|
|
446
|
-
225,
|
|
447
|
-
215,
|
|
448
|
-
101,
|
|
449
|
-
161,
|
|
450
|
-
147,
|
|
451
|
-
217,
|
|
452
|
-
203,
|
|
453
|
-
225,
|
|
454
|
-
70,
|
|
455
|
-
206,
|
|
456
|
-
235,
|
|
457
|
-
121,
|
|
458
|
-
172,
|
|
459
|
-
28,
|
|
460
|
-
180,
|
|
461
|
-
133,
|
|
462
|
-
237,
|
|
463
|
-
95,
|
|
464
|
-
91,
|
|
465
|
-
55,
|
|
466
|
-
145,
|
|
467
|
-
58,
|
|
468
|
-
140,
|
|
469
|
-
245,
|
|
470
|
-
133,
|
|
471
|
-
126,
|
|
472
|
-
255,
|
|
473
|
-
0,
|
|
474
|
-
169
|
|
301
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
302
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
475
303
|
]
|
|
476
304
|
},
|
|
477
305
|
{
|
|
@@ -482,38 +310,8 @@
|
|
|
482
310
|
"program": {
|
|
483
311
|
"kind": "const",
|
|
484
312
|
"value": [
|
|
485
|
-
140,
|
|
486
|
-
|
|
487
|
-
37,
|
|
488
|
-
143,
|
|
489
|
-
78,
|
|
490
|
-
36,
|
|
491
|
-
137,
|
|
492
|
-
241,
|
|
493
|
-
187,
|
|
494
|
-
61,
|
|
495
|
-
16,
|
|
496
|
-
41,
|
|
497
|
-
20,
|
|
498
|
-
142,
|
|
499
|
-
13,
|
|
500
|
-
131,
|
|
501
|
-
11,
|
|
502
|
-
90,
|
|
503
|
-
19,
|
|
504
|
-
153,
|
|
505
|
-
218,
|
|
506
|
-
255,
|
|
507
|
-
16,
|
|
508
|
-
132,
|
|
509
|
-
4,
|
|
510
|
-
142,
|
|
511
|
-
123,
|
|
512
|
-
216,
|
|
513
|
-
219,
|
|
514
|
-
233,
|
|
515
|
-
248,
|
|
516
|
-
89
|
|
313
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
314
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
517
315
|
]
|
|
518
316
|
}
|
|
519
317
|
}
|
|
@@ -525,23 +323,7 @@
|
|
|
525
323
|
"seeds": [
|
|
526
324
|
{
|
|
527
325
|
"kind": "const",
|
|
528
|
-
"value": [
|
|
529
|
-
114,
|
|
530
|
-
101,
|
|
531
|
-
110,
|
|
532
|
-
116,
|
|
533
|
-
97,
|
|
534
|
-
108,
|
|
535
|
-
95,
|
|
536
|
-
99,
|
|
537
|
-
111,
|
|
538
|
-
110,
|
|
539
|
-
116,
|
|
540
|
-
114,
|
|
541
|
-
97,
|
|
542
|
-
99,
|
|
543
|
-
116
|
|
544
|
-
]
|
|
326
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
545
327
|
},
|
|
546
328
|
{
|
|
547
329
|
"kind": "account",
|
|
@@ -570,22 +352,7 @@
|
|
|
570
352
|
{
|
|
571
353
|
"kind": "const",
|
|
572
354
|
"value": [
|
|
573
|
-
114,
|
|
574
|
-
101,
|
|
575
|
-
110,
|
|
576
|
-
116,
|
|
577
|
-
97,
|
|
578
|
-
108,
|
|
579
|
-
95,
|
|
580
|
-
97,
|
|
581
|
-
117,
|
|
582
|
-
116,
|
|
583
|
-
104,
|
|
584
|
-
111,
|
|
585
|
-
114,
|
|
586
|
-
105,
|
|
587
|
-
116,
|
|
588
|
-
121
|
|
355
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
589
356
|
]
|
|
590
357
|
}
|
|
591
358
|
]
|
|
@@ -598,9 +365,7 @@
|
|
|
598
365
|
},
|
|
599
366
|
{
|
|
600
367
|
"name": "antegen_program",
|
|
601
|
-
"docs": [
|
|
602
|
-
"Thread Program for trigger update"
|
|
603
|
-
],
|
|
368
|
+
"docs": ["Thread Program for trigger update"],
|
|
604
369
|
"address": "AgTv5w1UvUb6zeqkThwMrztGu9hpepBu8YLghuR4dpSx"
|
|
605
370
|
},
|
|
606
371
|
{
|
|
@@ -629,16 +394,7 @@
|
|
|
629
394
|
"Borrower claims accumulated ATLAS from their managed token account.",
|
|
630
395
|
"Callable by borrower or admin (config.admin) as escape hatch."
|
|
631
396
|
],
|
|
632
|
-
"discriminator": [
|
|
633
|
-
110,
|
|
634
|
-
181,
|
|
635
|
-
137,
|
|
636
|
-
36,
|
|
637
|
-
71,
|
|
638
|
-
243,
|
|
639
|
-
38,
|
|
640
|
-
219
|
|
641
|
-
],
|
|
397
|
+
"discriminator": [110, 181, 137, 36, 71, 243, 38, 219],
|
|
642
398
|
"accounts": [
|
|
643
399
|
{
|
|
644
400
|
"name": "payer",
|
|
@@ -651,14 +407,7 @@
|
|
|
651
407
|
"seeds": [
|
|
652
408
|
{
|
|
653
409
|
"kind": "const",
|
|
654
|
-
"value": [
|
|
655
|
-
99,
|
|
656
|
-
111,
|
|
657
|
-
110,
|
|
658
|
-
102,
|
|
659
|
-
105,
|
|
660
|
-
103
|
|
661
|
-
]
|
|
410
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
662
411
|
}
|
|
663
412
|
]
|
|
664
413
|
}
|
|
@@ -677,22 +426,7 @@
|
|
|
677
426
|
"seeds": [
|
|
678
427
|
{
|
|
679
428
|
"kind": "const",
|
|
680
|
-
"value": [
|
|
681
|
-
98,
|
|
682
|
-
111,
|
|
683
|
-
114,
|
|
684
|
-
114,
|
|
685
|
-
111,
|
|
686
|
-
119,
|
|
687
|
-
101,
|
|
688
|
-
114,
|
|
689
|
-
95,
|
|
690
|
-
115,
|
|
691
|
-
116,
|
|
692
|
-
97,
|
|
693
|
-
116,
|
|
694
|
-
101
|
|
695
|
-
]
|
|
429
|
+
"value": [98, 111, 114, 114, 111, 119, 101, 114, 95, 115, 116, 97, 116, 101]
|
|
696
430
|
},
|
|
697
431
|
{
|
|
698
432
|
"kind": "account",
|
|
@@ -703,9 +437,7 @@
|
|
|
703
437
|
},
|
|
704
438
|
{
|
|
705
439
|
"name": "borrower_managed_token_account",
|
|
706
|
-
"docs": [
|
|
707
|
-
"Managed token account (ATA with borrower_state as authority)."
|
|
708
|
-
],
|
|
440
|
+
"docs": ["Managed token account (ATA with borrower_state as authority)."],
|
|
709
441
|
"writable": true,
|
|
710
442
|
"pda": {
|
|
711
443
|
"seeds": [
|
|
@@ -716,38 +448,8 @@
|
|
|
716
448
|
{
|
|
717
449
|
"kind": "const",
|
|
718
450
|
"value": [
|
|
719
|
-
6,
|
|
720
|
-
|
|
721
|
-
246,
|
|
722
|
-
225,
|
|
723
|
-
215,
|
|
724
|
-
101,
|
|
725
|
-
161,
|
|
726
|
-
147,
|
|
727
|
-
217,
|
|
728
|
-
203,
|
|
729
|
-
225,
|
|
730
|
-
70,
|
|
731
|
-
206,
|
|
732
|
-
235,
|
|
733
|
-
121,
|
|
734
|
-
172,
|
|
735
|
-
28,
|
|
736
|
-
180,
|
|
737
|
-
133,
|
|
738
|
-
237,
|
|
739
|
-
95,
|
|
740
|
-
91,
|
|
741
|
-
55,
|
|
742
|
-
145,
|
|
743
|
-
58,
|
|
744
|
-
140,
|
|
745
|
-
245,
|
|
746
|
-
133,
|
|
747
|
-
126,
|
|
748
|
-
255,
|
|
749
|
-
0,
|
|
750
|
-
169
|
|
451
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
452
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
751
453
|
]
|
|
752
454
|
},
|
|
753
455
|
{
|
|
@@ -758,38 +460,8 @@
|
|
|
758
460
|
"program": {
|
|
759
461
|
"kind": "const",
|
|
760
462
|
"value": [
|
|
761
|
-
140,
|
|
762
|
-
|
|
763
|
-
37,
|
|
764
|
-
143,
|
|
765
|
-
78,
|
|
766
|
-
36,
|
|
767
|
-
137,
|
|
768
|
-
241,
|
|
769
|
-
187,
|
|
770
|
-
61,
|
|
771
|
-
16,
|
|
772
|
-
41,
|
|
773
|
-
20,
|
|
774
|
-
142,
|
|
775
|
-
13,
|
|
776
|
-
131,
|
|
777
|
-
11,
|
|
778
|
-
90,
|
|
779
|
-
19,
|
|
780
|
-
153,
|
|
781
|
-
218,
|
|
782
|
-
255,
|
|
783
|
-
16,
|
|
784
|
-
132,
|
|
785
|
-
4,
|
|
786
|
-
142,
|
|
787
|
-
123,
|
|
788
|
-
216,
|
|
789
|
-
219,
|
|
790
|
-
233,
|
|
791
|
-
248,
|
|
792
|
-
89
|
|
463
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
464
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
793
465
|
]
|
|
794
466
|
}
|
|
795
467
|
}
|
|
@@ -806,38 +478,8 @@
|
|
|
806
478
|
{
|
|
807
479
|
"kind": "const",
|
|
808
480
|
"value": [
|
|
809
|
-
6,
|
|
810
|
-
|
|
811
|
-
246,
|
|
812
|
-
225,
|
|
813
|
-
215,
|
|
814
|
-
101,
|
|
815
|
-
161,
|
|
816
|
-
147,
|
|
817
|
-
217,
|
|
818
|
-
203,
|
|
819
|
-
225,
|
|
820
|
-
70,
|
|
821
|
-
206,
|
|
822
|
-
235,
|
|
823
|
-
121,
|
|
824
|
-
172,
|
|
825
|
-
28,
|
|
826
|
-
180,
|
|
827
|
-
133,
|
|
828
|
-
237,
|
|
829
|
-
95,
|
|
830
|
-
91,
|
|
831
|
-
55,
|
|
832
|
-
145,
|
|
833
|
-
58,
|
|
834
|
-
140,
|
|
835
|
-
245,
|
|
836
|
-
133,
|
|
837
|
-
126,
|
|
838
|
-
255,
|
|
839
|
-
0,
|
|
840
|
-
169
|
|
481
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
482
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
841
483
|
]
|
|
842
484
|
},
|
|
843
485
|
{
|
|
@@ -848,38 +490,8 @@
|
|
|
848
490
|
"program": {
|
|
849
491
|
"kind": "const",
|
|
850
492
|
"value": [
|
|
851
|
-
140,
|
|
852
|
-
|
|
853
|
-
37,
|
|
854
|
-
143,
|
|
855
|
-
78,
|
|
856
|
-
36,
|
|
857
|
-
137,
|
|
858
|
-
241,
|
|
859
|
-
187,
|
|
860
|
-
61,
|
|
861
|
-
16,
|
|
862
|
-
41,
|
|
863
|
-
20,
|
|
864
|
-
142,
|
|
865
|
-
13,
|
|
866
|
-
131,
|
|
867
|
-
11,
|
|
868
|
-
90,
|
|
869
|
-
19,
|
|
870
|
-
153,
|
|
871
|
-
218,
|
|
872
|
-
255,
|
|
873
|
-
16,
|
|
874
|
-
132,
|
|
875
|
-
4,
|
|
876
|
-
142,
|
|
877
|
-
123,
|
|
878
|
-
216,
|
|
879
|
-
219,
|
|
880
|
-
233,
|
|
881
|
-
248,
|
|
882
|
-
89
|
|
493
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
494
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
883
495
|
]
|
|
884
496
|
}
|
|
885
497
|
}
|
|
@@ -905,16 +517,7 @@
|
|
|
905
517
|
"Claim accumulated ATLAS from a specific contract's token account.",
|
|
906
518
|
"Transfers owner_claimable amount from contract_token_account to owner's wallet."
|
|
907
519
|
],
|
|
908
|
-
"discriminator": [
|
|
909
|
-
159,
|
|
910
|
-
37,
|
|
911
|
-
59,
|
|
912
|
-
144,
|
|
913
|
-
75,
|
|
914
|
-
50,
|
|
915
|
-
2,
|
|
916
|
-
170
|
|
917
|
-
],
|
|
520
|
+
"discriminator": [159, 37, 59, 144, 75, 50, 2, 170],
|
|
918
521
|
"accounts": [
|
|
919
522
|
{
|
|
920
523
|
"name": "payer",
|
|
@@ -930,14 +533,7 @@
|
|
|
930
533
|
"seeds": [
|
|
931
534
|
{
|
|
932
535
|
"kind": "const",
|
|
933
|
-
"value": [
|
|
934
|
-
99,
|
|
935
|
-
111,
|
|
936
|
-
110,
|
|
937
|
-
102,
|
|
938
|
-
105,
|
|
939
|
-
103
|
|
940
|
-
]
|
|
536
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
941
537
|
}
|
|
942
538
|
]
|
|
943
539
|
}
|
|
@@ -952,23 +548,7 @@
|
|
|
952
548
|
"seeds": [
|
|
953
549
|
{
|
|
954
550
|
"kind": "const",
|
|
955
|
-
"value": [
|
|
956
|
-
114,
|
|
957
|
-
101,
|
|
958
|
-
110,
|
|
959
|
-
116,
|
|
960
|
-
97,
|
|
961
|
-
108,
|
|
962
|
-
95,
|
|
963
|
-
99,
|
|
964
|
-
111,
|
|
965
|
-
110,
|
|
966
|
-
116,
|
|
967
|
-
114,
|
|
968
|
-
97,
|
|
969
|
-
99,
|
|
970
|
-
116
|
|
971
|
-
]
|
|
551
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
972
552
|
},
|
|
973
553
|
{
|
|
974
554
|
"kind": "account",
|
|
@@ -994,38 +574,8 @@
|
|
|
994
574
|
{
|
|
995
575
|
"kind": "const",
|
|
996
576
|
"value": [
|
|
997
|
-
6,
|
|
998
|
-
|
|
999
|
-
246,
|
|
1000
|
-
225,
|
|
1001
|
-
215,
|
|
1002
|
-
101,
|
|
1003
|
-
161,
|
|
1004
|
-
147,
|
|
1005
|
-
217,
|
|
1006
|
-
203,
|
|
1007
|
-
225,
|
|
1008
|
-
70,
|
|
1009
|
-
206,
|
|
1010
|
-
235,
|
|
1011
|
-
121,
|
|
1012
|
-
172,
|
|
1013
|
-
28,
|
|
1014
|
-
180,
|
|
1015
|
-
133,
|
|
1016
|
-
237,
|
|
1017
|
-
95,
|
|
1018
|
-
91,
|
|
1019
|
-
55,
|
|
1020
|
-
145,
|
|
1021
|
-
58,
|
|
1022
|
-
140,
|
|
1023
|
-
245,
|
|
1024
|
-
133,
|
|
1025
|
-
126,
|
|
1026
|
-
255,
|
|
1027
|
-
0,
|
|
1028
|
-
169
|
|
577
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
578
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
1029
579
|
]
|
|
1030
580
|
},
|
|
1031
581
|
{
|
|
@@ -1036,38 +586,8 @@
|
|
|
1036
586
|
"program": {
|
|
1037
587
|
"kind": "const",
|
|
1038
588
|
"value": [
|
|
1039
|
-
140,
|
|
1040
|
-
|
|
1041
|
-
37,
|
|
1042
|
-
143,
|
|
1043
|
-
78,
|
|
1044
|
-
36,
|
|
1045
|
-
137,
|
|
1046
|
-
241,
|
|
1047
|
-
187,
|
|
1048
|
-
61,
|
|
1049
|
-
16,
|
|
1050
|
-
41,
|
|
1051
|
-
20,
|
|
1052
|
-
142,
|
|
1053
|
-
13,
|
|
1054
|
-
131,
|
|
1055
|
-
11,
|
|
1056
|
-
90,
|
|
1057
|
-
19,
|
|
1058
|
-
153,
|
|
1059
|
-
218,
|
|
1060
|
-
255,
|
|
1061
|
-
16,
|
|
1062
|
-
132,
|
|
1063
|
-
4,
|
|
1064
|
-
142,
|
|
1065
|
-
123,
|
|
1066
|
-
216,
|
|
1067
|
-
219,
|
|
1068
|
-
233,
|
|
1069
|
-
248,
|
|
1070
|
-
89
|
|
589
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
590
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
1071
591
|
]
|
|
1072
592
|
}
|
|
1073
593
|
}
|
|
@@ -1093,16 +613,7 @@
|
|
|
1093
613
|
"Close a borrower's managed token account and BorrowerState.",
|
|
1094
614
|
"Requires no active rentals and zero managed ATA balance (claim first)."
|
|
1095
615
|
],
|
|
1096
|
-
"discriminator": [
|
|
1097
|
-
136,
|
|
1098
|
-
79,
|
|
1099
|
-
95,
|
|
1100
|
-
44,
|
|
1101
|
-
18,
|
|
1102
|
-
151,
|
|
1103
|
-
73,
|
|
1104
|
-
199
|
|
1105
|
-
],
|
|
616
|
+
"discriminator": [136, 79, 95, 44, 18, 151, 73, 199],
|
|
1106
617
|
"accounts": [
|
|
1107
618
|
{
|
|
1108
619
|
"name": "borrower",
|
|
@@ -1115,14 +626,7 @@
|
|
|
1115
626
|
"seeds": [
|
|
1116
627
|
{
|
|
1117
628
|
"kind": "const",
|
|
1118
|
-
"value": [
|
|
1119
|
-
99,
|
|
1120
|
-
111,
|
|
1121
|
-
110,
|
|
1122
|
-
102,
|
|
1123
|
-
105,
|
|
1124
|
-
103
|
|
1125
|
-
]
|
|
629
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
1126
630
|
}
|
|
1127
631
|
]
|
|
1128
632
|
}
|
|
@@ -1137,22 +641,7 @@
|
|
|
1137
641
|
"seeds": [
|
|
1138
642
|
{
|
|
1139
643
|
"kind": "const",
|
|
1140
|
-
"value": [
|
|
1141
|
-
98,
|
|
1142
|
-
111,
|
|
1143
|
-
114,
|
|
1144
|
-
114,
|
|
1145
|
-
111,
|
|
1146
|
-
119,
|
|
1147
|
-
101,
|
|
1148
|
-
114,
|
|
1149
|
-
95,
|
|
1150
|
-
115,
|
|
1151
|
-
116,
|
|
1152
|
-
97,
|
|
1153
|
-
116,
|
|
1154
|
-
101
|
|
1155
|
-
]
|
|
644
|
+
"value": [98, 111, 114, 114, 111, 119, 101, 114, 95, 115, 116, 97, 116, 101]
|
|
1156
645
|
},
|
|
1157
646
|
{
|
|
1158
647
|
"kind": "account",
|
|
@@ -1177,38 +666,8 @@
|
|
|
1177
666
|
{
|
|
1178
667
|
"kind": "const",
|
|
1179
668
|
"value": [
|
|
1180
|
-
6,
|
|
1181
|
-
|
|
1182
|
-
246,
|
|
1183
|
-
225,
|
|
1184
|
-
215,
|
|
1185
|
-
101,
|
|
1186
|
-
161,
|
|
1187
|
-
147,
|
|
1188
|
-
217,
|
|
1189
|
-
203,
|
|
1190
|
-
225,
|
|
1191
|
-
70,
|
|
1192
|
-
206,
|
|
1193
|
-
235,
|
|
1194
|
-
121,
|
|
1195
|
-
172,
|
|
1196
|
-
28,
|
|
1197
|
-
180,
|
|
1198
|
-
133,
|
|
1199
|
-
237,
|
|
1200
|
-
95,
|
|
1201
|
-
91,
|
|
1202
|
-
55,
|
|
1203
|
-
145,
|
|
1204
|
-
58,
|
|
1205
|
-
140,
|
|
1206
|
-
245,
|
|
1207
|
-
133,
|
|
1208
|
-
126,
|
|
1209
|
-
255,
|
|
1210
|
-
0,
|
|
1211
|
-
169
|
|
669
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
670
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
1212
671
|
]
|
|
1213
672
|
},
|
|
1214
673
|
{
|
|
@@ -1219,38 +678,8 @@
|
|
|
1219
678
|
"program": {
|
|
1220
679
|
"kind": "const",
|
|
1221
680
|
"value": [
|
|
1222
|
-
140,
|
|
1223
|
-
|
|
1224
|
-
37,
|
|
1225
|
-
143,
|
|
1226
|
-
78,
|
|
1227
|
-
36,
|
|
1228
|
-
137,
|
|
1229
|
-
241,
|
|
1230
|
-
187,
|
|
1231
|
-
61,
|
|
1232
|
-
16,
|
|
1233
|
-
41,
|
|
1234
|
-
20,
|
|
1235
|
-
142,
|
|
1236
|
-
13,
|
|
1237
|
-
131,
|
|
1238
|
-
11,
|
|
1239
|
-
90,
|
|
1240
|
-
19,
|
|
1241
|
-
153,
|
|
1242
|
-
218,
|
|
1243
|
-
255,
|
|
1244
|
-
16,
|
|
1245
|
-
132,
|
|
1246
|
-
4,
|
|
1247
|
-
142,
|
|
1248
|
-
123,
|
|
1249
|
-
216,
|
|
1250
|
-
219,
|
|
1251
|
-
233,
|
|
1252
|
-
248,
|
|
1253
|
-
89
|
|
681
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
682
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
1254
683
|
]
|
|
1255
684
|
}
|
|
1256
685
|
}
|
|
@@ -1273,16 +702,7 @@
|
|
|
1273
702
|
"Owner closes contract and claims all remaining payments",
|
|
1274
703
|
"Requires no active rental, reclaims all rent"
|
|
1275
704
|
],
|
|
1276
|
-
"discriminator": [
|
|
1277
|
-
37,
|
|
1278
|
-
244,
|
|
1279
|
-
34,
|
|
1280
|
-
168,
|
|
1281
|
-
92,
|
|
1282
|
-
202,
|
|
1283
|
-
80,
|
|
1284
|
-
106
|
|
1285
|
-
],
|
|
705
|
+
"discriminator": [37, 244, 34, 168, 92, 202, 80, 106],
|
|
1286
706
|
"accounts": [
|
|
1287
707
|
{
|
|
1288
708
|
"name": "owner",
|
|
@@ -1295,14 +715,7 @@
|
|
|
1295
715
|
"seeds": [
|
|
1296
716
|
{
|
|
1297
717
|
"kind": "const",
|
|
1298
|
-
"value": [
|
|
1299
|
-
99,
|
|
1300
|
-
111,
|
|
1301
|
-
110,
|
|
1302
|
-
102,
|
|
1303
|
-
105,
|
|
1304
|
-
103
|
|
1305
|
-
]
|
|
718
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
1306
719
|
}
|
|
1307
720
|
]
|
|
1308
721
|
}
|
|
@@ -1317,23 +730,7 @@
|
|
|
1317
730
|
"seeds": [
|
|
1318
731
|
{
|
|
1319
732
|
"kind": "const",
|
|
1320
|
-
"value": [
|
|
1321
|
-
114,
|
|
1322
|
-
101,
|
|
1323
|
-
110,
|
|
1324
|
-
116,
|
|
1325
|
-
97,
|
|
1326
|
-
108,
|
|
1327
|
-
95,
|
|
1328
|
-
99,
|
|
1329
|
-
111,
|
|
1330
|
-
110,
|
|
1331
|
-
116,
|
|
1332
|
-
114,
|
|
1333
|
-
97,
|
|
1334
|
-
99,
|
|
1335
|
-
116
|
|
1336
|
-
]
|
|
733
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
1337
734
|
},
|
|
1338
735
|
{
|
|
1339
736
|
"kind": "account",
|
|
@@ -1344,9 +741,7 @@
|
|
|
1344
741
|
},
|
|
1345
742
|
{
|
|
1346
743
|
"name": "fleet",
|
|
1347
|
-
"docs": [
|
|
1348
|
-
"Fleet to close rental contract for"
|
|
1349
|
-
],
|
|
744
|
+
"docs": ["Fleet to close rental contract for"],
|
|
1350
745
|
"writable": true
|
|
1351
746
|
},
|
|
1352
747
|
{
|
|
@@ -1356,20 +751,7 @@
|
|
|
1356
751
|
"seeds": [
|
|
1357
752
|
{
|
|
1358
753
|
"kind": "const",
|
|
1359
|
-
"value": [
|
|
1360
|
-
114,
|
|
1361
|
-
101,
|
|
1362
|
-
110,
|
|
1363
|
-
116,
|
|
1364
|
-
97,
|
|
1365
|
-
108,
|
|
1366
|
-
95,
|
|
1367
|
-
115,
|
|
1368
|
-
116,
|
|
1369
|
-
97,
|
|
1370
|
-
116,
|
|
1371
|
-
101
|
|
1372
|
-
]
|
|
754
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
1373
755
|
},
|
|
1374
756
|
{
|
|
1375
757
|
"kind": "account",
|
|
@@ -1377,14 +759,7 @@
|
|
|
1377
759
|
},
|
|
1378
760
|
{
|
|
1379
761
|
"kind": "const",
|
|
1380
|
-
"value": [
|
|
1381
|
-
97,
|
|
1382
|
-
99,
|
|
1383
|
-
116,
|
|
1384
|
-
105,
|
|
1385
|
-
118,
|
|
1386
|
-
101
|
|
1387
|
-
]
|
|
762
|
+
"value": [97, 99, 116, 105, 118, 101]
|
|
1388
763
|
}
|
|
1389
764
|
]
|
|
1390
765
|
}
|
|
@@ -1396,20 +771,7 @@
|
|
|
1396
771
|
"seeds": [
|
|
1397
772
|
{
|
|
1398
773
|
"kind": "const",
|
|
1399
|
-
"value": [
|
|
1400
|
-
114,
|
|
1401
|
-
101,
|
|
1402
|
-
110,
|
|
1403
|
-
116,
|
|
1404
|
-
97,
|
|
1405
|
-
108,
|
|
1406
|
-
95,
|
|
1407
|
-
115,
|
|
1408
|
-
116,
|
|
1409
|
-
97,
|
|
1410
|
-
116,
|
|
1411
|
-
101
|
|
1412
|
-
]
|
|
774
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
1413
775
|
},
|
|
1414
776
|
{
|
|
1415
777
|
"kind": "account",
|
|
@@ -1417,14 +779,7 @@
|
|
|
1417
779
|
},
|
|
1418
780
|
{
|
|
1419
781
|
"kind": "const",
|
|
1420
|
-
"value": [
|
|
1421
|
-
113,
|
|
1422
|
-
117,
|
|
1423
|
-
101,
|
|
1424
|
-
117,
|
|
1425
|
-
101,
|
|
1426
|
-
100
|
|
1427
|
-
]
|
|
782
|
+
"value": [113, 117, 101, 117, 101, 100]
|
|
1428
783
|
}
|
|
1429
784
|
]
|
|
1430
785
|
}
|
|
@@ -1445,38 +800,8 @@
|
|
|
1445
800
|
{
|
|
1446
801
|
"kind": "const",
|
|
1447
802
|
"value": [
|
|
1448
|
-
6,
|
|
1449
|
-
|
|
1450
|
-
246,
|
|
1451
|
-
225,
|
|
1452
|
-
215,
|
|
1453
|
-
101,
|
|
1454
|
-
161,
|
|
1455
|
-
147,
|
|
1456
|
-
217,
|
|
1457
|
-
203,
|
|
1458
|
-
225,
|
|
1459
|
-
70,
|
|
1460
|
-
206,
|
|
1461
|
-
235,
|
|
1462
|
-
121,
|
|
1463
|
-
172,
|
|
1464
|
-
28,
|
|
1465
|
-
180,
|
|
1466
|
-
133,
|
|
1467
|
-
237,
|
|
1468
|
-
95,
|
|
1469
|
-
91,
|
|
1470
|
-
55,
|
|
1471
|
-
145,
|
|
1472
|
-
58,
|
|
1473
|
-
140,
|
|
1474
|
-
245,
|
|
1475
|
-
133,
|
|
1476
|
-
126,
|
|
1477
|
-
255,
|
|
1478
|
-
0,
|
|
1479
|
-
169
|
|
803
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
804
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
1480
805
|
]
|
|
1481
806
|
},
|
|
1482
807
|
{
|
|
@@ -1487,38 +812,8 @@
|
|
|
1487
812
|
"program": {
|
|
1488
813
|
"kind": "const",
|
|
1489
814
|
"value": [
|
|
1490
|
-
140,
|
|
1491
|
-
|
|
1492
|
-
37,
|
|
1493
|
-
143,
|
|
1494
|
-
78,
|
|
1495
|
-
36,
|
|
1496
|
-
137,
|
|
1497
|
-
241,
|
|
1498
|
-
187,
|
|
1499
|
-
61,
|
|
1500
|
-
16,
|
|
1501
|
-
41,
|
|
1502
|
-
20,
|
|
1503
|
-
142,
|
|
1504
|
-
13,
|
|
1505
|
-
131,
|
|
1506
|
-
11,
|
|
1507
|
-
90,
|
|
1508
|
-
19,
|
|
1509
|
-
153,
|
|
1510
|
-
218,
|
|
1511
|
-
255,
|
|
1512
|
-
16,
|
|
1513
|
-
132,
|
|
1514
|
-
4,
|
|
1515
|
-
142,
|
|
1516
|
-
123,
|
|
1517
|
-
216,
|
|
1518
|
-
219,
|
|
1519
|
-
233,
|
|
1520
|
-
248,
|
|
1521
|
-
89
|
|
815
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
816
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
1522
817
|
]
|
|
1523
818
|
}
|
|
1524
819
|
}
|
|
@@ -1548,22 +843,7 @@
|
|
|
1548
843
|
{
|
|
1549
844
|
"kind": "const",
|
|
1550
845
|
"value": [
|
|
1551
|
-
114,
|
|
1552
|
-
101,
|
|
1553
|
-
110,
|
|
1554
|
-
116,
|
|
1555
|
-
97,
|
|
1556
|
-
108,
|
|
1557
|
-
95,
|
|
1558
|
-
97,
|
|
1559
|
-
117,
|
|
1560
|
-
116,
|
|
1561
|
-
104,
|
|
1562
|
-
111,
|
|
1563
|
-
114,
|
|
1564
|
-
105,
|
|
1565
|
-
116,
|
|
1566
|
-
121
|
|
846
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
1567
847
|
]
|
|
1568
848
|
}
|
|
1569
849
|
]
|
|
@@ -1593,16 +873,7 @@
|
|
|
1593
873
|
"Close a contract's automation thread independently.",
|
|
1594
874
|
"Closes thread + fibers, returns SOL to owner. Contract continues in manual mode."
|
|
1595
875
|
],
|
|
1596
|
-
"discriminator": [
|
|
1597
|
-
213,
|
|
1598
|
-
35,
|
|
1599
|
-
77,
|
|
1600
|
-
150,
|
|
1601
|
-
62,
|
|
1602
|
-
109,
|
|
1603
|
-
103,
|
|
1604
|
-
248
|
|
1605
|
-
],
|
|
876
|
+
"discriminator": [213, 35, 77, 150, 62, 109, 103, 248],
|
|
1606
877
|
"accounts": [
|
|
1607
878
|
{
|
|
1608
879
|
"name": "owner",
|
|
@@ -1616,23 +887,7 @@
|
|
|
1616
887
|
"seeds": [
|
|
1617
888
|
{
|
|
1618
889
|
"kind": "const",
|
|
1619
|
-
"value": [
|
|
1620
|
-
114,
|
|
1621
|
-
101,
|
|
1622
|
-
110,
|
|
1623
|
-
116,
|
|
1624
|
-
97,
|
|
1625
|
-
108,
|
|
1626
|
-
95,
|
|
1627
|
-
99,
|
|
1628
|
-
111,
|
|
1629
|
-
110,
|
|
1630
|
-
116,
|
|
1631
|
-
114,
|
|
1632
|
-
97,
|
|
1633
|
-
99,
|
|
1634
|
-
116
|
|
1635
|
-
]
|
|
890
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
1636
891
|
},
|
|
1637
892
|
{
|
|
1638
893
|
"kind": "account",
|
|
@@ -1649,22 +904,7 @@
|
|
|
1649
904
|
{
|
|
1650
905
|
"kind": "const",
|
|
1651
906
|
"value": [
|
|
1652
|
-
114,
|
|
1653
|
-
101,
|
|
1654
|
-
110,
|
|
1655
|
-
116,
|
|
1656
|
-
97,
|
|
1657
|
-
108,
|
|
1658
|
-
95,
|
|
1659
|
-
97,
|
|
1660
|
-
117,
|
|
1661
|
-
116,
|
|
1662
|
-
104,
|
|
1663
|
-
111,
|
|
1664
|
-
114,
|
|
1665
|
-
105,
|
|
1666
|
-
116,
|
|
1667
|
-
121
|
|
907
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
1668
908
|
]
|
|
1669
909
|
}
|
|
1670
910
|
]
|
|
@@ -1672,9 +912,7 @@
|
|
|
1672
912
|
},
|
|
1673
913
|
{
|
|
1674
914
|
"name": "thread",
|
|
1675
|
-
"docs": [
|
|
1676
|
-
"Validated by antegen's close_thread CPI (seeds check)."
|
|
1677
|
-
],
|
|
915
|
+
"docs": ["Validated by antegen's close_thread CPI (seeds check)."],
|
|
1678
916
|
"writable": true
|
|
1679
917
|
},
|
|
1680
918
|
{
|
|
@@ -1699,16 +937,7 @@
|
|
|
1699
937
|
"Serves both fiber 1 (automated) and manual fallback.",
|
|
1700
938
|
"Returns Signal for fiber dispatch (manual callers ignore return_data)."
|
|
1701
939
|
],
|
|
1702
|
-
"discriminator": [
|
|
1703
|
-
179,
|
|
1704
|
-
188,
|
|
1705
|
-
113,
|
|
1706
|
-
211,
|
|
1707
|
-
41,
|
|
1708
|
-
232,
|
|
1709
|
-
51,
|
|
1710
|
-
51
|
|
1711
|
-
],
|
|
940
|
+
"discriminator": [179, 188, 113, 211, 41, 232, 51, 51],
|
|
1712
941
|
"accounts": [
|
|
1713
942
|
{
|
|
1714
943
|
"name": "payer",
|
|
@@ -1722,14 +951,7 @@
|
|
|
1722
951
|
"seeds": [
|
|
1723
952
|
{
|
|
1724
953
|
"kind": "const",
|
|
1725
|
-
"value": [
|
|
1726
|
-
99,
|
|
1727
|
-
111,
|
|
1728
|
-
110,
|
|
1729
|
-
102,
|
|
1730
|
-
105,
|
|
1731
|
-
103
|
|
1732
|
-
]
|
|
954
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
1733
955
|
}
|
|
1734
956
|
]
|
|
1735
957
|
}
|
|
@@ -1741,23 +963,7 @@
|
|
|
1741
963
|
"seeds": [
|
|
1742
964
|
{
|
|
1743
965
|
"kind": "const",
|
|
1744
|
-
"value": [
|
|
1745
|
-
114,
|
|
1746
|
-
101,
|
|
1747
|
-
110,
|
|
1748
|
-
116,
|
|
1749
|
-
97,
|
|
1750
|
-
108,
|
|
1751
|
-
95,
|
|
1752
|
-
99,
|
|
1753
|
-
111,
|
|
1754
|
-
110,
|
|
1755
|
-
116,
|
|
1756
|
-
114,
|
|
1757
|
-
97,
|
|
1758
|
-
99,
|
|
1759
|
-
116
|
|
1760
|
-
]
|
|
966
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
1761
967
|
},
|
|
1762
968
|
{
|
|
1763
969
|
"kind": "account",
|
|
@@ -1777,9 +983,7 @@
|
|
|
1777
983
|
},
|
|
1778
984
|
{
|
|
1779
985
|
"name": "fleet",
|
|
1780
|
-
"docs": [
|
|
1781
|
-
"Fleet validated by contract"
|
|
1782
|
-
],
|
|
986
|
+
"docs": ["Fleet validated by contract"],
|
|
1783
987
|
"writable": true
|
|
1784
988
|
},
|
|
1785
989
|
{
|
|
@@ -1794,9 +998,7 @@
|
|
|
1794
998
|
},
|
|
1795
999
|
{
|
|
1796
1000
|
"name": "contract_token_account",
|
|
1797
|
-
"docs": [
|
|
1798
|
-
"Contract's escrow token account (source for fee flush)"
|
|
1799
|
-
],
|
|
1001
|
+
"docs": ["Contract's escrow token account (source for fee flush)"],
|
|
1800
1002
|
"writable": true
|
|
1801
1003
|
},
|
|
1802
1004
|
{
|
|
@@ -1825,20 +1027,7 @@
|
|
|
1825
1027
|
"seeds": [
|
|
1826
1028
|
{
|
|
1827
1029
|
"kind": "const",
|
|
1828
|
-
"value": [
|
|
1829
|
-
114,
|
|
1830
|
-
101,
|
|
1831
|
-
110,
|
|
1832
|
-
116,
|
|
1833
|
-
97,
|
|
1834
|
-
108,
|
|
1835
|
-
95,
|
|
1836
|
-
115,
|
|
1837
|
-
116,
|
|
1838
|
-
97,
|
|
1839
|
-
116,
|
|
1840
|
-
101
|
|
1841
|
-
]
|
|
1030
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
1842
1031
|
},
|
|
1843
1032
|
{
|
|
1844
1033
|
"kind": "account",
|
|
@@ -1846,14 +1035,7 @@
|
|
|
1846
1035
|
},
|
|
1847
1036
|
{
|
|
1848
1037
|
"kind": "const",
|
|
1849
|
-
"value": [
|
|
1850
|
-
113,
|
|
1851
|
-
117,
|
|
1852
|
-
101,
|
|
1853
|
-
117,
|
|
1854
|
-
101,
|
|
1855
|
-
100
|
|
1856
|
-
]
|
|
1038
|
+
"value": [113, 117, 101, 117, 101, 100]
|
|
1857
1039
|
}
|
|
1858
1040
|
]
|
|
1859
1041
|
}
|
|
@@ -1884,22 +1066,7 @@
|
|
|
1884
1066
|
{
|
|
1885
1067
|
"kind": "const",
|
|
1886
1068
|
"value": [
|
|
1887
|
-
114,
|
|
1888
|
-
101,
|
|
1889
|
-
110,
|
|
1890
|
-
116,
|
|
1891
|
-
97,
|
|
1892
|
-
108,
|
|
1893
|
-
95,
|
|
1894
|
-
97,
|
|
1895
|
-
117,
|
|
1896
|
-
116,
|
|
1897
|
-
104,
|
|
1898
|
-
111,
|
|
1899
|
-
114,
|
|
1900
|
-
105,
|
|
1901
|
-
116,
|
|
1902
|
-
121
|
|
1069
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
1903
1070
|
]
|
|
1904
1071
|
}
|
|
1905
1072
|
]
|
|
@@ -1942,16 +1109,7 @@
|
|
|
1942
1109
|
"Create a new BorrowerState account.",
|
|
1943
1110
|
"Must be called before any rental operations (rental_accept, rental_reserve)."
|
|
1944
1111
|
],
|
|
1945
|
-
"discriminator": [
|
|
1946
|
-
203,
|
|
1947
|
-
62,
|
|
1948
|
-
59,
|
|
1949
|
-
250,
|
|
1950
|
-
206,
|
|
1951
|
-
172,
|
|
1952
|
-
88,
|
|
1953
|
-
214
|
|
1954
|
-
],
|
|
1112
|
+
"discriminator": [203, 62, 59, 250, 206, 172, 88, 214],
|
|
1955
1113
|
"accounts": [
|
|
1956
1114
|
{
|
|
1957
1115
|
"name": "borrower",
|
|
@@ -1964,14 +1122,7 @@
|
|
|
1964
1122
|
"seeds": [
|
|
1965
1123
|
{
|
|
1966
1124
|
"kind": "const",
|
|
1967
|
-
"value": [
|
|
1968
|
-
99,
|
|
1969
|
-
111,
|
|
1970
|
-
110,
|
|
1971
|
-
102,
|
|
1972
|
-
105,
|
|
1973
|
-
103
|
|
1974
|
-
]
|
|
1125
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
1975
1126
|
}
|
|
1976
1127
|
]
|
|
1977
1128
|
}
|
|
@@ -1986,22 +1137,7 @@
|
|
|
1986
1137
|
"seeds": [
|
|
1987
1138
|
{
|
|
1988
1139
|
"kind": "const",
|
|
1989
|
-
"value": [
|
|
1990
|
-
98,
|
|
1991
|
-
111,
|
|
1992
|
-
114,
|
|
1993
|
-
114,
|
|
1994
|
-
111,
|
|
1995
|
-
119,
|
|
1996
|
-
101,
|
|
1997
|
-
114,
|
|
1998
|
-
95,
|
|
1999
|
-
115,
|
|
2000
|
-
116,
|
|
2001
|
-
97,
|
|
2002
|
-
116,
|
|
2003
|
-
101
|
|
2004
|
-
]
|
|
1140
|
+
"value": [98, 111, 114, 114, 111, 119, 101, 114, 95, 115, 116, 97, 116, 101]
|
|
2005
1141
|
},
|
|
2006
1142
|
{
|
|
2007
1143
|
"kind": "account",
|
|
@@ -2022,38 +1158,8 @@
|
|
|
2022
1158
|
{
|
|
2023
1159
|
"kind": "const",
|
|
2024
1160
|
"value": [
|
|
2025
|
-
6,
|
|
2026
|
-
|
|
2027
|
-
246,
|
|
2028
|
-
225,
|
|
2029
|
-
215,
|
|
2030
|
-
101,
|
|
2031
|
-
161,
|
|
2032
|
-
147,
|
|
2033
|
-
217,
|
|
2034
|
-
203,
|
|
2035
|
-
225,
|
|
2036
|
-
70,
|
|
2037
|
-
206,
|
|
2038
|
-
235,
|
|
2039
|
-
121,
|
|
2040
|
-
172,
|
|
2041
|
-
28,
|
|
2042
|
-
180,
|
|
2043
|
-
133,
|
|
2044
|
-
237,
|
|
2045
|
-
95,
|
|
2046
|
-
91,
|
|
2047
|
-
55,
|
|
2048
|
-
145,
|
|
2049
|
-
58,
|
|
2050
|
-
140,
|
|
2051
|
-
245,
|
|
2052
|
-
133,
|
|
2053
|
-
126,
|
|
2054
|
-
255,
|
|
2055
|
-
0,
|
|
2056
|
-
169
|
|
1161
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
1162
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
2057
1163
|
]
|
|
2058
1164
|
},
|
|
2059
1165
|
{
|
|
@@ -2064,38 +1170,8 @@
|
|
|
2064
1170
|
"program": {
|
|
2065
1171
|
"kind": "const",
|
|
2066
1172
|
"value": [
|
|
2067
|
-
140,
|
|
2068
|
-
|
|
2069
|
-
37,
|
|
2070
|
-
143,
|
|
2071
|
-
78,
|
|
2072
|
-
36,
|
|
2073
|
-
137,
|
|
2074
|
-
241,
|
|
2075
|
-
187,
|
|
2076
|
-
61,
|
|
2077
|
-
16,
|
|
2078
|
-
41,
|
|
2079
|
-
20,
|
|
2080
|
-
142,
|
|
2081
|
-
13,
|
|
2082
|
-
131,
|
|
2083
|
-
11,
|
|
2084
|
-
90,
|
|
2085
|
-
19,
|
|
2086
|
-
153,
|
|
2087
|
-
218,
|
|
2088
|
-
255,
|
|
2089
|
-
16,
|
|
2090
|
-
132,
|
|
2091
|
-
4,
|
|
2092
|
-
142,
|
|
2093
|
-
123,
|
|
2094
|
-
216,
|
|
2095
|
-
219,
|
|
2096
|
-
233,
|
|
2097
|
-
248,
|
|
2098
|
-
89
|
|
1173
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
1174
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
2099
1175
|
]
|
|
2100
1176
|
}
|
|
2101
1177
|
}
|
|
@@ -2124,16 +1200,7 @@
|
|
|
2124
1200
|
"# Arguments",
|
|
2125
1201
|
"- `recent_slot`: The slot used to derive the lookup table address"
|
|
2126
1202
|
],
|
|
2127
|
-
"discriminator": [
|
|
2128
|
-
201,
|
|
2129
|
-
207,
|
|
2130
|
-
243,
|
|
2131
|
-
114,
|
|
2132
|
-
75,
|
|
2133
|
-
111,
|
|
2134
|
-
47,
|
|
2135
|
-
189
|
|
2136
|
-
],
|
|
1203
|
+
"discriminator": [201, 207, 243, 114, 75, 111, 47, 189],
|
|
2137
1204
|
"accounts": [
|
|
2138
1205
|
{
|
|
2139
1206
|
"name": "authority",
|
|
@@ -2147,14 +1214,7 @@
|
|
|
2147
1214
|
"seeds": [
|
|
2148
1215
|
{
|
|
2149
1216
|
"kind": "const",
|
|
2150
|
-
"value": [
|
|
2151
|
-
99,
|
|
2152
|
-
111,
|
|
2153
|
-
110,
|
|
2154
|
-
102,
|
|
2155
|
-
105,
|
|
2156
|
-
103
|
|
2157
|
-
]
|
|
1217
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
2158
1218
|
}
|
|
2159
1219
|
]
|
|
2160
1220
|
}
|
|
@@ -2214,19 +1274,8 @@
|
|
|
2214
1274
|
},
|
|
2215
1275
|
{
|
|
2216
1276
|
"name": "create_contract",
|
|
2217
|
-
"docs": [
|
|
2218
|
-
|
|
2219
|
-
],
|
|
2220
|
-
"discriminator": [
|
|
2221
|
-
244,
|
|
2222
|
-
48,
|
|
2223
|
-
244,
|
|
2224
|
-
178,
|
|
2225
|
-
216,
|
|
2226
|
-
88,
|
|
2227
|
-
122,
|
|
2228
|
-
52
|
|
2229
|
-
],
|
|
1277
|
+
"docs": ["Create a new rental contract for a fleet with specified terms."],
|
|
1278
|
+
"discriminator": [244, 48, 244, 178, 216, 88, 122, 52],
|
|
2230
1279
|
"accounts": [
|
|
2231
1280
|
{
|
|
2232
1281
|
"name": "owner",
|
|
@@ -2239,14 +1288,7 @@
|
|
|
2239
1288
|
"seeds": [
|
|
2240
1289
|
{
|
|
2241
1290
|
"kind": "const",
|
|
2242
|
-
"value": [
|
|
2243
|
-
99,
|
|
2244
|
-
111,
|
|
2245
|
-
110,
|
|
2246
|
-
102,
|
|
2247
|
-
105,
|
|
2248
|
-
103
|
|
2249
|
-
]
|
|
1291
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
2250
1292
|
}
|
|
2251
1293
|
]
|
|
2252
1294
|
}
|
|
@@ -2256,9 +1298,7 @@
|
|
|
2256
1298
|
},
|
|
2257
1299
|
{
|
|
2258
1300
|
"name": "fleet",
|
|
2259
|
-
"docs": [
|
|
2260
|
-
"Fleet to create rental contract for"
|
|
2261
|
-
],
|
|
1301
|
+
"docs": ["Fleet to create rental contract for"],
|
|
2262
1302
|
"writable": true
|
|
2263
1303
|
},
|
|
2264
1304
|
{
|
|
@@ -2274,23 +1314,7 @@
|
|
|
2274
1314
|
"seeds": [
|
|
2275
1315
|
{
|
|
2276
1316
|
"kind": "const",
|
|
2277
|
-
"value": [
|
|
2278
|
-
114,
|
|
2279
|
-
101,
|
|
2280
|
-
110,
|
|
2281
|
-
116,
|
|
2282
|
-
97,
|
|
2283
|
-
108,
|
|
2284
|
-
95,
|
|
2285
|
-
99,
|
|
2286
|
-
111,
|
|
2287
|
-
110,
|
|
2288
|
-
116,
|
|
2289
|
-
114,
|
|
2290
|
-
97,
|
|
2291
|
-
99,
|
|
2292
|
-
116
|
|
2293
|
-
]
|
|
1317
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
2294
1318
|
},
|
|
2295
1319
|
{
|
|
2296
1320
|
"kind": "account",
|
|
@@ -2306,20 +1330,7 @@
|
|
|
2306
1330
|
"seeds": [
|
|
2307
1331
|
{
|
|
2308
1332
|
"kind": "const",
|
|
2309
|
-
"value": [
|
|
2310
|
-
114,
|
|
2311
|
-
101,
|
|
2312
|
-
110,
|
|
2313
|
-
116,
|
|
2314
|
-
97,
|
|
2315
|
-
108,
|
|
2316
|
-
95,
|
|
2317
|
-
115,
|
|
2318
|
-
116,
|
|
2319
|
-
97,
|
|
2320
|
-
116,
|
|
2321
|
-
101
|
|
2322
|
-
]
|
|
1333
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
2323
1334
|
},
|
|
2324
1335
|
{
|
|
2325
1336
|
"kind": "account",
|
|
@@ -2327,14 +1338,7 @@
|
|
|
2327
1338
|
},
|
|
2328
1339
|
{
|
|
2329
1340
|
"kind": "const",
|
|
2330
|
-
"value": [
|
|
2331
|
-
97,
|
|
2332
|
-
99,
|
|
2333
|
-
116,
|
|
2334
|
-
105,
|
|
2335
|
-
118,
|
|
2336
|
-
101
|
|
2337
|
-
]
|
|
1341
|
+
"value": [97, 99, 116, 105, 118, 101]
|
|
2338
1342
|
}
|
|
2339
1343
|
]
|
|
2340
1344
|
}
|
|
@@ -2346,20 +1350,7 @@
|
|
|
2346
1350
|
"seeds": [
|
|
2347
1351
|
{
|
|
2348
1352
|
"kind": "const",
|
|
2349
|
-
"value": [
|
|
2350
|
-
114,
|
|
2351
|
-
101,
|
|
2352
|
-
110,
|
|
2353
|
-
116,
|
|
2354
|
-
97,
|
|
2355
|
-
108,
|
|
2356
|
-
95,
|
|
2357
|
-
115,
|
|
2358
|
-
116,
|
|
2359
|
-
97,
|
|
2360
|
-
116,
|
|
2361
|
-
101
|
|
2362
|
-
]
|
|
1353
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
2363
1354
|
},
|
|
2364
1355
|
{
|
|
2365
1356
|
"kind": "account",
|
|
@@ -2367,14 +1358,7 @@
|
|
|
2367
1358
|
},
|
|
2368
1359
|
{
|
|
2369
1360
|
"kind": "const",
|
|
2370
|
-
"value": [
|
|
2371
|
-
113,
|
|
2372
|
-
117,
|
|
2373
|
-
101,
|
|
2374
|
-
117,
|
|
2375
|
-
101,
|
|
2376
|
-
100
|
|
2377
|
-
]
|
|
1361
|
+
"value": [113, 117, 101, 117, 101, 100]
|
|
2378
1362
|
}
|
|
2379
1363
|
]
|
|
2380
1364
|
}
|
|
@@ -2391,38 +1375,8 @@
|
|
|
2391
1375
|
{
|
|
2392
1376
|
"kind": "const",
|
|
2393
1377
|
"value": [
|
|
2394
|
-
6,
|
|
2395
|
-
|
|
2396
|
-
246,
|
|
2397
|
-
225,
|
|
2398
|
-
215,
|
|
2399
|
-
101,
|
|
2400
|
-
161,
|
|
2401
|
-
147,
|
|
2402
|
-
217,
|
|
2403
|
-
203,
|
|
2404
|
-
225,
|
|
2405
|
-
70,
|
|
2406
|
-
206,
|
|
2407
|
-
235,
|
|
2408
|
-
121,
|
|
2409
|
-
172,
|
|
2410
|
-
28,
|
|
2411
|
-
180,
|
|
2412
|
-
133,
|
|
2413
|
-
237,
|
|
2414
|
-
95,
|
|
2415
|
-
91,
|
|
2416
|
-
55,
|
|
2417
|
-
145,
|
|
2418
|
-
58,
|
|
2419
|
-
140,
|
|
2420
|
-
245,
|
|
2421
|
-
133,
|
|
2422
|
-
126,
|
|
2423
|
-
255,
|
|
2424
|
-
0,
|
|
2425
|
-
169
|
|
1378
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
1379
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
2426
1380
|
]
|
|
2427
1381
|
},
|
|
2428
1382
|
{
|
|
@@ -2433,38 +1387,8 @@
|
|
|
2433
1387
|
"program": {
|
|
2434
1388
|
"kind": "const",
|
|
2435
1389
|
"value": [
|
|
2436
|
-
140,
|
|
2437
|
-
|
|
2438
|
-
37,
|
|
2439
|
-
143,
|
|
2440
|
-
78,
|
|
2441
|
-
36,
|
|
2442
|
-
137,
|
|
2443
|
-
241,
|
|
2444
|
-
187,
|
|
2445
|
-
61,
|
|
2446
|
-
16,
|
|
2447
|
-
41,
|
|
2448
|
-
20,
|
|
2449
|
-
142,
|
|
2450
|
-
13,
|
|
2451
|
-
131,
|
|
2452
|
-
11,
|
|
2453
|
-
90,
|
|
2454
|
-
19,
|
|
2455
|
-
153,
|
|
2456
|
-
218,
|
|
2457
|
-
255,
|
|
2458
|
-
16,
|
|
2459
|
-
132,
|
|
2460
|
-
4,
|
|
2461
|
-
142,
|
|
2462
|
-
123,
|
|
2463
|
-
216,
|
|
2464
|
-
219,
|
|
2465
|
-
233,
|
|
2466
|
-
248,
|
|
2467
|
-
89
|
|
1390
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
1391
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
2468
1392
|
]
|
|
2469
1393
|
}
|
|
2470
1394
|
}
|
|
@@ -2476,22 +1400,7 @@
|
|
|
2476
1400
|
{
|
|
2477
1401
|
"kind": "const",
|
|
2478
1402
|
"value": [
|
|
2479
|
-
114,
|
|
2480
|
-
101,
|
|
2481
|
-
110,
|
|
2482
|
-
116,
|
|
2483
|
-
97,
|
|
2484
|
-
108,
|
|
2485
|
-
95,
|
|
2486
|
-
97,
|
|
2487
|
-
117,
|
|
2488
|
-
116,
|
|
2489
|
-
104,
|
|
2490
|
-
111,
|
|
2491
|
-
114,
|
|
2492
|
-
105,
|
|
2493
|
-
116,
|
|
2494
|
-
121
|
|
1403
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
2495
1404
|
]
|
|
2496
1405
|
}
|
|
2497
1406
|
]
|
|
@@ -2551,22 +1460,11 @@
|
|
|
2551
1460
|
"Creates thread (fiber 0: controller) + fiber 1 (rental_close).",
|
|
2552
1461
|
"Activation is handled inline by rental_close. Owner-managed."
|
|
2553
1462
|
],
|
|
2554
|
-
"discriminator": [
|
|
2555
|
-
233,
|
|
2556
|
-
57,
|
|
2557
|
-
214,
|
|
2558
|
-
37,
|
|
2559
|
-
246,
|
|
2560
|
-
233,
|
|
2561
|
-
143,
|
|
2562
|
-
139
|
|
2563
|
-
],
|
|
1463
|
+
"discriminator": [233, 57, 214, 37, 246, 233, 143, 139],
|
|
2564
1464
|
"accounts": [
|
|
2565
1465
|
{
|
|
2566
1466
|
"name": "payer",
|
|
2567
|
-
"docs": [
|
|
2568
|
-
"Payer must be contract owner"
|
|
2569
|
-
],
|
|
1467
|
+
"docs": ["Payer must be contract owner"],
|
|
2570
1468
|
"writable": true,
|
|
2571
1469
|
"signer": true
|
|
2572
1470
|
},
|
|
@@ -2576,14 +1474,7 @@
|
|
|
2576
1474
|
"seeds": [
|
|
2577
1475
|
{
|
|
2578
1476
|
"kind": "const",
|
|
2579
|
-
"value": [
|
|
2580
|
-
99,
|
|
2581
|
-
111,
|
|
2582
|
-
110,
|
|
2583
|
-
102,
|
|
2584
|
-
105,
|
|
2585
|
-
103
|
|
2586
|
-
]
|
|
1477
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
2587
1478
|
}
|
|
2588
1479
|
]
|
|
2589
1480
|
}
|
|
@@ -2598,23 +1489,7 @@
|
|
|
2598
1489
|
"seeds": [
|
|
2599
1490
|
{
|
|
2600
1491
|
"kind": "const",
|
|
2601
|
-
"value": [
|
|
2602
|
-
114,
|
|
2603
|
-
101,
|
|
2604
|
-
110,
|
|
2605
|
-
116,
|
|
2606
|
-
97,
|
|
2607
|
-
108,
|
|
2608
|
-
95,
|
|
2609
|
-
99,
|
|
2610
|
-
111,
|
|
2611
|
-
110,
|
|
2612
|
-
116,
|
|
2613
|
-
114,
|
|
2614
|
-
97,
|
|
2615
|
-
99,
|
|
2616
|
-
116
|
|
2617
|
-
]
|
|
1492
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
2618
1493
|
},
|
|
2619
1494
|
{
|
|
2620
1495
|
"kind": "account",
|
|
@@ -2632,22 +1507,7 @@
|
|
|
2632
1507
|
{
|
|
2633
1508
|
"kind": "const",
|
|
2634
1509
|
"value": [
|
|
2635
|
-
114,
|
|
2636
|
-
101,
|
|
2637
|
-
110,
|
|
2638
|
-
116,
|
|
2639
|
-
97,
|
|
2640
|
-
108,
|
|
2641
|
-
95,
|
|
2642
|
-
97,
|
|
2643
|
-
117,
|
|
2644
|
-
116,
|
|
2645
|
-
104,
|
|
2646
|
-
111,
|
|
2647
|
-
114,
|
|
2648
|
-
105,
|
|
2649
|
-
116,
|
|
2650
|
-
121
|
|
1510
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
2651
1511
|
]
|
|
2652
1512
|
}
|
|
2653
1513
|
]
|
|
@@ -2670,9 +1530,7 @@
|
|
|
2670
1530
|
},
|
|
2671
1531
|
{
|
|
2672
1532
|
"name": "contract_token_account",
|
|
2673
|
-
"docs": [
|
|
2674
|
-
"Contract's escrow token account (validated here, passed to contract_process)"
|
|
2675
|
-
],
|
|
1533
|
+
"docs": ["Contract's escrow token account (validated here, passed to contract_process)"],
|
|
2676
1534
|
"writable": true
|
|
2677
1535
|
},
|
|
2678
1536
|
{
|
|
@@ -2690,38 +1548,8 @@
|
|
|
2690
1548
|
{
|
|
2691
1549
|
"kind": "const",
|
|
2692
1550
|
"value": [
|
|
2693
|
-
6,
|
|
2694
|
-
|
|
2695
|
-
246,
|
|
2696
|
-
225,
|
|
2697
|
-
215,
|
|
2698
|
-
101,
|
|
2699
|
-
161,
|
|
2700
|
-
147,
|
|
2701
|
-
217,
|
|
2702
|
-
203,
|
|
2703
|
-
225,
|
|
2704
|
-
70,
|
|
2705
|
-
206,
|
|
2706
|
-
235,
|
|
2707
|
-
121,
|
|
2708
|
-
172,
|
|
2709
|
-
28,
|
|
2710
|
-
180,
|
|
2711
|
-
133,
|
|
2712
|
-
237,
|
|
2713
|
-
95,
|
|
2714
|
-
91,
|
|
2715
|
-
55,
|
|
2716
|
-
145,
|
|
2717
|
-
58,
|
|
2718
|
-
140,
|
|
2719
|
-
245,
|
|
2720
|
-
133,
|
|
2721
|
-
126,
|
|
2722
|
-
255,
|
|
2723
|
-
0,
|
|
2724
|
-
169
|
|
1551
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
1552
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
2725
1553
|
]
|
|
2726
1554
|
},
|
|
2727
1555
|
{
|
|
@@ -2732,38 +1560,8 @@
|
|
|
2732
1560
|
"program": {
|
|
2733
1561
|
"kind": "const",
|
|
2734
1562
|
"value": [
|
|
2735
|
-
140,
|
|
2736
|
-
|
|
2737
|
-
37,
|
|
2738
|
-
143,
|
|
2739
|
-
78,
|
|
2740
|
-
36,
|
|
2741
|
-
137,
|
|
2742
|
-
241,
|
|
2743
|
-
187,
|
|
2744
|
-
61,
|
|
2745
|
-
16,
|
|
2746
|
-
41,
|
|
2747
|
-
20,
|
|
2748
|
-
142,
|
|
2749
|
-
13,
|
|
2750
|
-
131,
|
|
2751
|
-
11,
|
|
2752
|
-
90,
|
|
2753
|
-
19,
|
|
2754
|
-
153,
|
|
2755
|
-
218,
|
|
2756
|
-
255,
|
|
2757
|
-
16,
|
|
2758
|
-
132,
|
|
2759
|
-
4,
|
|
2760
|
-
142,
|
|
2761
|
-
123,
|
|
2762
|
-
216,
|
|
2763
|
-
219,
|
|
2764
|
-
233,
|
|
2765
|
-
248,
|
|
2766
|
-
89
|
|
1563
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
1564
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
2767
1565
|
]
|
|
2768
1566
|
}
|
|
2769
1567
|
}
|
|
@@ -2774,20 +1572,7 @@
|
|
|
2774
1572
|
"seeds": [
|
|
2775
1573
|
{
|
|
2776
1574
|
"kind": "const",
|
|
2777
|
-
"value": [
|
|
2778
|
-
114,
|
|
2779
|
-
101,
|
|
2780
|
-
110,
|
|
2781
|
-
116,
|
|
2782
|
-
97,
|
|
2783
|
-
108,
|
|
2784
|
-
95,
|
|
2785
|
-
115,
|
|
2786
|
-
116,
|
|
2787
|
-
97,
|
|
2788
|
-
116,
|
|
2789
|
-
101
|
|
2790
|
-
]
|
|
1575
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
2791
1576
|
},
|
|
2792
1577
|
{
|
|
2793
1578
|
"kind": "account",
|
|
@@ -2795,14 +1580,7 @@
|
|
|
2795
1580
|
},
|
|
2796
1581
|
{
|
|
2797
1582
|
"kind": "const",
|
|
2798
|
-
"value": [
|
|
2799
|
-
97,
|
|
2800
|
-
99,
|
|
2801
|
-
116,
|
|
2802
|
-
105,
|
|
2803
|
-
118,
|
|
2804
|
-
101
|
|
2805
|
-
]
|
|
1583
|
+
"value": [97, 99, 116, 105, 118, 101]
|
|
2806
1584
|
}
|
|
2807
1585
|
]
|
|
2808
1586
|
}
|
|
@@ -2813,20 +1591,7 @@
|
|
|
2813
1591
|
"seeds": [
|
|
2814
1592
|
{
|
|
2815
1593
|
"kind": "const",
|
|
2816
|
-
"value": [
|
|
2817
|
-
114,
|
|
2818
|
-
101,
|
|
2819
|
-
110,
|
|
2820
|
-
116,
|
|
2821
|
-
97,
|
|
2822
|
-
108,
|
|
2823
|
-
95,
|
|
2824
|
-
115,
|
|
2825
|
-
116,
|
|
2826
|
-
97,
|
|
2827
|
-
116,
|
|
2828
|
-
101
|
|
2829
|
-
]
|
|
1594
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
2830
1595
|
},
|
|
2831
1596
|
{
|
|
2832
1597
|
"kind": "account",
|
|
@@ -2834,14 +1599,7 @@
|
|
|
2834
1599
|
},
|
|
2835
1600
|
{
|
|
2836
1601
|
"kind": "const",
|
|
2837
|
-
"value": [
|
|
2838
|
-
113,
|
|
2839
|
-
117,
|
|
2840
|
-
101,
|
|
2841
|
-
117,
|
|
2842
|
-
101,
|
|
2843
|
-
100
|
|
2844
|
-
]
|
|
1602
|
+
"value": [113, 117, 101, 117, 101, 100]
|
|
2845
1603
|
}
|
|
2846
1604
|
]
|
|
2847
1605
|
}
|
|
@@ -2887,16 +1645,7 @@
|
|
|
2887
1645
|
"Delete borrower state (admin-only for schema migrations).",
|
|
2888
1646
|
"Uses UncheckedAccount to bypass deserialization for old-format accounts."
|
|
2889
1647
|
],
|
|
2890
|
-
"discriminator": [
|
|
2891
|
-
89,
|
|
2892
|
-
147,
|
|
2893
|
-
185,
|
|
2894
|
-
127,
|
|
2895
|
-
231,
|
|
2896
|
-
56,
|
|
2897
|
-
190,
|
|
2898
|
-
45
|
|
2899
|
-
],
|
|
1648
|
+
"discriminator": [89, 147, 185, 127, 231, 56, 190, 45],
|
|
2900
1649
|
"accounts": [
|
|
2901
1650
|
{
|
|
2902
1651
|
"name": "admin",
|
|
@@ -2905,21 +1654,12 @@
|
|
|
2905
1654
|
},
|
|
2906
1655
|
{
|
|
2907
1656
|
"name": "config",
|
|
2908
|
-
"docs": [
|
|
2909
|
-
"Bypassed when admin is AUTHORIZED_INITIALIZER (break-glass)."
|
|
2910
|
-
],
|
|
1657
|
+
"docs": ["Bypassed when admin is AUTHORIZED_INITIALIZER (break-glass)."],
|
|
2911
1658
|
"pda": {
|
|
2912
1659
|
"seeds": [
|
|
2913
1660
|
{
|
|
2914
1661
|
"kind": "const",
|
|
2915
|
-
"value": [
|
|
2916
|
-
99,
|
|
2917
|
-
111,
|
|
2918
|
-
110,
|
|
2919
|
-
102,
|
|
2920
|
-
105,
|
|
2921
|
-
103
|
|
2922
|
-
]
|
|
1662
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
2923
1663
|
}
|
|
2924
1664
|
]
|
|
2925
1665
|
}
|
|
@@ -2942,16 +1682,7 @@
|
|
|
2942
1682
|
"WARNING: Destructive operation - prevents all program operations until re-initialized.",
|
|
2943
1683
|
"Use for devnet/testnet when ConfigState schema changes."
|
|
2944
1684
|
],
|
|
2945
|
-
"discriminator": [
|
|
2946
|
-
219,
|
|
2947
|
-
237,
|
|
2948
|
-
110,
|
|
2949
|
-
222,
|
|
2950
|
-
219,
|
|
2951
|
-
239,
|
|
2952
|
-
70,
|
|
2953
|
-
237
|
|
2954
|
-
],
|
|
1685
|
+
"discriminator": [219, 237, 110, 222, 219, 239, 70, 237],
|
|
2955
1686
|
"accounts": [
|
|
2956
1687
|
{
|
|
2957
1688
|
"name": "authority",
|
|
@@ -2966,14 +1697,7 @@
|
|
|
2966
1697
|
"seeds": [
|
|
2967
1698
|
{
|
|
2968
1699
|
"kind": "const",
|
|
2969
|
-
"value": [
|
|
2970
|
-
99,
|
|
2971
|
-
111,
|
|
2972
|
-
110,
|
|
2973
|
-
102,
|
|
2974
|
-
105,
|
|
2975
|
-
103
|
|
2976
|
-
]
|
|
1700
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
2977
1701
|
}
|
|
2978
1702
|
]
|
|
2979
1703
|
}
|
|
@@ -3010,19 +1734,8 @@
|
|
|
3010
1734
|
},
|
|
3011
1735
|
{
|
|
3012
1736
|
"name": "delete_contract",
|
|
3013
|
-
"docs": [
|
|
3014
|
-
|
|
3015
|
-
],
|
|
3016
|
-
"discriminator": [
|
|
3017
|
-
189,
|
|
3018
|
-
115,
|
|
3019
|
-
12,
|
|
3020
|
-
22,
|
|
3021
|
-
241,
|
|
3022
|
-
49,
|
|
3023
|
-
35,
|
|
3024
|
-
6
|
|
3025
|
-
],
|
|
1737
|
+
"docs": ["Delete contract state (dev-only for schema migrations)"],
|
|
1738
|
+
"discriminator": [189, 115, 12, 22, 241, 49, 35, 6],
|
|
3026
1739
|
"accounts": [
|
|
3027
1740
|
{
|
|
3028
1741
|
"name": "admin",
|
|
@@ -3031,21 +1744,12 @@
|
|
|
3031
1744
|
},
|
|
3032
1745
|
{
|
|
3033
1746
|
"name": "config",
|
|
3034
|
-
"docs": [
|
|
3035
|
-
"Bypassed when admin is AUTHORIZED_INITIALIZER (break-glass)."
|
|
3036
|
-
],
|
|
1747
|
+
"docs": ["Bypassed when admin is AUTHORIZED_INITIALIZER (break-glass)."],
|
|
3037
1748
|
"pda": {
|
|
3038
1749
|
"seeds": [
|
|
3039
1750
|
{
|
|
3040
1751
|
"kind": "const",
|
|
3041
|
-
"value": [
|
|
3042
|
-
99,
|
|
3043
|
-
111,
|
|
3044
|
-
110,
|
|
3045
|
-
102,
|
|
3046
|
-
105,
|
|
3047
|
-
103
|
|
3048
|
-
]
|
|
1752
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
3049
1753
|
}
|
|
3050
1754
|
]
|
|
3051
1755
|
}
|
|
@@ -3067,16 +1771,7 @@
|
|
|
3067
1771
|
"Admin-only thread deletion for schema migrations / redeployments.",
|
|
3068
1772
|
"Like close_contract_thread but uses admin auth and skips contract deserialization."
|
|
3069
1773
|
],
|
|
3070
|
-
"discriminator": [
|
|
3071
|
-
113,
|
|
3072
|
-
179,
|
|
3073
|
-
247,
|
|
3074
|
-
242,
|
|
3075
|
-
60,
|
|
3076
|
-
125,
|
|
3077
|
-
240,
|
|
3078
|
-
68
|
|
3079
|
-
],
|
|
1774
|
+
"discriminator": [113, 179, 247, 242, 60, 125, 240, 68],
|
|
3080
1775
|
"accounts": [
|
|
3081
1776
|
{
|
|
3082
1777
|
"name": "admin",
|
|
@@ -3085,21 +1780,12 @@
|
|
|
3085
1780
|
},
|
|
3086
1781
|
{
|
|
3087
1782
|
"name": "config",
|
|
3088
|
-
"docs": [
|
|
3089
|
-
"Bypassed when admin is AUTHORIZED_INITIALIZER (break-glass)."
|
|
3090
|
-
],
|
|
1783
|
+
"docs": ["Bypassed when admin is AUTHORIZED_INITIALIZER (break-glass)."],
|
|
3091
1784
|
"pda": {
|
|
3092
1785
|
"seeds": [
|
|
3093
1786
|
{
|
|
3094
1787
|
"kind": "const",
|
|
3095
|
-
"value": [
|
|
3096
|
-
99,
|
|
3097
|
-
111,
|
|
3098
|
-
110,
|
|
3099
|
-
102,
|
|
3100
|
-
105,
|
|
3101
|
-
103
|
|
3102
|
-
]
|
|
1788
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
3103
1789
|
}
|
|
3104
1790
|
]
|
|
3105
1791
|
}
|
|
@@ -3111,22 +1797,7 @@
|
|
|
3111
1797
|
{
|
|
3112
1798
|
"kind": "const",
|
|
3113
1799
|
"value": [
|
|
3114
|
-
114,
|
|
3115
|
-
101,
|
|
3116
|
-
110,
|
|
3117
|
-
116,
|
|
3118
|
-
97,
|
|
3119
|
-
108,
|
|
3120
|
-
95,
|
|
3121
|
-
97,
|
|
3122
|
-
117,
|
|
3123
|
-
116,
|
|
3124
|
-
104,
|
|
3125
|
-
111,
|
|
3126
|
-
114,
|
|
3127
|
-
105,
|
|
3128
|
-
116,
|
|
3129
|
-
121
|
|
1800
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
3130
1801
|
]
|
|
3131
1802
|
}
|
|
3132
1803
|
]
|
|
@@ -3157,16 +1828,7 @@
|
|
|
3157
1828
|
"Delete rental state (admin-only for schema migrations).",
|
|
3158
1829
|
"After deletion, use release_rental to clean up thread + SAGE fleet."
|
|
3159
1830
|
],
|
|
3160
|
-
"discriminator": [
|
|
3161
|
-
252,
|
|
3162
|
-
24,
|
|
3163
|
-
115,
|
|
3164
|
-
220,
|
|
3165
|
-
135,
|
|
3166
|
-
174,
|
|
3167
|
-
69,
|
|
3168
|
-
172
|
|
3169
|
-
],
|
|
1831
|
+
"discriminator": [252, 24, 115, 220, 135, 174, 69, 172],
|
|
3170
1832
|
"accounts": [
|
|
3171
1833
|
{
|
|
3172
1834
|
"name": "admin",
|
|
@@ -3175,30 +1837,19 @@
|
|
|
3175
1837
|
},
|
|
3176
1838
|
{
|
|
3177
1839
|
"name": "config",
|
|
3178
|
-
"docs": [
|
|
3179
|
-
"Bypassed when admin is AUTHORIZED_INITIALIZER (break-glass)."
|
|
3180
|
-
],
|
|
1840
|
+
"docs": ["Bypassed when admin is AUTHORIZED_INITIALIZER (break-glass)."],
|
|
3181
1841
|
"pda": {
|
|
3182
1842
|
"seeds": [
|
|
3183
1843
|
{
|
|
3184
1844
|
"kind": "const",
|
|
3185
|
-
"value": [
|
|
3186
|
-
99,
|
|
3187
|
-
111,
|
|
3188
|
-
110,
|
|
3189
|
-
102,
|
|
3190
|
-
105,
|
|
3191
|
-
103
|
|
3192
|
-
]
|
|
1845
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
3193
1846
|
}
|
|
3194
1847
|
]
|
|
3195
1848
|
}
|
|
3196
1849
|
},
|
|
3197
1850
|
{
|
|
3198
1851
|
"name": "borrower",
|
|
3199
|
-
"docs": [
|
|
3200
|
-
"If borrower is system_program::ID (empty slot), lamports go to admin instead."
|
|
3201
|
-
],
|
|
1852
|
+
"docs": ["If borrower is system_program::ID (empty slot), lamports go to admin instead."],
|
|
3202
1853
|
"writable": true
|
|
3203
1854
|
},
|
|
3204
1855
|
{
|
|
@@ -3214,16 +1865,7 @@
|
|
|
3214
1865
|
"Invalidate a fleet's rental status in SAGE when contract doesn't exist.",
|
|
3215
1866
|
"Use when fleet is stuck but borrower is unknown and contract was never created."
|
|
3216
1867
|
],
|
|
3217
|
-
"discriminator": [
|
|
3218
|
-
180,
|
|
3219
|
-
183,
|
|
3220
|
-
106,
|
|
3221
|
-
153,
|
|
3222
|
-
255,
|
|
3223
|
-
8,
|
|
3224
|
-
232,
|
|
3225
|
-
178
|
|
3226
|
-
],
|
|
1868
|
+
"discriminator": [180, 183, 106, 153, 255, 8, 232, 178],
|
|
3227
1869
|
"accounts": [
|
|
3228
1870
|
{
|
|
3229
1871
|
"name": "signer",
|
|
@@ -3251,30 +1893,12 @@
|
|
|
3251
1893
|
},
|
|
3252
1894
|
{
|
|
3253
1895
|
"name": "contract",
|
|
3254
|
-
"docs": [
|
|
3255
|
-
"If contract exists, use rental_release instead"
|
|
3256
|
-
],
|
|
1896
|
+
"docs": ["If contract exists, use rental_release instead"],
|
|
3257
1897
|
"pda": {
|
|
3258
1898
|
"seeds": [
|
|
3259
1899
|
{
|
|
3260
1900
|
"kind": "const",
|
|
3261
|
-
"value": [
|
|
3262
|
-
114,
|
|
3263
|
-
101,
|
|
3264
|
-
110,
|
|
3265
|
-
116,
|
|
3266
|
-
97,
|
|
3267
|
-
108,
|
|
3268
|
-
95,
|
|
3269
|
-
99,
|
|
3270
|
-
111,
|
|
3271
|
-
110,
|
|
3272
|
-
116,
|
|
3273
|
-
114,
|
|
3274
|
-
97,
|
|
3275
|
-
99,
|
|
3276
|
-
116
|
|
3277
|
-
]
|
|
1901
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
3278
1902
|
},
|
|
3279
1903
|
{
|
|
3280
1904
|
"kind": "account",
|
|
@@ -3290,22 +1914,7 @@
|
|
|
3290
1914
|
{
|
|
3291
1915
|
"kind": "const",
|
|
3292
1916
|
"value": [
|
|
3293
|
-
114,
|
|
3294
|
-
101,
|
|
3295
|
-
110,
|
|
3296
|
-
116,
|
|
3297
|
-
97,
|
|
3298
|
-
108,
|
|
3299
|
-
95,
|
|
3300
|
-
97,
|
|
3301
|
-
117,
|
|
3302
|
-
116,
|
|
3303
|
-
104,
|
|
3304
|
-
111,
|
|
3305
|
-
114,
|
|
3306
|
-
105,
|
|
3307
|
-
116,
|
|
3308
|
-
121
|
|
1917
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
3309
1918
|
]
|
|
3310
1919
|
}
|
|
3311
1920
|
]
|
|
@@ -3323,16 +1932,7 @@
|
|
|
3323
1932
|
"Controller fiber (fiber 0) — checks state, settles escrow, dispatches.",
|
|
3324
1933
|
"Called by antegen thread executor automatically."
|
|
3325
1934
|
],
|
|
3326
|
-
"discriminator": [
|
|
3327
|
-
203,
|
|
3328
|
-
109,
|
|
3329
|
-
39,
|
|
3330
|
-
44,
|
|
3331
|
-
150,
|
|
3332
|
-
50,
|
|
3333
|
-
210,
|
|
3334
|
-
78
|
|
3335
|
-
],
|
|
1935
|
+
"discriminator": [203, 109, 39, 44, 150, 50, 210, 78],
|
|
3336
1936
|
"accounts": [
|
|
3337
1937
|
{
|
|
3338
1938
|
"name": "contract_thread",
|
|
@@ -3345,14 +1945,7 @@
|
|
|
3345
1945
|
"seeds": [
|
|
3346
1946
|
{
|
|
3347
1947
|
"kind": "const",
|
|
3348
|
-
"value": [
|
|
3349
|
-
99,
|
|
3350
|
-
111,
|
|
3351
|
-
110,
|
|
3352
|
-
102,
|
|
3353
|
-
105,
|
|
3354
|
-
103
|
|
3355
|
-
]
|
|
1948
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
3356
1949
|
}
|
|
3357
1950
|
]
|
|
3358
1951
|
}
|
|
@@ -3364,23 +1957,7 @@
|
|
|
3364
1957
|
"seeds": [
|
|
3365
1958
|
{
|
|
3366
1959
|
"kind": "const",
|
|
3367
|
-
"value": [
|
|
3368
|
-
114,
|
|
3369
|
-
101,
|
|
3370
|
-
110,
|
|
3371
|
-
116,
|
|
3372
|
-
97,
|
|
3373
|
-
108,
|
|
3374
|
-
95,
|
|
3375
|
-
99,
|
|
3376
|
-
111,
|
|
3377
|
-
110,
|
|
3378
|
-
116,
|
|
3379
|
-
114,
|
|
3380
|
-
97,
|
|
3381
|
-
99,
|
|
3382
|
-
116
|
|
3383
|
-
]
|
|
1960
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
3384
1961
|
},
|
|
3385
1962
|
{
|
|
3386
1963
|
"kind": "account",
|
|
@@ -3397,20 +1974,7 @@
|
|
|
3397
1974
|
"seeds": [
|
|
3398
1975
|
{
|
|
3399
1976
|
"kind": "const",
|
|
3400
|
-
"value": [
|
|
3401
|
-
114,
|
|
3402
|
-
101,
|
|
3403
|
-
110,
|
|
3404
|
-
116,
|
|
3405
|
-
97,
|
|
3406
|
-
108,
|
|
3407
|
-
95,
|
|
3408
|
-
115,
|
|
3409
|
-
116,
|
|
3410
|
-
97,
|
|
3411
|
-
116,
|
|
3412
|
-
101
|
|
3413
|
-
]
|
|
1977
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
3414
1978
|
},
|
|
3415
1979
|
{
|
|
3416
1980
|
"kind": "account",
|
|
@@ -3418,14 +1982,7 @@
|
|
|
3418
1982
|
},
|
|
3419
1983
|
{
|
|
3420
1984
|
"kind": "const",
|
|
3421
|
-
"value": [
|
|
3422
|
-
97,
|
|
3423
|
-
99,
|
|
3424
|
-
116,
|
|
3425
|
-
105,
|
|
3426
|
-
118,
|
|
3427
|
-
101
|
|
3428
|
-
]
|
|
1985
|
+
"value": [97, 99, 116, 105, 118, 101]
|
|
3429
1986
|
}
|
|
3430
1987
|
]
|
|
3431
1988
|
}
|
|
@@ -3437,20 +1994,7 @@
|
|
|
3437
1994
|
"seeds": [
|
|
3438
1995
|
{
|
|
3439
1996
|
"kind": "const",
|
|
3440
|
-
"value": [
|
|
3441
|
-
114,
|
|
3442
|
-
101,
|
|
3443
|
-
110,
|
|
3444
|
-
116,
|
|
3445
|
-
97,
|
|
3446
|
-
108,
|
|
3447
|
-
95,
|
|
3448
|
-
115,
|
|
3449
|
-
116,
|
|
3450
|
-
97,
|
|
3451
|
-
116,
|
|
3452
|
-
101
|
|
3453
|
-
]
|
|
1997
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
3454
1998
|
},
|
|
3455
1999
|
{
|
|
3456
2000
|
"kind": "account",
|
|
@@ -3458,14 +2002,7 @@
|
|
|
3458
2002
|
},
|
|
3459
2003
|
{
|
|
3460
2004
|
"kind": "const",
|
|
3461
|
-
"value": [
|
|
3462
|
-
113,
|
|
3463
|
-
117,
|
|
3464
|
-
101,
|
|
3465
|
-
117,
|
|
3466
|
-
101,
|
|
3467
|
-
100
|
|
3468
|
-
]
|
|
2005
|
+
"value": [113, 117, 101, 117, 101, 100]
|
|
3469
2006
|
}
|
|
3470
2007
|
]
|
|
3471
2008
|
}
|
|
@@ -3476,23 +2013,17 @@
|
|
|
3476
2013
|
},
|
|
3477
2014
|
{
|
|
3478
2015
|
"name": "fleet",
|
|
3479
|
-
"docs": [
|
|
3480
|
-
"Fleet for SAGE invalidation on close"
|
|
3481
|
-
],
|
|
2016
|
+
"docs": ["Fleet for SAGE invalidation on close"],
|
|
3482
2017
|
"writable": true
|
|
3483
2018
|
},
|
|
3484
2019
|
{
|
|
3485
2020
|
"name": "contract_token_account",
|
|
3486
|
-
"docs": [
|
|
3487
|
-
"Contract's escrow token account (source of tokens)"
|
|
3488
|
-
],
|
|
2021
|
+
"docs": ["Contract's escrow token account (source of tokens)"],
|
|
3489
2022
|
"writable": true
|
|
3490
2023
|
},
|
|
3491
2024
|
{
|
|
3492
2025
|
"name": "owner_token_account",
|
|
3493
|
-
"docs": [
|
|
3494
|
-
"Owner's destination token account (created by contract_thread)"
|
|
3495
|
-
],
|
|
2026
|
+
"docs": ["Owner's destination token account (created by contract_thread)"],
|
|
3496
2027
|
"writable": true
|
|
3497
2028
|
},
|
|
3498
2029
|
{
|
|
@@ -3503,22 +2034,7 @@
|
|
|
3503
2034
|
{
|
|
3504
2035
|
"kind": "const",
|
|
3505
2036
|
"value": [
|
|
3506
|
-
114,
|
|
3507
|
-
101,
|
|
3508
|
-
110,
|
|
3509
|
-
116,
|
|
3510
|
-
97,
|
|
3511
|
-
108,
|
|
3512
|
-
95,
|
|
3513
|
-
97,
|
|
3514
|
-
117,
|
|
3515
|
-
116,
|
|
3516
|
-
104,
|
|
3517
|
-
111,
|
|
3518
|
-
114,
|
|
3519
|
-
105,
|
|
3520
|
-
116,
|
|
3521
|
-
121
|
|
2037
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
3522
2038
|
]
|
|
3523
2039
|
}
|
|
3524
2040
|
]
|
|
@@ -3549,16 +2065,7 @@
|
|
|
3549
2065
|
"Release a fleet from rental control regardless of state.",
|
|
3550
2066
|
"Emergency function to free stuck fleets by invalidating rental in SAGE."
|
|
3551
2067
|
],
|
|
3552
|
-
"discriminator": [
|
|
3553
|
-
99,
|
|
3554
|
-
35,
|
|
3555
|
-
221,
|
|
3556
|
-
147,
|
|
3557
|
-
185,
|
|
3558
|
-
205,
|
|
3559
|
-
23,
|
|
3560
|
-
12
|
|
3561
|
-
],
|
|
2068
|
+
"discriminator": [99, 35, 221, 147, 185, 205, 23, 12],
|
|
3562
2069
|
"accounts": [
|
|
3563
2070
|
{
|
|
3564
2071
|
"name": "signer",
|
|
@@ -3594,23 +2101,7 @@
|
|
|
3594
2101
|
"seeds": [
|
|
3595
2102
|
{
|
|
3596
2103
|
"kind": "const",
|
|
3597
|
-
"value": [
|
|
3598
|
-
114,
|
|
3599
|
-
101,
|
|
3600
|
-
110,
|
|
3601
|
-
116,
|
|
3602
|
-
97,
|
|
3603
|
-
108,
|
|
3604
|
-
95,
|
|
3605
|
-
99,
|
|
3606
|
-
111,
|
|
3607
|
-
110,
|
|
3608
|
-
116,
|
|
3609
|
-
114,
|
|
3610
|
-
97,
|
|
3611
|
-
99,
|
|
3612
|
-
116
|
|
3613
|
-
]
|
|
2104
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
3614
2105
|
},
|
|
3615
2106
|
{
|
|
3616
2107
|
"kind": "account",
|
|
@@ -3626,22 +2117,7 @@
|
|
|
3626
2117
|
{
|
|
3627
2118
|
"kind": "const",
|
|
3628
2119
|
"value": [
|
|
3629
|
-
114,
|
|
3630
|
-
101,
|
|
3631
|
-
110,
|
|
3632
|
-
116,
|
|
3633
|
-
97,
|
|
3634
|
-
108,
|
|
3635
|
-
95,
|
|
3636
|
-
97,
|
|
3637
|
-
117,
|
|
3638
|
-
116,
|
|
3639
|
-
104,
|
|
3640
|
-
111,
|
|
3641
|
-
114,
|
|
3642
|
-
105,
|
|
3643
|
-
116,
|
|
3644
|
-
121
|
|
2120
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
3645
2121
|
]
|
|
3646
2122
|
}
|
|
3647
2123
|
]
|
|
@@ -3666,16 +2142,7 @@
|
|
|
3666
2142
|
"* `bid_atlas` - ATLAS premium to bid (0 if points bid)",
|
|
3667
2143
|
"* `duration` - Rental duration in seconds"
|
|
3668
2144
|
],
|
|
3669
|
-
"discriminator": [
|
|
3670
|
-
5,
|
|
3671
|
-
180,
|
|
3672
|
-
4,
|
|
3673
|
-
150,
|
|
3674
|
-
64,
|
|
3675
|
-
120,
|
|
3676
|
-
189,
|
|
3677
|
-
128
|
|
3678
|
-
],
|
|
2145
|
+
"discriminator": [5, 180, 4, 150, 64, 120, 189, 128],
|
|
3679
2146
|
"accounts": [
|
|
3680
2147
|
{
|
|
3681
2148
|
"name": "challenger",
|
|
@@ -3689,14 +2156,7 @@
|
|
|
3689
2156
|
"seeds": [
|
|
3690
2157
|
{
|
|
3691
2158
|
"kind": "const",
|
|
3692
|
-
"value": [
|
|
3693
|
-
99,
|
|
3694
|
-
111,
|
|
3695
|
-
110,
|
|
3696
|
-
102,
|
|
3697
|
-
105,
|
|
3698
|
-
103
|
|
3699
|
-
]
|
|
2159
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
3700
2160
|
}
|
|
3701
2161
|
]
|
|
3702
2162
|
}
|
|
@@ -3708,23 +2168,7 @@
|
|
|
3708
2168
|
"seeds": [
|
|
3709
2169
|
{
|
|
3710
2170
|
"kind": "const",
|
|
3711
|
-
"value": [
|
|
3712
|
-
114,
|
|
3713
|
-
101,
|
|
3714
|
-
110,
|
|
3715
|
-
116,
|
|
3716
|
-
97,
|
|
3717
|
-
108,
|
|
3718
|
-
95,
|
|
3719
|
-
99,
|
|
3720
|
-
111,
|
|
3721
|
-
110,
|
|
3722
|
-
116,
|
|
3723
|
-
114,
|
|
3724
|
-
97,
|
|
3725
|
-
99,
|
|
3726
|
-
116
|
|
3727
|
-
]
|
|
2171
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
3728
2172
|
},
|
|
3729
2173
|
{
|
|
3730
2174
|
"kind": "account",
|
|
@@ -3744,16 +2188,12 @@
|
|
|
3744
2188
|
},
|
|
3745
2189
|
{
|
|
3746
2190
|
"name": "contract_token_account",
|
|
3747
|
-
"docs": [
|
|
3748
|
-
"Contract's token account for ATLAS escrow"
|
|
3749
|
-
],
|
|
2191
|
+
"docs": ["Contract's token account for ATLAS escrow"],
|
|
3750
2192
|
"writable": true
|
|
3751
2193
|
},
|
|
3752
2194
|
{
|
|
3753
2195
|
"name": "defender_state",
|
|
3754
|
-
"docs": [
|
|
3755
|
-
"Defender's borrower state (required when knocking off a defender)"
|
|
3756
|
-
],
|
|
2196
|
+
"docs": ["Defender's borrower state (required when knocking off a defender)"],
|
|
3757
2197
|
"writable": true,
|
|
3758
2198
|
"optional": true
|
|
3759
2199
|
},
|
|
@@ -3773,22 +2213,7 @@
|
|
|
3773
2213
|
"seeds": [
|
|
3774
2214
|
{
|
|
3775
2215
|
"kind": "const",
|
|
3776
|
-
"value": [
|
|
3777
|
-
98,
|
|
3778
|
-
111,
|
|
3779
|
-
114,
|
|
3780
|
-
114,
|
|
3781
|
-
111,
|
|
3782
|
-
119,
|
|
3783
|
-
101,
|
|
3784
|
-
114,
|
|
3785
|
-
95,
|
|
3786
|
-
115,
|
|
3787
|
-
116,
|
|
3788
|
-
97,
|
|
3789
|
-
116,
|
|
3790
|
-
101
|
|
3791
|
-
]
|
|
2216
|
+
"value": [98, 111, 114, 114, 111, 119, 101, 114, 95, 115, 116, 97, 116, 101]
|
|
3792
2217
|
},
|
|
3793
2218
|
{
|
|
3794
2219
|
"kind": "account",
|
|
@@ -3812,38 +2237,8 @@
|
|
|
3812
2237
|
{
|
|
3813
2238
|
"kind": "const",
|
|
3814
2239
|
"value": [
|
|
3815
|
-
6,
|
|
3816
|
-
|
|
3817
|
-
246,
|
|
3818
|
-
225,
|
|
3819
|
-
215,
|
|
3820
|
-
101,
|
|
3821
|
-
161,
|
|
3822
|
-
147,
|
|
3823
|
-
217,
|
|
3824
|
-
203,
|
|
3825
|
-
225,
|
|
3826
|
-
70,
|
|
3827
|
-
206,
|
|
3828
|
-
235,
|
|
3829
|
-
121,
|
|
3830
|
-
172,
|
|
3831
|
-
28,
|
|
3832
|
-
180,
|
|
3833
|
-
133,
|
|
3834
|
-
237,
|
|
3835
|
-
95,
|
|
3836
|
-
91,
|
|
3837
|
-
55,
|
|
3838
|
-
145,
|
|
3839
|
-
58,
|
|
3840
|
-
140,
|
|
3841
|
-
245,
|
|
3842
|
-
133,
|
|
3843
|
-
126,
|
|
3844
|
-
255,
|
|
3845
|
-
0,
|
|
3846
|
-
169
|
|
2240
|
+
6, 221, 246, 225, 215, 101, 161, 147, 217, 203, 225, 70, 206, 235, 121, 172, 28,
|
|
2241
|
+
180, 133, 237, 95, 91, 55, 145, 58, 140, 245, 133, 126, 255, 0, 169
|
|
3847
2242
|
]
|
|
3848
2243
|
},
|
|
3849
2244
|
{
|
|
@@ -3855,65 +2250,20 @@
|
|
|
3855
2250
|
"program": {
|
|
3856
2251
|
"kind": "const",
|
|
3857
2252
|
"value": [
|
|
3858
|
-
140,
|
|
3859
|
-
|
|
3860
|
-
37,
|
|
3861
|
-
143,
|
|
3862
|
-
78,
|
|
3863
|
-
36,
|
|
3864
|
-
137,
|
|
3865
|
-
241,
|
|
3866
|
-
187,
|
|
3867
|
-
61,
|
|
3868
|
-
16,
|
|
3869
|
-
41,
|
|
3870
|
-
20,
|
|
3871
|
-
142,
|
|
3872
|
-
13,
|
|
3873
|
-
131,
|
|
3874
|
-
11,
|
|
3875
|
-
90,
|
|
3876
|
-
19,
|
|
3877
|
-
153,
|
|
3878
|
-
218,
|
|
3879
|
-
255,
|
|
3880
|
-
16,
|
|
3881
|
-
132,
|
|
3882
|
-
4,
|
|
3883
|
-
142,
|
|
3884
|
-
123,
|
|
3885
|
-
216,
|
|
3886
|
-
219,
|
|
3887
|
-
233,
|
|
3888
|
-
248,
|
|
3889
|
-
89
|
|
2253
|
+
140, 151, 37, 143, 78, 36, 137, 241, 187, 61, 16, 41, 20, 142, 13, 131, 11, 90, 19,
|
|
2254
|
+
153, 218, 255, 16, 132, 4, 142, 123, 216, 219, 233, 248, 89
|
|
3890
2255
|
]
|
|
3891
2256
|
}
|
|
3892
2257
|
}
|
|
3893
2258
|
},
|
|
3894
2259
|
{
|
|
3895
2260
|
"name": "active_rental",
|
|
3896
|
-
"docs": [
|
|
3897
|
-
"Active rental slot (read-only, needed for fiber rebuild)"
|
|
3898
|
-
],
|
|
2261
|
+
"docs": ["Active rental slot (read-only, needed for fiber rebuild)"],
|
|
3899
2262
|
"pda": {
|
|
3900
2263
|
"seeds": [
|
|
3901
2264
|
{
|
|
3902
2265
|
"kind": "const",
|
|
3903
|
-
"value": [
|
|
3904
|
-
114,
|
|
3905
|
-
101,
|
|
3906
|
-
110,
|
|
3907
|
-
116,
|
|
3908
|
-
97,
|
|
3909
|
-
108,
|
|
3910
|
-
95,
|
|
3911
|
-
115,
|
|
3912
|
-
116,
|
|
3913
|
-
97,
|
|
3914
|
-
116,
|
|
3915
|
-
101
|
|
3916
|
-
]
|
|
2266
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
3917
2267
|
},
|
|
3918
2268
|
{
|
|
3919
2269
|
"kind": "account",
|
|
@@ -3921,14 +2271,7 @@
|
|
|
3921
2271
|
},
|
|
3922
2272
|
{
|
|
3923
2273
|
"kind": "const",
|
|
3924
|
-
"value": [
|
|
3925
|
-
97,
|
|
3926
|
-
99,
|
|
3927
|
-
116,
|
|
3928
|
-
105,
|
|
3929
|
-
118,
|
|
3930
|
-
101
|
|
3931
|
-
]
|
|
2274
|
+
"value": [97, 99, 116, 105, 118, 101]
|
|
3932
2275
|
}
|
|
3933
2276
|
]
|
|
3934
2277
|
}
|
|
@@ -3943,20 +2286,7 @@
|
|
|
3943
2286
|
"seeds": [
|
|
3944
2287
|
{
|
|
3945
2288
|
"kind": "const",
|
|
3946
|
-
"value": [
|
|
3947
|
-
114,
|
|
3948
|
-
101,
|
|
3949
|
-
110,
|
|
3950
|
-
116,
|
|
3951
|
-
97,
|
|
3952
|
-
108,
|
|
3953
|
-
95,
|
|
3954
|
-
115,
|
|
3955
|
-
116,
|
|
3956
|
-
97,
|
|
3957
|
-
116,
|
|
3958
|
-
101
|
|
3959
|
-
]
|
|
2289
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 115, 116, 97, 116, 101]
|
|
3960
2290
|
},
|
|
3961
2291
|
{
|
|
3962
2292
|
"kind": "account",
|
|
@@ -3964,14 +2294,7 @@
|
|
|
3964
2294
|
},
|
|
3965
2295
|
{
|
|
3966
2296
|
"kind": "const",
|
|
3967
|
-
"value": [
|
|
3968
|
-
113,
|
|
3969
|
-
117,
|
|
3970
|
-
101,
|
|
3971
|
-
117,
|
|
3972
|
-
101,
|
|
3973
|
-
100
|
|
3974
|
-
]
|
|
2297
|
+
"value": [113, 117, 101, 117, 101, 100]
|
|
3975
2298
|
}
|
|
3976
2299
|
]
|
|
3977
2300
|
}
|
|
@@ -3988,22 +2311,7 @@
|
|
|
3988
2311
|
{
|
|
3989
2312
|
"kind": "const",
|
|
3990
2313
|
"value": [
|
|
3991
|
-
114,
|
|
3992
|
-
101,
|
|
3993
|
-
110,
|
|
3994
|
-
116,
|
|
3995
|
-
97,
|
|
3996
|
-
108,
|
|
3997
|
-
95,
|
|
3998
|
-
97,
|
|
3999
|
-
117,
|
|
4000
|
-
116,
|
|
4001
|
-
104,
|
|
4002
|
-
111,
|
|
4003
|
-
114,
|
|
4004
|
-
105,
|
|
4005
|
-
116,
|
|
4006
|
-
121
|
|
2314
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
4007
2315
|
]
|
|
4008
2316
|
}
|
|
4009
2317
|
]
|
|
@@ -4054,24 +2362,13 @@
|
|
|
4054
2362
|
"Set or remove a delegate address that can update the contract rate.",
|
|
4055
2363
|
"Only the owner can set/remove delegates."
|
|
4056
2364
|
],
|
|
4057
|
-
"discriminator": [
|
|
4058
|
-
242,
|
|
4059
|
-
30,
|
|
4060
|
-
46,
|
|
4061
|
-
76,
|
|
4062
|
-
108,
|
|
4063
|
-
235,
|
|
4064
|
-
128,
|
|
4065
|
-
181
|
|
4066
|
-
],
|
|
2365
|
+
"discriminator": [242, 30, 46, 76, 108, 235, 128, 181],
|
|
4067
2366
|
"accounts": [
|
|
4068
2367
|
{
|
|
4069
2368
|
"name": "owner",
|
|
4070
2369
|
"writable": true,
|
|
4071
2370
|
"signer": true,
|
|
4072
|
-
"relations": [
|
|
4073
|
-
"contract"
|
|
4074
|
-
]
|
|
2371
|
+
"relations": ["contract"]
|
|
4075
2372
|
},
|
|
4076
2373
|
{
|
|
4077
2374
|
"name": "contract",
|
|
@@ -4089,26 +2386,13 @@
|
|
|
4089
2386
|
},
|
|
4090
2387
|
{
|
|
4091
2388
|
"name": "update_config",
|
|
4092
|
-
"docs": [
|
|
4093
|
-
|
|
4094
|
-
],
|
|
4095
|
-
"discriminator": [
|
|
4096
|
-
29,
|
|
4097
|
-
158,
|
|
4098
|
-
252,
|
|
4099
|
-
191,
|
|
4100
|
-
10,
|
|
4101
|
-
83,
|
|
4102
|
-
219,
|
|
4103
|
-
99
|
|
4104
|
-
],
|
|
2389
|
+
"docs": ["Update program configuration. Only callable by config authority."],
|
|
2390
|
+
"discriminator": [29, 158, 252, 191, 10, 83, 219, 99],
|
|
4105
2391
|
"accounts": [
|
|
4106
2392
|
{
|
|
4107
2393
|
"name": "admin",
|
|
4108
2394
|
"signer": true,
|
|
4109
|
-
"relations": [
|
|
4110
|
-
"config"
|
|
4111
|
-
]
|
|
2395
|
+
"relations": ["config"]
|
|
4112
2396
|
},
|
|
4113
2397
|
{
|
|
4114
2398
|
"name": "config",
|
|
@@ -4117,14 +2401,7 @@
|
|
|
4117
2401
|
"seeds": [
|
|
4118
2402
|
{
|
|
4119
2403
|
"kind": "const",
|
|
4120
|
-
"value": [
|
|
4121
|
-
99,
|
|
4122
|
-
111,
|
|
4123
|
-
110,
|
|
4124
|
-
102,
|
|
4125
|
-
105,
|
|
4126
|
-
103
|
|
4127
|
-
]
|
|
2404
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
4128
2405
|
}
|
|
4129
2406
|
]
|
|
4130
2407
|
}
|
|
@@ -4147,16 +2424,7 @@
|
|
|
4147
2424
|
"Update rental contract settings.",
|
|
4148
2425
|
"Owner can update all settings, delegate can only update rate."
|
|
4149
2426
|
],
|
|
4150
|
-
"discriminator": [
|
|
4151
|
-
78,
|
|
4152
|
-
184,
|
|
4153
|
-
162,
|
|
4154
|
-
174,
|
|
4155
|
-
233,
|
|
4156
|
-
5,
|
|
4157
|
-
40,
|
|
4158
|
-
82
|
|
4159
|
-
],
|
|
2427
|
+
"discriminator": [78, 184, 162, 174, 233, 5, 40, 82],
|
|
4160
2428
|
"accounts": [
|
|
4161
2429
|
{
|
|
4162
2430
|
"name": "authority",
|
|
@@ -4169,14 +2437,7 @@
|
|
|
4169
2437
|
"seeds": [
|
|
4170
2438
|
{
|
|
4171
2439
|
"kind": "const",
|
|
4172
|
-
"value": [
|
|
4173
|
-
99,
|
|
4174
|
-
111,
|
|
4175
|
-
110,
|
|
4176
|
-
102,
|
|
4177
|
-
105,
|
|
4178
|
-
103
|
|
4179
|
-
]
|
|
2440
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
4180
2441
|
}
|
|
4181
2442
|
]
|
|
4182
2443
|
}
|
|
@@ -4199,19 +2460,8 @@
|
|
|
4199
2460
|
},
|
|
4200
2461
|
{
|
|
4201
2462
|
"name": "update_contract_thread",
|
|
4202
|
-
"docs": [
|
|
4203
|
-
|
|
4204
|
-
],
|
|
4205
|
-
"discriminator": [
|
|
4206
|
-
183,
|
|
4207
|
-
75,
|
|
4208
|
-
119,
|
|
4209
|
-
98,
|
|
4210
|
-
134,
|
|
4211
|
-
24,
|
|
4212
|
-
187,
|
|
4213
|
-
91
|
|
4214
|
-
],
|
|
2463
|
+
"docs": ["Fund a contract thread with SOL and/or update settlement frequency."],
|
|
2464
|
+
"discriminator": [183, 75, 119, 98, 134, 24, 187, 91],
|
|
4215
2465
|
"accounts": [
|
|
4216
2466
|
{
|
|
4217
2467
|
"name": "payer",
|
|
@@ -4224,14 +2474,7 @@
|
|
|
4224
2474
|
"seeds": [
|
|
4225
2475
|
{
|
|
4226
2476
|
"kind": "const",
|
|
4227
|
-
"value": [
|
|
4228
|
-
99,
|
|
4229
|
-
111,
|
|
4230
|
-
110,
|
|
4231
|
-
102,
|
|
4232
|
-
105,
|
|
4233
|
-
103
|
|
4234
|
-
]
|
|
2477
|
+
"value": [99, 111, 110, 102, 105, 103]
|
|
4235
2478
|
}
|
|
4236
2479
|
]
|
|
4237
2480
|
}
|
|
@@ -4243,23 +2486,7 @@
|
|
|
4243
2486
|
"seeds": [
|
|
4244
2487
|
{
|
|
4245
2488
|
"kind": "const",
|
|
4246
|
-
"value": [
|
|
4247
|
-
114,
|
|
4248
|
-
101,
|
|
4249
|
-
110,
|
|
4250
|
-
116,
|
|
4251
|
-
97,
|
|
4252
|
-
108,
|
|
4253
|
-
95,
|
|
4254
|
-
99,
|
|
4255
|
-
111,
|
|
4256
|
-
110,
|
|
4257
|
-
116,
|
|
4258
|
-
114,
|
|
4259
|
-
97,
|
|
4260
|
-
99,
|
|
4261
|
-
116
|
|
4262
|
-
]
|
|
2489
|
+
"value": [114, 101, 110, 116, 97, 108, 95, 99, 111, 110, 116, 114, 97, 99, 116]
|
|
4263
2490
|
},
|
|
4264
2491
|
{
|
|
4265
2492
|
"kind": "account",
|
|
@@ -4277,22 +2504,7 @@
|
|
|
4277
2504
|
{
|
|
4278
2505
|
"kind": "const",
|
|
4279
2506
|
"value": [
|
|
4280
|
-
114,
|
|
4281
|
-
101,
|
|
4282
|
-
110,
|
|
4283
|
-
116,
|
|
4284
|
-
97,
|
|
4285
|
-
108,
|
|
4286
|
-
95,
|
|
4287
|
-
97,
|
|
4288
|
-
117,
|
|
4289
|
-
116,
|
|
4290
|
-
104,
|
|
4291
|
-
111,
|
|
4292
|
-
114,
|
|
4293
|
-
105,
|
|
4294
|
-
116,
|
|
4295
|
-
121
|
|
2507
|
+
114, 101, 110, 116, 97, 108, 95, 97, 117, 116, 104, 111, 114, 105, 116, 121
|
|
4296
2508
|
]
|
|
4297
2509
|
}
|
|
4298
2510
|
]
|
|
@@ -4328,135 +2540,45 @@
|
|
|
4328
2540
|
"accounts": [
|
|
4329
2541
|
{
|
|
4330
2542
|
"name": "BorrowerState",
|
|
4331
|
-
"discriminator": [
|
|
4332
|
-
160,
|
|
4333
|
-
47,
|
|
4334
|
-
174,
|
|
4335
|
-
209,
|
|
4336
|
-
255,
|
|
4337
|
-
213,
|
|
4338
|
-
193,
|
|
4339
|
-
235
|
|
4340
|
-
]
|
|
2543
|
+
"discriminator": [160, 47, 174, 209, 255, 213, 193, 235]
|
|
4341
2544
|
},
|
|
4342
2545
|
{
|
|
4343
2546
|
"name": "ConfigState",
|
|
4344
|
-
"discriminator": [
|
|
4345
|
-
193,
|
|
4346
|
-
77,
|
|
4347
|
-
160,
|
|
4348
|
-
128,
|
|
4349
|
-
208,
|
|
4350
|
-
254,
|
|
4351
|
-
180,
|
|
4352
|
-
135
|
|
4353
|
-
]
|
|
2547
|
+
"discriminator": [193, 77, 160, 128, 208, 254, 180, 135]
|
|
4354
2548
|
},
|
|
4355
2549
|
{
|
|
4356
2550
|
"name": "ContractState",
|
|
4357
|
-
"discriminator": [
|
|
4358
|
-
190,
|
|
4359
|
-
138,
|
|
4360
|
-
10,
|
|
4361
|
-
223,
|
|
4362
|
-
189,
|
|
4363
|
-
116,
|
|
4364
|
-
222,
|
|
4365
|
-
115
|
|
4366
|
-
]
|
|
2551
|
+
"discriminator": [190, 138, 10, 223, 189, 116, 222, 115]
|
|
4367
2552
|
},
|
|
4368
2553
|
{
|
|
4369
2554
|
"name": "RentalState",
|
|
4370
|
-
"discriminator": [
|
|
4371
|
-
97,
|
|
4372
|
-
162,
|
|
4373
|
-
29,
|
|
4374
|
-
222,
|
|
4375
|
-
251,
|
|
4376
|
-
251,
|
|
4377
|
-
180,
|
|
4378
|
-
244
|
|
4379
|
-
]
|
|
2555
|
+
"discriminator": [97, 162, 29, 222, 251, 251, 180, 244]
|
|
4380
2556
|
}
|
|
4381
2557
|
],
|
|
4382
2558
|
"events": [
|
|
4383
2559
|
{
|
|
4384
2560
|
"name": "FeesPaid",
|
|
4385
|
-
"discriminator": [
|
|
4386
|
-
71,
|
|
4387
|
-
98,
|
|
4388
|
-
195,
|
|
4389
|
-
210,
|
|
4390
|
-
40,
|
|
4391
|
-
81,
|
|
4392
|
-
73,
|
|
4393
|
-
159
|
|
4394
|
-
]
|
|
2561
|
+
"discriminator": [71, 98, 195, 210, 40, 81, 73, 159]
|
|
4395
2562
|
},
|
|
4396
2563
|
{
|
|
4397
2564
|
"name": "OwnerPaid",
|
|
4398
|
-
"discriminator": [
|
|
4399
|
-
135,
|
|
4400
|
-
160,
|
|
4401
|
-
107,
|
|
4402
|
-
250,
|
|
4403
|
-
183,
|
|
4404
|
-
233,
|
|
4405
|
-
175,
|
|
4406
|
-
124
|
|
4407
|
-
]
|
|
2565
|
+
"discriminator": [135, 160, 107, 250, 183, 233, 175, 124]
|
|
4408
2566
|
},
|
|
4409
2567
|
{
|
|
4410
2568
|
"name": "RentalAccepted",
|
|
4411
|
-
"discriminator": [
|
|
4412
|
-
72,
|
|
4413
|
-
237,
|
|
4414
|
-
15,
|
|
4415
|
-
82,
|
|
4416
|
-
177,
|
|
4417
|
-
184,
|
|
4418
|
-
244,
|
|
4419
|
-
201
|
|
4420
|
-
]
|
|
2569
|
+
"discriminator": [72, 237, 15, 82, 177, 184, 244, 201]
|
|
4421
2570
|
},
|
|
4422
2571
|
{
|
|
4423
2572
|
"name": "RentalCancelled",
|
|
4424
|
-
"discriminator": [
|
|
4425
|
-
7,
|
|
4426
|
-
110,
|
|
4427
|
-
25,
|
|
4428
|
-
158,
|
|
4429
|
-
197,
|
|
4430
|
-
48,
|
|
4431
|
-
12,
|
|
4432
|
-
238
|
|
4433
|
-
]
|
|
2573
|
+
"discriminator": [7, 110, 25, 158, 197, 48, 12, 238]
|
|
4434
2574
|
},
|
|
4435
2575
|
{
|
|
4436
2576
|
"name": "RentalClosed",
|
|
4437
|
-
"discriminator": [
|
|
4438
|
-
77,
|
|
4439
|
-
252,
|
|
4440
|
-
165,
|
|
4441
|
-
5,
|
|
4442
|
-
168,
|
|
4443
|
-
29,
|
|
4444
|
-
237,
|
|
4445
|
-
40
|
|
4446
|
-
]
|
|
2577
|
+
"discriminator": [77, 252, 165, 5, 168, 29, 237, 40]
|
|
4447
2578
|
},
|
|
4448
2579
|
{
|
|
4449
2580
|
"name": "RentalSettled",
|
|
4450
|
-
"discriminator": [
|
|
4451
|
-
170,
|
|
4452
|
-
51,
|
|
4453
|
-
180,
|
|
4454
|
-
247,
|
|
4455
|
-
186,
|
|
4456
|
-
122,
|
|
4457
|
-
168,
|
|
4458
|
-
59
|
|
4459
|
-
]
|
|
2581
|
+
"discriminator": [170, 51, 180, 247, 186, 122, 168, 59]
|
|
4460
2582
|
}
|
|
4461
2583
|
],
|
|
4462
2584
|
"errors": [
|
|
@@ -4887,51 +3009,46 @@
|
|
|
4887
3009
|
},
|
|
4888
3010
|
{
|
|
4889
3011
|
"code": 6085,
|
|
4890
|
-
"name": "InsufficientThreadFunding",
|
|
4891
|
-
"msg": "Insufficient SOL for thread creation. Minimum 0.04 SOL required for 3 fibers + thread rent."
|
|
4892
|
-
},
|
|
4893
|
-
{
|
|
4894
|
-
"code": 6086,
|
|
4895
3012
|
"name": "InvalidDiscountContext",
|
|
4896
3013
|
"msg": "Discount authorization context does not match contract"
|
|
4897
3014
|
},
|
|
4898
3015
|
{
|
|
4899
|
-
"code":
|
|
3016
|
+
"code": 6086,
|
|
4900
3017
|
"name": "AtlasBidRequired",
|
|
4901
3018
|
"msg": "ATLAS bid required to knock off an ATLAS reservation"
|
|
4902
3019
|
},
|
|
4903
3020
|
{
|
|
4904
|
-
"code":
|
|
3021
|
+
"code": 6087,
|
|
4905
3022
|
"name": "InsufficientBid",
|
|
4906
3023
|
"msg": "Bid is insufficient to knock off the current reservation"
|
|
4907
3024
|
},
|
|
4908
3025
|
{
|
|
4909
|
-
"code":
|
|
3026
|
+
"code": 6088,
|
|
4910
3027
|
"name": "BidRequired",
|
|
4911
3028
|
"msg": "A non-zero bid is required to knock off an existing reservation"
|
|
4912
3029
|
},
|
|
4913
3030
|
{
|
|
4914
|
-
"code":
|
|
3031
|
+
"code": 6089,
|
|
4915
3032
|
"name": "PointsOrAtlasBidOnly",
|
|
4916
3033
|
"msg": "Bid must be either points or ATLAS, not both"
|
|
4917
3034
|
},
|
|
4918
3035
|
{
|
|
4919
|
-
"code":
|
|
3036
|
+
"code": 6090,
|
|
4920
3037
|
"name": "DiscountNotLocked",
|
|
4921
3038
|
"msg": "Discount must be locked before it can be used in activation"
|
|
4922
3039
|
},
|
|
4923
3040
|
{
|
|
4924
|
-
"code":
|
|
3041
|
+
"code": 6091,
|
|
4925
3042
|
"name": "MissingReferrer",
|
|
4926
3043
|
"msg": "Referrer account required when discount params are provided"
|
|
4927
3044
|
},
|
|
4928
3045
|
{
|
|
4929
|
-
"code":
|
|
3046
|
+
"code": 6092,
|
|
4930
3047
|
"name": "OwnerCannotRent",
|
|
4931
3048
|
"msg": "Owner cannot rent their own fleet"
|
|
4932
3049
|
},
|
|
4933
3050
|
{
|
|
4934
|
-
"code":
|
|
3051
|
+
"code": 6093,
|
|
4935
3052
|
"name": "InsufficientFundsToCloseQueuedReservation",
|
|
4936
3053
|
"msg": "Owner has insufficient ATLAS to refund the queued challenger's full bid. \\\n Deposit more ATLAS into your token account and retry. The exact \\\n shortfall amount is emitted in the program log."
|
|
4937
3054
|
}
|
|
@@ -4948,23 +3065,17 @@
|
|
|
4948
3065
|
"fields": [
|
|
4949
3066
|
{
|
|
4950
3067
|
"name": "version",
|
|
4951
|
-
"docs": [
|
|
4952
|
-
"Account version for future migrations"
|
|
4953
|
-
],
|
|
3068
|
+
"docs": ["Account version for future migrations"],
|
|
4954
3069
|
"type": "u32"
|
|
4955
3070
|
},
|
|
4956
3071
|
{
|
|
4957
3072
|
"name": "bump",
|
|
4958
|
-
"docs": [
|
|
4959
|
-
"PDA bump seed"
|
|
4960
|
-
],
|
|
3073
|
+
"docs": ["PDA bump seed"],
|
|
4961
3074
|
"type": "u8"
|
|
4962
3075
|
},
|
|
4963
3076
|
{
|
|
4964
3077
|
"name": "authority",
|
|
4965
|
-
"docs": [
|
|
4966
|
-
"Authority's wallet address (the borrower)"
|
|
4967
|
-
],
|
|
3078
|
+
"docs": ["Authority's wallet address (the borrower)"],
|
|
4968
3079
|
"type": "pubkey"
|
|
4969
3080
|
},
|
|
4970
3081
|
{
|
|
@@ -4987,9 +3098,7 @@
|
|
|
4987
3098
|
},
|
|
4988
3099
|
{
|
|
4989
3100
|
"name": "capture_points",
|
|
4990
|
-
"docs": [
|
|
4991
|
-
"Current capture points accumulated"
|
|
4992
|
-
],
|
|
3101
|
+
"docs": ["Current capture points accumulated"],
|
|
4993
3102
|
"type": "u64"
|
|
4994
3103
|
},
|
|
4995
3104
|
{
|
|
@@ -5002,16 +3111,12 @@
|
|
|
5002
3111
|
},
|
|
5003
3112
|
{
|
|
5004
3113
|
"name": "created_at",
|
|
5005
|
-
"docs": [
|
|
5006
|
-
"Timestamp when borrower state was created"
|
|
5007
|
-
],
|
|
3114
|
+
"docs": ["Timestamp when borrower state was created"],
|
|
5008
3115
|
"type": "i64"
|
|
5009
3116
|
},
|
|
5010
3117
|
{
|
|
5011
3118
|
"name": "updated_at",
|
|
5012
|
-
"docs": [
|
|
5013
|
-
"Timestamp when borrower state was last updated"
|
|
5014
|
-
],
|
|
3119
|
+
"docs": ["Timestamp when borrower state was last updated"],
|
|
5015
3120
|
"type": "i64"
|
|
5016
3121
|
}
|
|
5017
3122
|
]
|
|
@@ -5019,9 +3124,7 @@
|
|
|
5019
3124
|
},
|
|
5020
3125
|
{
|
|
5021
3126
|
"name": "CargoStats",
|
|
5022
|
-
"docs": [
|
|
5023
|
-
"A ship's cargo stats"
|
|
5024
|
-
],
|
|
3127
|
+
"docs": ["A ship's cargo stats"],
|
|
5025
3128
|
"type": {
|
|
5026
3129
|
"kind": "struct",
|
|
5027
3130
|
"fields": [
|
|
@@ -5077,128 +3180,92 @@
|
|
|
5077
3180
|
"fields": [
|
|
5078
3181
|
{
|
|
5079
3182
|
"name": "version",
|
|
5080
|
-
"docs": [
|
|
5081
|
-
"Account version for future migrations"
|
|
5082
|
-
],
|
|
3183
|
+
"docs": ["Account version for future migrations"],
|
|
5083
3184
|
"type": "u32"
|
|
5084
3185
|
},
|
|
5085
3186
|
{
|
|
5086
3187
|
"name": "bump",
|
|
5087
|
-
"docs": [
|
|
5088
|
-
"PDA bump seed"
|
|
5089
|
-
],
|
|
3188
|
+
"docs": ["PDA bump seed"],
|
|
5090
3189
|
"type": "u8"
|
|
5091
3190
|
},
|
|
5092
3191
|
{
|
|
5093
3192
|
"name": "admin",
|
|
5094
|
-
"docs": [
|
|
5095
|
-
"Authority that can update configuration (admin)"
|
|
5096
|
-
],
|
|
3193
|
+
"docs": ["Authority that can update configuration (admin)"],
|
|
5097
3194
|
"type": "pubkey"
|
|
5098
3195
|
},
|
|
5099
3196
|
{
|
|
5100
3197
|
"name": "stardust_to_atlas",
|
|
5101
|
-
"docs": [
|
|
5102
|
-
"Stardust to ATLAS conversion rate (default: 100M = 1 ATLAS)"
|
|
5103
|
-
],
|
|
3198
|
+
"docs": ["Stardust to ATLAS conversion rate (default: 100M = 1 ATLAS)"],
|
|
5104
3199
|
"type": "u64"
|
|
5105
3200
|
},
|
|
5106
3201
|
{
|
|
5107
3202
|
"name": "service_fee_bps",
|
|
5108
|
-
"docs": [
|
|
5109
|
-
"Service fee in basis points (default: 1000 = 10%, max: 10%)"
|
|
5110
|
-
],
|
|
3203
|
+
"docs": ["Service fee in basis points (default: 1000 = 10%, max: 10%)"],
|
|
5111
3204
|
"type": "u64"
|
|
5112
3205
|
},
|
|
5113
3206
|
{
|
|
5114
3207
|
"name": "base_bps",
|
|
5115
|
-
"docs": [
|
|
5116
|
-
"Basis points denominator (default: 10,000)"
|
|
5117
|
-
],
|
|
3208
|
+
"docs": ["Basis points denominator (default: 10,000)"],
|
|
5118
3209
|
"type": "u16"
|
|
5119
3210
|
},
|
|
5120
3211
|
{
|
|
5121
3212
|
"name": "rental_duration_min_seconds",
|
|
5122
|
-
"docs": [
|
|
5123
|
-
"Minimum rental duration (default: 3600s = 1 hour)"
|
|
5124
|
-
],
|
|
3213
|
+
"docs": ["Minimum rental duration (default: 3600s = 1 hour)"],
|
|
5125
3214
|
"type": "i64"
|
|
5126
3215
|
},
|
|
5127
3216
|
{
|
|
5128
3217
|
"name": "rental_duration_max_seconds",
|
|
5129
|
-
"docs": [
|
|
5130
|
-
"Maximum rental duration (default: 8,035,200s ≈ 3 months)"
|
|
5131
|
-
],
|
|
3218
|
+
"docs": ["Maximum rental duration (default: 8,035,200s ≈ 3 months)"],
|
|
5132
3219
|
"type": "i64"
|
|
5133
3220
|
},
|
|
5134
3221
|
{
|
|
5135
3222
|
"name": "atlas_mint",
|
|
5136
|
-
"docs": [
|
|
5137
|
-
"ATLAS token mint for payments"
|
|
5138
|
-
],
|
|
3223
|
+
"docs": ["ATLAS token mint for payments"],
|
|
5139
3224
|
"type": "pubkey"
|
|
5140
3225
|
},
|
|
5141
3226
|
{
|
|
5142
3227
|
"name": "slyvault",
|
|
5143
|
-
"docs": [
|
|
5144
|
-
"slyvault vault pubkey for fee distribution"
|
|
5145
|
-
],
|
|
3228
|
+
"docs": ["slyvault vault pubkey for fee distribution"],
|
|
5146
3229
|
"type": "pubkey"
|
|
5147
3230
|
},
|
|
5148
3231
|
{
|
|
5149
3232
|
"name": "reservations_enabled",
|
|
5150
|
-
"docs": [
|
|
5151
|
-
"Whether reservation system is enabled"
|
|
5152
|
-
],
|
|
3233
|
+
"docs": ["Whether reservation system is enabled"],
|
|
5153
3234
|
"type": "bool"
|
|
5154
3235
|
},
|
|
5155
3236
|
{
|
|
5156
3237
|
"name": "points_per_day",
|
|
5157
|
-
"docs": [
|
|
5158
|
-
"Points awarded per day of rental"
|
|
5159
|
-
],
|
|
3238
|
+
"docs": ["Points awarded per day of rental"],
|
|
5160
3239
|
"type": "u64"
|
|
5161
3240
|
},
|
|
5162
3241
|
{
|
|
5163
3242
|
"name": "cancellation_penalty",
|
|
5164
|
-
"docs": [
|
|
5165
|
-
"Points lost on cancellation"
|
|
5166
|
-
],
|
|
3243
|
+
"docs": ["Points lost on cancellation"],
|
|
5167
3244
|
"type": "u64"
|
|
5168
3245
|
},
|
|
5169
3246
|
{
|
|
5170
3247
|
"name": "min_capture_threshold",
|
|
5171
|
-
"docs": [
|
|
5172
|
-
"Minimum points to capture any flag"
|
|
5173
|
-
],
|
|
3248
|
+
"docs": ["Minimum points to capture any flag"],
|
|
5174
3249
|
"type": "u64"
|
|
5175
3250
|
},
|
|
5176
3251
|
{
|
|
5177
3252
|
"name": "weight_base",
|
|
5178
|
-
"docs": [
|
|
5179
|
-
"Base for logarithm calculation (default: 10)"
|
|
5180
|
-
],
|
|
3253
|
+
"docs": ["Base for logarithm calculation (default: 10)"],
|
|
5181
3254
|
"type": "u32"
|
|
5182
3255
|
},
|
|
5183
3256
|
{
|
|
5184
3257
|
"name": "weight_multiplier",
|
|
5185
|
-
"docs": [
|
|
5186
|
-
"Multiplier for log result (default: 1.5)"
|
|
5187
|
-
],
|
|
3258
|
+
"docs": ["Multiplier for log result (default: 1.5)"],
|
|
5188
3259
|
"type": "f32"
|
|
5189
3260
|
},
|
|
5190
3261
|
{
|
|
5191
3262
|
"name": "max_weight",
|
|
5192
|
-
"docs": [
|
|
5193
|
-
"Maximum weight cap (default: 5)"
|
|
5194
|
-
],
|
|
3263
|
+
"docs": ["Maximum weight cap (default: 5)"],
|
|
5195
3264
|
"type": "u8"
|
|
5196
3265
|
},
|
|
5197
3266
|
{
|
|
5198
3267
|
"name": "capture_rate_bps",
|
|
5199
|
-
"docs": [
|
|
5200
|
-
"Rate increase in basis points (min 10000 = 100%, default: 10500 = 105%)"
|
|
5201
|
-
],
|
|
3268
|
+
"docs": ["Rate increase in basis points (min 10000 = 100%, default: 10500 = 105%)"],
|
|
5202
3269
|
"type": "u64"
|
|
5203
3270
|
},
|
|
5204
3271
|
{
|
|
@@ -5240,16 +3307,12 @@
|
|
|
5240
3307
|
},
|
|
5241
3308
|
{
|
|
5242
3309
|
"name": "created_at",
|
|
5243
|
-
"docs": [
|
|
5244
|
-
"Timestamp when config was created"
|
|
5245
|
-
],
|
|
3310
|
+
"docs": ["Timestamp when config was created"],
|
|
5246
3311
|
"type": "i64"
|
|
5247
3312
|
},
|
|
5248
3313
|
{
|
|
5249
3314
|
"name": "updated_at",
|
|
5250
|
-
"docs": [
|
|
5251
|
-
"Timestamp when config was last updated"
|
|
5252
|
-
],
|
|
3315
|
+
"docs": ["Timestamp when config was last updated"],
|
|
5253
3316
|
"type": "i64"
|
|
5254
3317
|
}
|
|
5255
3318
|
]
|
|
@@ -5266,144 +3329,112 @@
|
|
|
5266
3329
|
"fields": [
|
|
5267
3330
|
{
|
|
5268
3331
|
"name": "admin",
|
|
5269
|
-
"docs": [
|
|
5270
|
-
"New admin address (admin)"
|
|
5271
|
-
],
|
|
3332
|
+
"docs": ["New admin address (admin)"],
|
|
5272
3333
|
"type": {
|
|
5273
3334
|
"option": "pubkey"
|
|
5274
3335
|
}
|
|
5275
3336
|
},
|
|
5276
3337
|
{
|
|
5277
3338
|
"name": "stardust_to_atlas",
|
|
5278
|
-
"docs": [
|
|
5279
|
-
"Stardust to ATLAS conversion rate"
|
|
5280
|
-
],
|
|
3339
|
+
"docs": ["Stardust to ATLAS conversion rate"],
|
|
5281
3340
|
"type": {
|
|
5282
3341
|
"option": "u64"
|
|
5283
3342
|
}
|
|
5284
3343
|
},
|
|
5285
3344
|
{
|
|
5286
3345
|
"name": "service_fee_bps",
|
|
5287
|
-
"docs": [
|
|
5288
|
-
"Service fee in basis points (1000 = 10%)"
|
|
5289
|
-
],
|
|
3346
|
+
"docs": ["Service fee in basis points (1000 = 10%)"],
|
|
5290
3347
|
"type": {
|
|
5291
3348
|
"option": "u64"
|
|
5292
3349
|
}
|
|
5293
3350
|
},
|
|
5294
3351
|
{
|
|
5295
3352
|
"name": "base_bps",
|
|
5296
|
-
"docs": [
|
|
5297
|
-
"Basis points denominator"
|
|
5298
|
-
],
|
|
3353
|
+
"docs": ["Basis points denominator"],
|
|
5299
3354
|
"type": {
|
|
5300
3355
|
"option": "u16"
|
|
5301
3356
|
}
|
|
5302
3357
|
},
|
|
5303
3358
|
{
|
|
5304
3359
|
"name": "rental_duration_min_seconds",
|
|
5305
|
-
"docs": [
|
|
5306
|
-
"Minimum rental duration in seconds"
|
|
5307
|
-
],
|
|
3360
|
+
"docs": ["Minimum rental duration in seconds"],
|
|
5308
3361
|
"type": {
|
|
5309
3362
|
"option": "i64"
|
|
5310
3363
|
}
|
|
5311
3364
|
},
|
|
5312
3365
|
{
|
|
5313
3366
|
"name": "rental_duration_max_seconds",
|
|
5314
|
-
"docs": [
|
|
5315
|
-
"Maximum rental duration in seconds"
|
|
5316
|
-
],
|
|
3367
|
+
"docs": ["Maximum rental duration in seconds"],
|
|
5317
3368
|
"type": {
|
|
5318
3369
|
"option": "i64"
|
|
5319
3370
|
}
|
|
5320
3371
|
},
|
|
5321
3372
|
{
|
|
5322
3373
|
"name": "atlas_mint",
|
|
5323
|
-
"docs": [
|
|
5324
|
-
"ATLAS token mint address"
|
|
5325
|
-
],
|
|
3374
|
+
"docs": ["ATLAS token mint address"],
|
|
5326
3375
|
"type": {
|
|
5327
3376
|
"option": "pubkey"
|
|
5328
3377
|
}
|
|
5329
3378
|
},
|
|
5330
3379
|
{
|
|
5331
3380
|
"name": "reservations_enabled",
|
|
5332
|
-
"docs": [
|
|
5333
|
-
"Whether reservation system is enabled"
|
|
5334
|
-
],
|
|
3381
|
+
"docs": ["Whether reservation system is enabled"],
|
|
5335
3382
|
"type": {
|
|
5336
3383
|
"option": "bool"
|
|
5337
3384
|
}
|
|
5338
3385
|
},
|
|
5339
3386
|
{
|
|
5340
3387
|
"name": "points_per_day",
|
|
5341
|
-
"docs": [
|
|
5342
|
-
"Capture points awarded per day of rental"
|
|
5343
|
-
],
|
|
3388
|
+
"docs": ["Capture points awarded per day of rental"],
|
|
5344
3389
|
"type": {
|
|
5345
3390
|
"option": "u64"
|
|
5346
3391
|
}
|
|
5347
3392
|
},
|
|
5348
3393
|
{
|
|
5349
3394
|
"name": "cancellation_penalty",
|
|
5350
|
-
"docs": [
|
|
5351
|
-
"Points penalty for cancelling a rental"
|
|
5352
|
-
],
|
|
3395
|
+
"docs": ["Points penalty for cancelling a rental"],
|
|
5353
3396
|
"type": {
|
|
5354
3397
|
"option": "u64"
|
|
5355
3398
|
}
|
|
5356
3399
|
},
|
|
5357
3400
|
{
|
|
5358
3401
|
"name": "min_capture_threshold",
|
|
5359
|
-
"docs": [
|
|
5360
|
-
"Minimum points needed to capture a flag"
|
|
5361
|
-
],
|
|
3402
|
+
"docs": ["Minimum points needed to capture a flag"],
|
|
5362
3403
|
"type": {
|
|
5363
3404
|
"option": "u64"
|
|
5364
3405
|
}
|
|
5365
3406
|
},
|
|
5366
3407
|
{
|
|
5367
3408
|
"name": "weight_base",
|
|
5368
|
-
"docs": [
|
|
5369
|
-
"Base for logarithmic weight calculation"
|
|
5370
|
-
],
|
|
3409
|
+
"docs": ["Base for logarithmic weight calculation"],
|
|
5371
3410
|
"type": {
|
|
5372
3411
|
"option": "u32"
|
|
5373
3412
|
}
|
|
5374
3413
|
},
|
|
5375
3414
|
{
|
|
5376
3415
|
"name": "weight_multiplier",
|
|
5377
|
-
"docs": [
|
|
5378
|
-
"Multiplier for weight calculation"
|
|
5379
|
-
],
|
|
3416
|
+
"docs": ["Multiplier for weight calculation"],
|
|
5380
3417
|
"type": {
|
|
5381
3418
|
"option": "f32"
|
|
5382
3419
|
}
|
|
5383
3420
|
},
|
|
5384
3421
|
{
|
|
5385
3422
|
"name": "max_weight",
|
|
5386
|
-
"docs": [
|
|
5387
|
-
"Maximum weight value"
|
|
5388
|
-
],
|
|
3423
|
+
"docs": ["Maximum weight value"],
|
|
5389
3424
|
"type": {
|
|
5390
3425
|
"option": "u8"
|
|
5391
3426
|
}
|
|
5392
3427
|
},
|
|
5393
3428
|
{
|
|
5394
3429
|
"name": "capture_rate_bps",
|
|
5395
|
-
"docs": [
|
|
5396
|
-
"Rate increase in basis points after capture (10000 = 100%, 11000 = 110%)"
|
|
5397
|
-
],
|
|
3430
|
+
"docs": ["Rate increase in basis points after capture (10000 = 100%, 11000 = 110%)"],
|
|
5398
3431
|
"type": {
|
|
5399
3432
|
"option": "u64"
|
|
5400
3433
|
}
|
|
5401
3434
|
},
|
|
5402
3435
|
{
|
|
5403
3436
|
"name": "atlas_per_point",
|
|
5404
|
-
"docs": [
|
|
5405
|
-
"ATLAS lamports per point equivalent for reservation bidding"
|
|
5406
|
-
],
|
|
3437
|
+
"docs": ["ATLAS lamports per point equivalent for reservation bidding"],
|
|
5407
3438
|
"type": {
|
|
5408
3439
|
"option": "u64"
|
|
5409
3440
|
}
|
|
@@ -5435,16 +3466,12 @@
|
|
|
5435
3466
|
"fields": [
|
|
5436
3467
|
{
|
|
5437
3468
|
"name": "version",
|
|
5438
|
-
"docs": [
|
|
5439
|
-
"Account version for future migrations"
|
|
5440
|
-
],
|
|
3469
|
+
"docs": ["Account version for future migrations"],
|
|
5441
3470
|
"type": "u32"
|
|
5442
3471
|
},
|
|
5443
3472
|
{
|
|
5444
3473
|
"name": "bump",
|
|
5445
|
-
"docs": [
|
|
5446
|
-
"PDA bump seed"
|
|
5447
|
-
],
|
|
3474
|
+
"docs": ["PDA bump seed"],
|
|
5448
3475
|
"type": "u8"
|
|
5449
3476
|
},
|
|
5450
3477
|
{
|
|
@@ -5456,23 +3483,17 @@
|
|
|
5456
3483
|
},
|
|
5457
3484
|
{
|
|
5458
3485
|
"name": "rate",
|
|
5459
|
-
"docs": [
|
|
5460
|
-
"Rental rate per day in Stardust (100M Stardust = 1 ATLAS)"
|
|
5461
|
-
],
|
|
3486
|
+
"docs": ["Rental rate per day in Stardust (100M Stardust = 1 ATLAS)"],
|
|
5462
3487
|
"type": "u64"
|
|
5463
3488
|
},
|
|
5464
3489
|
{
|
|
5465
3490
|
"name": "duration_min_seconds",
|
|
5466
|
-
"docs": [
|
|
5467
|
-
"Minimum rental duration in seconds"
|
|
5468
|
-
],
|
|
3491
|
+
"docs": ["Minimum rental duration in seconds"],
|
|
5469
3492
|
"type": "i64"
|
|
5470
3493
|
},
|
|
5471
3494
|
{
|
|
5472
3495
|
"name": "duration_max_seconds",
|
|
5473
|
-
"docs": [
|
|
5474
|
-
"Maximum rental duration in seconds"
|
|
5475
|
-
],
|
|
3496
|
+
"docs": ["Maximum rental duration in seconds"],
|
|
5476
3497
|
"type": "i64"
|
|
5477
3498
|
},
|
|
5478
3499
|
{
|
|
@@ -5485,9 +3506,7 @@
|
|
|
5485
3506
|
},
|
|
5486
3507
|
{
|
|
5487
3508
|
"name": "weight",
|
|
5488
|
-
"docs": [
|
|
5489
|
-
"Fleet demand weight (1-5, based on reservation activity)"
|
|
5490
|
-
],
|
|
3509
|
+
"docs": ["Fleet demand weight (1-5, based on reservation activity)"],
|
|
5491
3510
|
"type": "u8"
|
|
5492
3511
|
},
|
|
5493
3512
|
{
|
|
@@ -5500,44 +3519,32 @@
|
|
|
5500
3519
|
},
|
|
5501
3520
|
{
|
|
5502
3521
|
"name": "owner",
|
|
5503
|
-
"docs": [
|
|
5504
|
-
"Fleet owner who receives payments"
|
|
5505
|
-
],
|
|
3522
|
+
"docs": ["Fleet owner who receives payments"],
|
|
5506
3523
|
"type": "pubkey"
|
|
5507
3524
|
},
|
|
5508
3525
|
{
|
|
5509
3526
|
"name": "fleet",
|
|
5510
|
-
"docs": [
|
|
5511
|
-
"Fleet associated with this contract"
|
|
5512
|
-
],
|
|
3527
|
+
"docs": ["Fleet associated with this contract"],
|
|
5513
3528
|
"type": "pubkey"
|
|
5514
3529
|
},
|
|
5515
3530
|
{
|
|
5516
3531
|
"name": "game_id",
|
|
5517
|
-
"docs": [
|
|
5518
|
-
"Game ID for SAGE integration"
|
|
5519
|
-
],
|
|
3532
|
+
"docs": ["Game ID for SAGE integration"],
|
|
5520
3533
|
"type": "pubkey"
|
|
5521
3534
|
},
|
|
5522
3535
|
{
|
|
5523
3536
|
"name": "owner_profile",
|
|
5524
|
-
"docs": [
|
|
5525
|
-
"Owner's Star Atlas game profile"
|
|
5526
|
-
],
|
|
3537
|
+
"docs": ["Owner's Star Atlas game profile"],
|
|
5527
3538
|
"type": "pubkey"
|
|
5528
3539
|
},
|
|
5529
3540
|
{
|
|
5530
3541
|
"name": "active_rental",
|
|
5531
|
-
"docs": [
|
|
5532
|
-
"Active rental PDA address (system_program::ID = empty)"
|
|
5533
|
-
],
|
|
3542
|
+
"docs": ["Active rental PDA address (system_program::ID = empty)"],
|
|
5534
3543
|
"type": "pubkey"
|
|
5535
3544
|
},
|
|
5536
3545
|
{
|
|
5537
3546
|
"name": "queued_rental",
|
|
5538
|
-
"docs": [
|
|
5539
|
-
"Queued rental PDA address (system_program::ID = empty)"
|
|
5540
|
-
],
|
|
3547
|
+
"docs": ["Queued rental PDA address (system_program::ID = empty)"],
|
|
5541
3548
|
"type": "pubkey"
|
|
5542
3549
|
},
|
|
5543
3550
|
{
|
|
@@ -5552,16 +3559,12 @@
|
|
|
5552
3559
|
},
|
|
5553
3560
|
{
|
|
5554
3561
|
"name": "thread",
|
|
5555
|
-
"docs": [
|
|
5556
|
-
"Per-contract automation thread (system_program::ID = no thread)"
|
|
5557
|
-
],
|
|
3562
|
+
"docs": ["Per-contract automation thread (system_program::ID = no thread)"],
|
|
5558
3563
|
"type": "pubkey"
|
|
5559
3564
|
},
|
|
5560
3565
|
{
|
|
5561
3566
|
"name": "trigger",
|
|
5562
|
-
"docs": [
|
|
5563
|
-
"Default trigger for thread settlement"
|
|
5564
|
-
],
|
|
3567
|
+
"docs": ["Default trigger for thread settlement"],
|
|
5565
3568
|
"type": {
|
|
5566
3569
|
"defined": {
|
|
5567
3570
|
"name": "Trigger"
|
|
@@ -5570,23 +3573,17 @@
|
|
|
5570
3573
|
},
|
|
5571
3574
|
{
|
|
5572
3575
|
"name": "managed_token_account",
|
|
5573
|
-
"docs": [
|
|
5574
|
-
"Contract's managed token account (ATA of contract PDA)"
|
|
5575
|
-
],
|
|
3576
|
+
"docs": ["Contract's managed token account (ATA of contract PDA)"],
|
|
5576
3577
|
"type": "pubkey"
|
|
5577
3578
|
},
|
|
5578
3579
|
{
|
|
5579
3580
|
"name": "total_earned",
|
|
5580
|
-
"docs": [
|
|
5581
|
-
"Per-contract ATLAS earned (lifetime total)"
|
|
5582
|
-
],
|
|
3581
|
+
"docs": ["Per-contract ATLAS earned (lifetime total)"],
|
|
5583
3582
|
"type": "u64"
|
|
5584
3583
|
},
|
|
5585
3584
|
{
|
|
5586
3585
|
"name": "owner_claimable",
|
|
5587
|
-
"docs": [
|
|
5588
|
-
"Accumulated ATLAS earned by owner, not yet claimed"
|
|
5589
|
-
],
|
|
3586
|
+
"docs": ["Accumulated ATLAS earned by owner, not yet claimed"],
|
|
5590
3587
|
"type": "u64"
|
|
5591
3588
|
},
|
|
5592
3589
|
{
|
|
@@ -5615,16 +3612,12 @@
|
|
|
5615
3612
|
},
|
|
5616
3613
|
{
|
|
5617
3614
|
"name": "created_at",
|
|
5618
|
-
"docs": [
|
|
5619
|
-
"Timestamp when contract was created"
|
|
5620
|
-
],
|
|
3615
|
+
"docs": ["Timestamp when contract was created"],
|
|
5621
3616
|
"type": "i64"
|
|
5622
3617
|
},
|
|
5623
3618
|
{
|
|
5624
3619
|
"name": "updated_at",
|
|
5625
|
-
"docs": [
|
|
5626
|
-
"Timestamp when contract was last updated"
|
|
5627
|
-
],
|
|
3620
|
+
"docs": ["Timestamp when contract was last updated"],
|
|
5628
3621
|
"type": "i64"
|
|
5629
3622
|
}
|
|
5630
3623
|
]
|
|
@@ -5632,62 +3625,48 @@
|
|
|
5632
3625
|
},
|
|
5633
3626
|
{
|
|
5634
3627
|
"name": "ContractUpdateParams",
|
|
5635
|
-
"docs": [
|
|
5636
|
-
"Parameters for updating contract settings. All fields are optional."
|
|
5637
|
-
],
|
|
3628
|
+
"docs": ["Parameters for updating contract settings. All fields are optional."],
|
|
5638
3629
|
"type": {
|
|
5639
3630
|
"kind": "struct",
|
|
5640
3631
|
"fields": [
|
|
5641
3632
|
{
|
|
5642
3633
|
"name": "rate",
|
|
5643
|
-
"docs": [
|
|
5644
|
-
"Rental rate per day in Stardust"
|
|
5645
|
-
],
|
|
3634
|
+
"docs": ["Rental rate per day in Stardust"],
|
|
5646
3635
|
"type": {
|
|
5647
3636
|
"option": "u64"
|
|
5648
3637
|
}
|
|
5649
3638
|
},
|
|
5650
3639
|
{
|
|
5651
3640
|
"name": "duration_min_seconds",
|
|
5652
|
-
"docs": [
|
|
5653
|
-
"Minimum rental duration in seconds"
|
|
5654
|
-
],
|
|
3641
|
+
"docs": ["Minimum rental duration in seconds"],
|
|
5655
3642
|
"type": {
|
|
5656
3643
|
"option": "i64"
|
|
5657
3644
|
}
|
|
5658
3645
|
},
|
|
5659
3646
|
{
|
|
5660
3647
|
"name": "duration_max_seconds",
|
|
5661
|
-
"docs": [
|
|
5662
|
-
"Maximum rental duration in seconds"
|
|
5663
|
-
],
|
|
3648
|
+
"docs": ["Maximum rental duration in seconds"],
|
|
5664
3649
|
"type": {
|
|
5665
3650
|
"option": "i64"
|
|
5666
3651
|
}
|
|
5667
3652
|
},
|
|
5668
3653
|
{
|
|
5669
3654
|
"name": "cancel_delay_min",
|
|
5670
|
-
"docs": [
|
|
5671
|
-
"Minimum cancellation delay in seconds (0 = instant cancel allowed)"
|
|
5672
|
-
],
|
|
3655
|
+
"docs": ["Minimum cancellation delay in seconds (0 = instant cancel allowed)"],
|
|
5673
3656
|
"type": {
|
|
5674
3657
|
"option": "i64"
|
|
5675
3658
|
}
|
|
5676
3659
|
},
|
|
5677
3660
|
{
|
|
5678
3661
|
"name": "reservations_disabled",
|
|
5679
|
-
"docs": [
|
|
5680
|
-
"Whether reservations are disabled for this contract"
|
|
5681
|
-
],
|
|
3662
|
+
"docs": ["Whether reservations are disabled for this contract"],
|
|
5682
3663
|
"type": {
|
|
5683
3664
|
"option": "bool"
|
|
5684
3665
|
}
|
|
5685
3666
|
},
|
|
5686
3667
|
{
|
|
5687
3668
|
"name": "to_close",
|
|
5688
|
-
"docs": [
|
|
5689
|
-
"Whether the contract is flagged for deferred closure"
|
|
5690
|
-
],
|
|
3669
|
+
"docs": ["Whether the contract is flagged for deferred closure"],
|
|
5691
3670
|
"type": {
|
|
5692
3671
|
"option": "bool"
|
|
5693
3672
|
}
|
|
@@ -5736,9 +3715,7 @@
|
|
|
5736
3715
|
},
|
|
5737
3716
|
{
|
|
5738
3717
|
"name": "Fleet",
|
|
5739
|
-
"docs": [
|
|
5740
|
-
"A SAGE fleet."
|
|
5741
|
-
],
|
|
3718
|
+
"docs": ["A SAGE fleet."],
|
|
5742
3719
|
"type": {
|
|
5743
3720
|
"kind": "struct",
|
|
5744
3721
|
"fields": [
|
|
@@ -5777,10 +3754,7 @@
|
|
|
5777
3754
|
{
|
|
5778
3755
|
"name": "fleet_label",
|
|
5779
3756
|
"type": {
|
|
5780
|
-
"array": [
|
|
5781
|
-
"u8",
|
|
5782
|
-
32
|
|
5783
|
-
]
|
|
3757
|
+
"array": ["u8", 32]
|
|
5784
3758
|
}
|
|
5785
3759
|
},
|
|
5786
3760
|
{
|
|
@@ -5832,9 +3806,7 @@
|
|
|
5832
3806
|
},
|
|
5833
3807
|
{
|
|
5834
3808
|
"name": "MiscStats",
|
|
5835
|
-
"docs": [
|
|
5836
|
-
"A ship's miscellaneous stats"
|
|
5837
|
-
],
|
|
3809
|
+
"docs": ["A ship's miscellaneous stats"],
|
|
5838
3810
|
"type": {
|
|
5839
3811
|
"kind": "struct",
|
|
5840
3812
|
"fields": [
|
|
@@ -5887,9 +3859,7 @@
|
|
|
5887
3859
|
},
|
|
5888
3860
|
{
|
|
5889
3861
|
"name": "MovementStats",
|
|
5890
|
-
"docs": [
|
|
5891
|
-
"A ship's movement stats"
|
|
5892
|
-
],
|
|
3862
|
+
"docs": ["A ship's movement stats"],
|
|
5893
3863
|
"type": {
|
|
5894
3864
|
"kind": "struct",
|
|
5895
3865
|
"fields": [
|
|
@@ -5926,9 +3896,7 @@
|
|
|
5926
3896
|
},
|
|
5927
3897
|
{
|
|
5928
3898
|
"name": "OptionalNonSystemPubkey",
|
|
5929
|
-
"docs": [
|
|
5930
|
-
"A pubkey sized option that is none if set to the system program."
|
|
5931
|
-
],
|
|
3899
|
+
"docs": ["A pubkey sized option that is none if set to the system program."],
|
|
5932
3900
|
"type": {
|
|
5933
3901
|
"kind": "struct",
|
|
5934
3902
|
"fields": [
|
|
@@ -6132,123 +4100,89 @@
|
|
|
6132
4100
|
"fields": [
|
|
6133
4101
|
{
|
|
6134
4102
|
"name": "version",
|
|
6135
|
-
"docs": [
|
|
6136
|
-
"Account version for future migrations"
|
|
6137
|
-
],
|
|
4103
|
+
"docs": ["Account version for future migrations"],
|
|
6138
4104
|
"type": "u32"
|
|
6139
4105
|
},
|
|
6140
4106
|
{
|
|
6141
4107
|
"name": "bump",
|
|
6142
|
-
"docs": [
|
|
6143
|
-
"PDA bump seed"
|
|
6144
|
-
],
|
|
4108
|
+
"docs": ["PDA bump seed"],
|
|
6145
4109
|
"type": "u8"
|
|
6146
4110
|
},
|
|
6147
4111
|
{
|
|
6148
4112
|
"name": "borrower",
|
|
6149
|
-
"docs": [
|
|
6150
|
-
"Borrower public key (receives refunds if cancelled)"
|
|
6151
|
-
],
|
|
4113
|
+
"docs": ["Borrower public key (receives refunds if cancelled)"],
|
|
6152
4114
|
"type": "pubkey"
|
|
6153
4115
|
},
|
|
6154
4116
|
{
|
|
6155
4117
|
"name": "borrower_state",
|
|
6156
|
-
"docs": [
|
|
6157
|
-
"BorrowerState PDA for this rental (single source of borrower info)"
|
|
6158
|
-
],
|
|
4118
|
+
"docs": ["BorrowerState PDA for this rental (single source of borrower info)"],
|
|
6159
4119
|
"type": "pubkey"
|
|
6160
4120
|
},
|
|
6161
4121
|
{
|
|
6162
4122
|
"name": "borrower_profile",
|
|
6163
|
-
"docs": [
|
|
6164
|
-
"Borrower's SAGE profile (stored for frontend convenience)"
|
|
6165
|
-
],
|
|
4123
|
+
"docs": ["Borrower's SAGE profile (stored for frontend convenience)"],
|
|
6166
4124
|
"type": "pubkey"
|
|
6167
4125
|
},
|
|
6168
4126
|
{
|
|
6169
4127
|
"name": "contract",
|
|
6170
|
-
"docs": [
|
|
6171
|
-
"Reference to the rental contract"
|
|
6172
|
-
],
|
|
4128
|
+
"docs": ["Reference to the rental contract"],
|
|
6173
4129
|
"type": "pubkey"
|
|
6174
4130
|
},
|
|
6175
4131
|
{
|
|
6176
4132
|
"name": "rate",
|
|
6177
|
-
"docs": [
|
|
6178
|
-
"Gross rate per day in Stardust (= contract.rate at accept/reserve time)"
|
|
6179
|
-
],
|
|
4133
|
+
"docs": ["Gross rate per day in Stardust (= contract.rate at accept/reserve time)"],
|
|
6180
4134
|
"type": "u64"
|
|
6181
4135
|
},
|
|
6182
4136
|
{
|
|
6183
4137
|
"name": "last_payment",
|
|
6184
|
-
"docs": [
|
|
6185
|
-
"Timestamp of last pro-rata payment settlement (base for next calculation)"
|
|
6186
|
-
],
|
|
4138
|
+
"docs": ["Timestamp of last pro-rata payment settlement (base for next calculation)"],
|
|
6187
4139
|
"type": "i64"
|
|
6188
4140
|
},
|
|
6189
4141
|
{
|
|
6190
4142
|
"name": "escrow",
|
|
6191
|
-
"docs": [
|
|
6192
|
-
"ATLAS deposited as escrow for this rental (in stardust)"
|
|
6193
|
-
],
|
|
4143
|
+
"docs": ["ATLAS deposited as escrow for this rental (in stardust)"],
|
|
6194
4144
|
"type": "u64"
|
|
6195
4145
|
},
|
|
6196
4146
|
{
|
|
6197
4147
|
"name": "start_time",
|
|
6198
|
-
"docs": [
|
|
6199
|
-
"Rental start timestamp"
|
|
6200
|
-
],
|
|
4148
|
+
"docs": ["Rental start timestamp"],
|
|
6201
4149
|
"type": "i64"
|
|
6202
4150
|
},
|
|
6203
4151
|
{
|
|
6204
4152
|
"name": "end_time",
|
|
6205
|
-
"docs": [
|
|
6206
|
-
"Rental end timestamp"
|
|
6207
|
-
],
|
|
4153
|
+
"docs": ["Rental end timestamp"],
|
|
6208
4154
|
"type": "i64"
|
|
6209
4155
|
},
|
|
6210
4156
|
{
|
|
6211
4157
|
"name": "service_fee",
|
|
6212
|
-
"docs": [
|
|
6213
|
-
"Total fee target for post-rental collection (total * fee_bps / base_bps)"
|
|
6214
|
-
],
|
|
4158
|
+
"docs": ["Total fee target for post-rental collection (total * fee_bps / base_bps)"],
|
|
6215
4159
|
"type": "u64"
|
|
6216
4160
|
},
|
|
6217
4161
|
{
|
|
6218
4162
|
"name": "fee_bps",
|
|
6219
|
-
"docs": [
|
|
6220
|
-
"Fee basis points snapshotted from config (for cancel proration)"
|
|
6221
|
-
],
|
|
4163
|
+
"docs": ["Fee basis points snapshotted from config (for cancel proration)"],
|
|
6222
4164
|
"type": "u16"
|
|
6223
4165
|
},
|
|
6224
4166
|
{
|
|
6225
4167
|
"name": "referrer",
|
|
6226
|
-
"docs": [
|
|
6227
|
-
"Referrer affiliate member for deferred fee tracking"
|
|
6228
|
-
],
|
|
4168
|
+
"docs": ["Referrer affiliate member for deferred fee tracking"],
|
|
6229
4169
|
"type": {
|
|
6230
4170
|
"option": "pubkey"
|
|
6231
4171
|
}
|
|
6232
4172
|
},
|
|
6233
4173
|
{
|
|
6234
4174
|
"name": "discount_bps",
|
|
6235
|
-
"docs": [
|
|
6236
|
-
"Discount basis points verified at accept time (0 = no discount)"
|
|
6237
|
-
],
|
|
4175
|
+
"docs": ["Discount basis points verified at accept time (0 = no discount)"],
|
|
6238
4176
|
"type": "u16"
|
|
6239
4177
|
},
|
|
6240
4178
|
{
|
|
6241
4179
|
"name": "bid_points",
|
|
6242
|
-
"docs": [
|
|
6243
|
-
"Points bid for reservation contest comparison (0 if ATLAS bid)"
|
|
6244
|
-
],
|
|
4180
|
+
"docs": ["Points bid for reservation contest comparison (0 if ATLAS bid)"],
|
|
6245
4181
|
"type": "u64"
|
|
6246
4182
|
},
|
|
6247
4183
|
{
|
|
6248
4184
|
"name": "bid_atlas",
|
|
6249
|
-
"docs": [
|
|
6250
|
-
"ATLAS premium bid for reservation contest (0 if points bid)"
|
|
6251
|
-
],
|
|
4185
|
+
"docs": ["ATLAS premium bid for reservation contest (0 if points bid)"],
|
|
6252
4186
|
"type": "u64"
|
|
6253
4187
|
},
|
|
6254
4188
|
{
|
|
@@ -6264,9 +4198,7 @@
|
|
|
6264
4198
|
},
|
|
6265
4199
|
{
|
|
6266
4200
|
"name": "status",
|
|
6267
|
-
"docs": [
|
|
6268
|
-
"Rental lifecycle status (Available, Queued, Active)"
|
|
6269
|
-
],
|
|
4201
|
+
"docs": ["Rental lifecycle status (Available, Queued, Active)"],
|
|
6270
4202
|
"type": {
|
|
6271
4203
|
"defined": {
|
|
6272
4204
|
"name": "RentalStatus"
|
|
@@ -6282,9 +4214,7 @@
|
|
|
6282
4214
|
},
|
|
6283
4215
|
{
|
|
6284
4216
|
"name": "created_at",
|
|
6285
|
-
"docs": [
|
|
6286
|
-
"Timestamp when rental was created"
|
|
6287
|
-
],
|
|
4217
|
+
"docs": ["Timestamp when rental was created"],
|
|
6288
4218
|
"type": "i64"
|
|
6289
4219
|
}
|
|
6290
4220
|
]
|
|
@@ -6292,9 +4222,7 @@
|
|
|
6292
4222
|
},
|
|
6293
4223
|
{
|
|
6294
4224
|
"name": "RentalStatus",
|
|
6295
|
-
"docs": [
|
|
6296
|
-
"Rental lifecycle status"
|
|
6297
|
-
],
|
|
4225
|
+
"docs": ["Rental lifecycle status"],
|
|
6298
4226
|
"type": {
|
|
6299
4227
|
"kind": "enum",
|
|
6300
4228
|
"variants": [
|
|
@@ -6362,9 +4290,7 @@
|
|
|
6362
4290
|
},
|
|
6363
4291
|
{
|
|
6364
4292
|
"name": "ShipCounts",
|
|
6365
|
-
"docs": [
|
|
6366
|
-
"Ship counts for a fleet."
|
|
6367
|
-
],
|
|
4293
|
+
"docs": ["Ship counts for a fleet."],
|
|
6368
4294
|
"type": {
|
|
6369
4295
|
"kind": "struct",
|
|
6370
4296
|
"fields": [
|
|
@@ -6413,9 +4339,7 @@
|
|
|
6413
4339
|
},
|
|
6414
4340
|
{
|
|
6415
4341
|
"name": "ShipStats",
|
|
6416
|
-
"docs": [
|
|
6417
|
-
"A ship's stats"
|
|
6418
|
-
],
|
|
4342
|
+
"docs": ["A ship's stats"],
|
|
6419
4343
|
"type": {
|
|
6420
4344
|
"kind": "struct",
|
|
6421
4345
|
"fields": [
|
|
@@ -6508,9 +4432,7 @@
|
|
|
6508
4432
|
},
|
|
6509
4433
|
{
|
|
6510
4434
|
"name": "Thread",
|
|
6511
|
-
"docs": [
|
|
6512
|
-
"Tracks the current state of a transaction thread on Solana."
|
|
6513
|
-
],
|
|
4435
|
+
"docs": ["Tracks the current state of a transaction thread on Solana."],
|
|
6514
4436
|
"type": {
|
|
6515
4437
|
"kind": "struct",
|
|
6516
4438
|
"fields": [
|
|
@@ -6603,9 +4525,7 @@
|
|
|
6603
4525
|
},
|
|
6604
4526
|
{
|
|
6605
4527
|
"name": "Trigger",
|
|
6606
|
-
"docs": [
|
|
6607
|
-
"The triggering conditions of a thread."
|
|
6608
|
-
],
|
|
4528
|
+
"docs": ["The triggering conditions of a thread."],
|
|
6609
4529
|
"type": {
|
|
6610
4530
|
"kind": "enum",
|
|
6611
4531
|
"variants": [
|
|
@@ -6614,23 +4534,17 @@
|
|
|
6614
4534
|
"fields": [
|
|
6615
4535
|
{
|
|
6616
4536
|
"name": "address",
|
|
6617
|
-
"docs": [
|
|
6618
|
-
"The address of the account to monitor."
|
|
6619
|
-
],
|
|
4537
|
+
"docs": ["The address of the account to monitor."],
|
|
6620
4538
|
"type": "pubkey"
|
|
6621
4539
|
},
|
|
6622
4540
|
{
|
|
6623
4541
|
"name": "offset",
|
|
6624
|
-
"docs": [
|
|
6625
|
-
"The byte offset of the account data to monitor."
|
|
6626
|
-
],
|
|
4542
|
+
"docs": ["The byte offset of the account data to monitor."],
|
|
6627
4543
|
"type": "u64"
|
|
6628
4544
|
},
|
|
6629
4545
|
{
|
|
6630
4546
|
"name": "size",
|
|
6631
|
-
"docs": [
|
|
6632
|
-
"The size of the byte slice to monitor (must be less than 1kb)"
|
|
6633
|
-
],
|
|
4547
|
+
"docs": ["The size of the byte slice to monitor (must be less than 1kb)"],
|
|
6634
4548
|
"type": "u64"
|
|
6635
4549
|
}
|
|
6636
4550
|
]
|
|
@@ -6640,9 +4554,7 @@
|
|
|
6640
4554
|
"fields": [
|
|
6641
4555
|
{
|
|
6642
4556
|
"name": "jitter",
|
|
6643
|
-
"docs": [
|
|
6644
|
-
"Optional jitter in seconds to prevent thundering herd (0 = no jitter)"
|
|
6645
|
-
],
|
|
4557
|
+
"docs": ["Optional jitter in seconds to prevent thundering herd (0 = no jitter)"],
|
|
6646
4558
|
"type": "u64"
|
|
6647
4559
|
}
|
|
6648
4560
|
]
|
|
@@ -6668,23 +4580,17 @@
|
|
|
6668
4580
|
"fields": [
|
|
6669
4581
|
{
|
|
6670
4582
|
"name": "seconds",
|
|
6671
|
-
"docs": [
|
|
6672
|
-
"Interval in seconds between executions"
|
|
6673
|
-
],
|
|
4583
|
+
"docs": ["Interval in seconds between executions"],
|
|
6674
4584
|
"type": "i64"
|
|
6675
4585
|
},
|
|
6676
4586
|
{
|
|
6677
4587
|
"name": "skippable",
|
|
6678
|
-
"docs": [
|
|
6679
|
-
"Boolean value indicating whether triggering moments may be skipped"
|
|
6680
|
-
],
|
|
4588
|
+
"docs": ["Boolean value indicating whether triggering moments may be skipped"],
|
|
6681
4589
|
"type": "bool"
|
|
6682
4590
|
},
|
|
6683
4591
|
{
|
|
6684
4592
|
"name": "jitter",
|
|
6685
|
-
"docs": [
|
|
6686
|
-
"Optional jitter in seconds to prevent thundering herd (0 = no jitter)"
|
|
6687
|
-
],
|
|
4593
|
+
"docs": ["Optional jitter in seconds to prevent thundering herd (0 = no jitter)"],
|
|
6688
4594
|
"type": "u64"
|
|
6689
4595
|
}
|
|
6690
4596
|
]
|
|
@@ -6741,9 +4647,7 @@
|
|
|
6741
4647
|
"constants": [
|
|
6742
4648
|
{
|
|
6743
4649
|
"name": "THREAD_SEED",
|
|
6744
|
-
"docs": [
|
|
6745
|
-
"Seed for payment thread PDAs (Antegen/Clockwork)"
|
|
6746
|
-
],
|
|
4650
|
+
"docs": ["Seed for payment thread PDAs (Antegen/Clockwork)"],
|
|
6747
4651
|
"type": "bytes",
|
|
6748
4652
|
"value": "[116, 104, 114, 101, 97, 100]"
|
|
6749
4653
|
}
|