forked from Jagadeeshftw/grainlify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram-escrow-manifest.json
More file actions
1867 lines (1867 loc) · 62.1 KB
/
Copy pathprogram-escrow-manifest.json
File metadata and controls
1867 lines (1867 loc) · 62.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "./contract-manifest-schema.json",
"contract_name": "ProgramEscrowContract",
"contract_purpose": "Handles hackathon and program prize pools with batch payouts, dependency management, circuit breaker protection, and comprehensive monitoring",
"version": {
"current": "2.8.0",
"schema": "1.0.0",
"history": [
{
"version": "1.0.0",
"release_date": "2024-01-01",
"changes": [
"Initial release with basic program escrow",
"Single program support",
"Basic batch payout functionality"
]
},
{
"version": "2.0.0",
"release_date": "2024-06-01",
"changes": [
"Added multi-program support with registry",
"Enhanced batch operations with atomicity",
"Added dependency management system",
"Implemented circuit breaker for error recovery",
"Enhanced monitoring and analytics",
"Added claim period functionality",
"Improved fee configuration",
"Added granular pause controls"
]
},
{
"version": "2.1.0",
"release_date": "2026-04-22",
"changes": [
"Added deterministic spend-threshold enforcement for single and batch payouts",
"Added explicit spend-threshold configuration and retrieval entrypoints",
"Reused per-program persistent config storage for upgrade-safe threshold state"
]
},
{
"version": "2.2.0",
"release_date": "2026-04-22",
"changes": [
"Hardened history pagination with deterministic limit validation and explicit range errors",
"Centralized pagination behavior across payout, schedule, and release history queries",
"Added upgrade-safe pagination config storage with backward-compatible defaults"
]
},
{
"version": "2.3.0",
"release_date": "2026-04-23",
"changes": [
"Hardened spend-limit threshold enforcement: enforce_spend_threshold now returns Result and emits SpendLimitExceededEvent before any token transfer",
"Added SpendLimitSetEvent audit event emitted after every set_program_spend_threshold call",
"Added SpendLimitExceededEvent audit event emitted on every threshold rejection",
"Added SpendLimitSchemaVersionSet audit event emitted on init for upgrade-safe schema tracking",
"Added SpendLimitSchemaVersion upgrade-safe storage key to instance storage",
"Added get_spend_limit_schema_version view entrypoint",
"Added ContractError::SpendLimitExceeded (code 904) to canonical error enum"
]
},
{
"version": "2.5.0",
"release_date": "2026-04-23",
"changes": [
"Added token allowlist enforcement: only explicitly permitted token contract addresses may be used in init_program / initialize_program when the allowlist is non-empty",
"Empty allowlist disables enforcement (backward-compatible default — any token accepted)",
"Added add_allowed_token(token) admin entrypoint — adds token to allowlist, emits TokenAllowlistUpdatedEvent(added=true)",
"Added remove_allowed_token(token) admin entrypoint — removes token from allowlist, emits TokenAllowlistUpdatedEvent(added=false); removing last token re-disables enforcement",
"Added is_token_allowed(token) view entrypoint — returns true when list is empty or token is listed",
"Added get_allowed_tokens() view entrypoint — returns current allowlist snapshot",
"Added get_token_allowlist_schema_version() view entrypoint — returns TOKEN_ALLOWLIST_SCHEMA_VERSION_V1 (1) for upgraded contracts, 0 for legacy",
"Added TokenAllowlistUpdatedEvent audit event (version, token, added, updated_by, timestamp) emitted on every add/remove",
"Added TokenRejectedEvent audit event (version, token, program_id, timestamp) emitted before panic on rejected init_program calls",
"Added TokenAllowlistSchemaVersionSet audit event emitted once during initialize_contract for upgrade-safe schema tracking",
"Added DataKey::TokenAllowlist and DataKey::TokenAllowlistSchemaVersion upgrade-safe storage keys",
"Added TOKEN_ALLOWLIST_SCHEMA_VERSION_V1 constant (value: 1)",
"Added ContractError::TokenNotAllowed (code 1100), TokenAlreadyAllowed (1101), TokenNotInAllowlist (1102) to canonical error enum",
"Deterministic error ordering preserved: allowlist check runs before any state mutation in init_program",
"Added 22 targeted tests in test_token_allowlist.rs covering all branches, event fields, admin guards, and edge cases"
]
},
{
"version": "2.7.0",
"release_date": "2026-04-24",
"changes": [
"Circuit breaker enforcement moved to step 3c — before authorization and all business logic — in both single_payout_internal and batch_payout_internal",
"Deterministic rejection: an open circuit now blocks payouts before balance, spend-threshold, or spending-window checks, producing stable client-observable failures",
"Added get_circuit_breaker_status view entrypoint returning CircuitBreakerStatus snapshot from persistent storage",
"Upgrade-safe: get_circuit_breaker_status returns safe defaults for legacy deployments with no circuit breaker state",
"Added ContractError::CircuitBreakerOpen (code 800) as the canonical error for circuit-open rejections",
"Removed duplicate step-7 circuit breaker block from batch_payout_internal",
"Updated validation-precedence comments in both payout internals to reflect new ordering"
]
},
{
"version": "2.6.0",
"release_date": "2026-04-24",
"changes": [
"Added query_payouts_by_recipient: paginated payout history filtered by recipient",
"Added query_payouts_by_amount: paginated payout history filtered by amount range",
"Added query_payouts_by_timestamp: paginated payout history filtered by timestamp range",
"Added query_schedules_by_recipient: paginated release schedules filtered by recipient",
"Added query_schedules_by_status: paginated release schedules filtered by status",
"Added query_releases_by_recipient: paginated release history filtered by recipient",
"Pagination enforces limit 1\u2013200 via HistoryPaginationConfig with upgrade-safe storage",
"Implemented batch_lock and batch_release with full atomicity and deterministic ordering",
"Hardened batch operations with explicit error handling and reentrancy protection",
"Fixed syntax errors in BatchError definition",
"Added BatchFundsLocked and BatchFundsReleased audit events",
"Enhanced test coverage for batch edge cases"
]
},
{
"version": "2.8.0",
"release_date": "2026-04-25",
"changes": [
"Added scheduled releases trigger with deterministic behavior: all due schedules processed in ascending schedule_id order for replay-identical execution",
"Implemented upgrade-safe trigger execution storage: ReleaseTriggerSchemaVersion tracks schema evolution and enables backward-compatible migrations",
"Added explicit release trigger error codes: ReleaseTriggerFailed (905), NoSchedulesDue (906), DeterminismViolation (907)",
"Added get_release_trigger_schema_version() view entrypoint: returns RELEASE_TRIGGER_SCHEMA_VERSION_V1 (1) for upgraded contracts, 0 for legacy",
"Enhanced trigger_program_releases_internal documentation with deterministic behavior guarantees, explicit error semantics, and upgrade-safe storage notes",
"Maintained backward compatibility: legacy contracts without trigger schema version default to 0 and continue operating",
"Circuit breaker enforcement integrated into trigger path before all business logic for consistent error precedence",
"All trigger events include version and timestamp for audit trail: ScheduleReleasedEvent, ScheduleTriggerSummaryEvent"
]
}
]
},
"entrypoints": {
"public": [
{
"name": "init_program",
"description": "Initialize a new program with authorized payout key",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Unique program identifier"
},
{
"name": "authorized_payout_key",
"type": "Address",
"description": "Address authorized to make payouts"
},
{
"name": "token_address",
"type": "Address",
"description": "Token contract address"
}
],
"returns": {
"type": "ProgramData",
"description": "Initialized program data"
},
"authorization": "signer",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "initialize_program",
"description": "Initialize program with metadata and fee configuration",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Unique program identifier"
},
{
"name": "authorized_payout_key",
"type": "Address",
"description": "Address authorized to make payouts"
},
{
"name": "token_address",
"type": "Address",
"description": "Token contract address"
},
{
"name": "metadata",
"type": "String",
"description": "Program metadata",
"optional": true
},
{
"name": "fee_config",
"type": "FeeConfig",
"description": "Fee configuration",
"optional": true
}
],
"returns": {
"type": "ProgramData",
"description": "Initialized program data"
},
"authorization": "signer",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "batch_initialize_programs",
"description": "Initialize multiple programs in one transaction",
"parameters": [
{
"name": "items",
"type": "Vec<ProgramInitItem>",
"description": "Array of program initialization requests"
}
],
"returns": {
"type": "u32",
"description": "Number of successfully initialized programs"
},
"authorization": "signer",
"pausable": true,
"gas_estimate": "high"
},
{
"name": "lock_program_funds",
"description": "Lock prize pool funds for a program",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier",
"optional": true
},
{
"name": "amount",
"type": "i128",
"description": "Amount to lock"
}
],
"returns": {
"type": "ProgramData",
"description": "Updated program data"
},
"authorization": "signer",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "batch_payout",
"description": "Distribute prizes to multiple winners with optional idempotency key for retry safety",
"parameters": [
{
"name": "winners",
"type": "Vec<Address>",
"description": "Array of winner addresses"
},
{
"name": "amounts",
"type": "Vec<i128>",
"description": "Corresponding prize amounts"
},
{
"name": "idempotency_key",
"type": "Option<String>",
"description": "Optional idempotency key for deterministic retry behavior",
"optional": true
}
],
"returns": {
"type": "Vec<PayoutRecord>",
"description": "Array of payout records"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "high"
},
{
"name": "try_batch_payout",
"description": "Typed batch payout — returns Result<ProgramData, BatchPayoutError> instead of panicking. All pre-validation (zero amounts, duplicates, overflow) runs before any token transfer.",
"parameters": [
{
"name": "recipients",
"type": "Vec<Address>",
"description": "Array of recipient addresses (must be unique)"
},
{
"name": "amounts",
"type": "Vec<i128>",
"description": "Corresponding payout amounts (all must be > 0)"
}
],
"returns": {
"type": "Result<ProgramData, BatchPayoutError>",
"description": "Updated program data on success, typed error on failure"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "high"
},
{
"name": "single_payout",
"description": "Distribute prize to single winner with optional idempotency key for retry safety",
"parameters": [
{
"name": "winner",
"type": "Address",
"description": "Winner address"
},
{
"name": "amount",
"type": "i128",
"description": "Prize amount"
},
{
"name": "idempotency_key",
"type": "Option<String>",
"description": "Optional idempotency key for deterministic retry behavior",
"optional": true
}
],
"returns": {
"type": "PayoutRecord",
"description": "Payout record"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "single_payout_idempotent",
"description": "Distribute prize to single winner with idempotency key. Panics with 'Payout already processed' if the key was already used for a successful payout — callers should treat this as a success.",
"parameters": [
{
"name": "idempotency_key",
"type": "String",
"description": "Caller-supplied opaque string used to deduplicate payout submissions. Must be unique per logical payout."
},
{
"name": "recipient",
"type": "Address",
"description": "Winner address"
},
{
"name": "amount",
"type": "i128",
"description": "Prize amount"
}
],
"returns": {
"type": "ProgramData",
"description": "Updated program data"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "medium",
"security_notes": [
"Idempotency check runs before all state reads — duplicate submissions are rejected cheaply.",
"Key is stored in persistent storage after all token transfers succeed (CEI ordering).",
"Persistent storage ensures keys survive contract upgrades."
]
},
{
"name": "batch_payout_idempotent",
"description": "Distribute prizes to multiple winners with idempotency key. Panics with 'Payout already processed' if the key was already used for a successful batch payout.",
"parameters": [
{
"name": "idempotency_key",
"type": "String",
"description": "Caller-supplied opaque string used to deduplicate batch payout submissions."
},
{
"name": "recipients",
"type": "Vec<Address>",
"description": "Array of winner addresses"
},
{
"name": "amounts",
"type": "Vec<i128>",
"description": "Corresponding prize amounts"
}
],
"returns": {
"type": "ProgramData",
"description": "Updated program data"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "high",
"security_notes": [
"Idempotency check runs before all state reads — duplicate submissions are rejected cheaply.",
"Key is stored in persistent storage after all token transfers succeed (CEI ordering).",
"Persistent storage ensures keys survive contract upgrades."
]
},
{
"name": "set_program_spend_threshold",
"description": "Set per-program maximum spend for a single payout operation (single amount or batch total)",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
},
{
"name": "threshold_amount",
"type": "i128",
"description": "Maximum allowed gross spend per payout operation"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "set_program_spending_limit",
"description": "Set or update the per-window spending limit for a program. Only the program's authorized_payout_key may call this.",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
},
{
"name": "window_size",
"type": "u64",
"description": "Window length in seconds (must be > 0)"
},
{
"name": "max_amount",
"type": "i128",
"description": "Maximum total releasable in one window (must be >= 0)"
},
{
"name": "enabled",
"type": "bool",
"description": "If false, config is stored but not enforced"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "authorized_payout_key",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "set_program_dependencies",
"description": "Set dependencies for a program",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
},
{
"name": "dependency_ids",
"type": "Vec<String>",
"description": "List of dependency IDs"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "clear_program_dependencies",
"description": "Clear all dependencies for a program",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "set_dependency_status",
"description": "Set status for a dependency",
"parameters": [
{
"name": "dependency_id",
"type": "String",
"description": "Dependency identifier"
},
{
"name": "status",
"type": "DependencyStatus",
"description": "Dependency status"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "set_paused",
"description": "Update pause flags for operations",
"parameters": [
{
"name": "lock",
"type": "Option<bool>",
"description": "Pause lock operations",
"optional": true
},
{
"name": "release",
"type": "Option<bool>",
"description": "Pause release operations",
"optional": true
},
{
"name": "refund",
"type": "Option<bool>",
"description": "Pause refund operations",
"optional": true
},
{
"name": "reason",
"type": "Option<String>",
"description": "Reason for pausing",
"optional": true
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "emergency_withdraw",
"description": "Emergency withdraw all program funds",
"parameters": [
{
"name": "target",
"type": "Address",
"description": "Address to receive funds"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "high"
}
],
"view": [
{
"name": "program_exists",
"description": "Check if any program exists",
"parameters": [],
"returns": {
"type": "bool",
"description": "True if program exists"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "program_exists_by_id",
"description": "Check if specific program exists",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
}
],
"returns": {
"type": "bool",
"description": "True if program exists"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_program_dependencies",
"description": "Get dependencies for a program",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
}
],
"returns": {
"type": "Vec<String>",
"description": "List of dependency IDs"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_dependency_status",
"description": "Get status of a dependency",
"parameters": [
{
"name": "dependency_id",
"type": "String",
"description": "Dependency identifier"
}
],
"returns": {
"type": "DependencyStatus",
"description": "Dependency status"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_pause_flags",
"description": "Get current pause status",
"parameters": [],
"returns": {
"type": "PauseFlags",
"description": "Pause configuration"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_program_spend_threshold",
"description": "Get the configured per-program spend threshold",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
}
],
"returns": {
"type": "i128",
"description": "Maximum allowed gross spend per payout operation"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_spend_limit_schema_version",
"description": "Return the spend-limit storage schema version written during init. Returns 0 on legacy deployments.",
"parameters": [],
"returns": {
"type": "u32",
"description": "Schema version (1 = current; 0 = legacy pre-v2.3)"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_program_spending_limit",
"description": "Return the per-window spending limit configuration for a program, or None if not set.",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
}
],
"returns": {
"type": "Option<ProgramSpendingConfig>",
"description": "Spending limit config (window_size, max_amount, enabled), or None"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_program_spending_state",
"description": "Return the current window state for a program's spending limit, or None if no payout has occurred yet.",
"parameters": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
}
],
"returns": {
"type": "Option<ProgramSpendingState>",
"description": "Window state (window_start, amount_released), or None"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_program_release_schedules",
"description": "Get release schedules for all programs",
"parameters": [],
"returns": {
"type": "Vec<ProgramReleaseSchedule>",
"description": "Array of release schedules"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "health_check",
"description": "Get contract health status",
"parameters": [],
"returns": {
"type": "HealthStatus",
"description": "Health information"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_analytics",
"description": "Get usage analytics",
"parameters": [],
"returns": {
"type": "Analytics",
"description": "Analytics data"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_state_snapshot",
"description": "Get current state snapshot",
"parameters": [],
"returns": {
"type": "StateSnapshot",
"description": "State snapshot data"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_performance_stats",
"description": "Get performance stats for a function",
"parameters": [
{
"name": "function_name",
"type": "Symbol",
"description": "Function name to get stats for"
}
],
"returns": {
"type": "PerformanceStats",
"description": "Performance statistics"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "query_payouts_by_recipient",
"description": "Paginated payout history filtered by recipient address",
"parameters": [
{
"name": "recipient",
"type": "Address",
"description": "Recipient address to filter by"
},
{
"name": "offset",
"type": "u32",
"description": "Number of matching records to skip"
},
{
"name": "limit",
"type": "u32",
"description": "Maximum records to return (1\u2013200)"
}
],
"returns": {
"type": "Vec<PayoutRecord>",
"description": "Paginated payout records for the recipient"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "query_payouts_by_amount",
"description": "Paginated payout history filtered by amount range (inclusive)",
"parameters": [
{
"name": "min_amount",
"type": "i128",
"description": "Minimum payout amount (inclusive)"
},
{
"name": "max_amount",
"type": "i128",
"description": "Maximum payout amount (inclusive)"
},
{
"name": "offset",
"type": "u32",
"description": "Number of matching records to skip"
},
{
"name": "limit",
"type": "u32",
"description": "Maximum records to return (1\u2013200)"
}
],
"returns": {
"type": "Vec<PayoutRecord>",
"description": "Paginated payout records within the amount range"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "query_payouts_by_timestamp",
"description": "Paginated payout history filtered by timestamp range (inclusive)",
"parameters": [
{
"name": "min_timestamp",
"type": "u64",
"description": "Start of timestamp range (inclusive)"
},
{
"name": "max_timestamp",
"type": "u64",
"description": "End of timestamp range (inclusive)"
},
{
"name": "offset",
"type": "u32",
"description": "Number of matching records to skip"
},
{
"name": "limit",
"type": "u32",
"description": "Maximum records to return (1\u2013200)"
}
],
"returns": {
"type": "Vec<PayoutRecord>",
"description": "Paginated payout records within the timestamp range"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "query_schedules_by_recipient",
"description": "Paginated release schedules filtered by recipient address",
"parameters": [
{
"name": "recipient",
"type": "Address",
"description": "Recipient address to filter by"
},
{
"name": "offset",
"type": "u32",
"description": "Number of matching records to skip"
},
{
"name": "limit",
"type": "u32",
"description": "Maximum records to return (1\u2013200)"
}
],
"returns": {
"type": "Vec<ProgramReleaseSchedule>",
"description": "Paginated release schedules for the recipient"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "query_schedules_by_status",
"description": "Paginated release schedules filtered by released status",
"parameters": [
{
"name": "released",
"type": "bool",
"description": "True for released schedules, false for pending"
},
{
"name": "offset",
"type": "u32",
"description": "Number of matching records to skip"
},
{
"name": "limit",
"type": "u32",
"description": "Maximum records to return (1\u2013200)"
}
],
"returns": {
"type": "Vec<ProgramReleaseSchedule>",
"description": "Paginated release schedules matching the status"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "query_releases_by_recipient",
"description": "Paginated release history filtered by recipient address",
"parameters": [
{
"name": "recipient",
"type": "Address",
"description": "Recipient address to filter by"
},
{
"name": "offset",
"type": "u32",
"description": "Number of matching records to skip"
},
{
"name": "limit",
"type": "u32",
"description": "Maximum records to return (1\u2013200)"
}
],
"returns": {
"type": "Vec<ProgramReleaseHistory>",
"description": "Paginated release history records for the recipient"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
}
],
"admin": [
{
"name": "initialize_contract",
"description": "Initialize contract with admin",
"parameters": [
{
"name": "admin",
"type": "Address",
"description": "Admin address"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "set_admin",
"description": "Set or rotate admin address",
"parameters": [
{
"name": "admin",
"type": "Address",
"description": "New admin address"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "get_admin",
"description": "Get current admin address",
"parameters": [],
"returns": {
"type": "Option<Address>",
"description": "Admin address if set"
},