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
1082 lines (1082 loc) · 31.4 KB
/
program-escrow-manifest.json
File metadata and controls
1082 lines (1082 loc) · 31.4 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.0.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"
]
}
]
},
"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",
"parameters": [
{
"name": "winners",
"type": "Vec<Address>",
"description": "Array of winner addresses"
},
{
"name": "amounts",
"type": "Vec<i128>",
"description": "Corresponding prize amounts"
}
],
"returns": {
"type": "Vec<PayoutRecord>",
"description": "Array of payout records"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "high"
},
{
"name": "single_payout",
"description": "Distribute prize to single winner",
"parameters": [
{
"name": "winner",
"type": "Address",
"description": "Winner address"
},
{
"name": "amount",
"type": "i128",
"description": "Prize amount"
}
],
"returns": {
"type": "PayoutRecord",
"description": "Payout record"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "medium"
},
{
"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_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"
}
],
"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"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "set_circuit_admin",
"description": "Set circuit breaker admin",
"parameters": [
{
"name": "new_admin",
"type": "Address",
"description": "Circuit breaker admin address"
},
{
"name": "caller",
"type": "Option<Address>",
"description": "Existing admin (None if setting for first time)",
"optional": true
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "get_circuit_admin",
"description": "Get circuit breaker admin",
"parameters": [],
"returns": {
"type": "Option<Address>",
"description": "Circuit breaker admin if set"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "reset_circuit_breaker",
"description": "Reset circuit breaker to closed state",
"parameters": [
{
"name": "admin",
"type": "Address",
"description": "Circuit breaker admin address"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "configure_circuit_breaker",
"description": "Configure circuit breaker parameters",
"parameters": [
{
"name": "admin",
"type": "Address",
"description": "Circuit breaker admin address"
},
{
"name": "failure_threshold",
"type": "u32",
"description": "Consecutive failures to open circuit"
},
{
"name": "success_threshold",
"type": "u32",
"description": "Successes to close circuit in half-open"
},
{
"name": "max_error_log",
"type": "u32",
"description": "Maximum error log entries"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "get_circuit_status",
"description": "Get circuit breaker status",
"parameters": [],
"returns": {
"type": "CircuitBreakerStatus",
"description": "Circuit breaker status"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_circuit_error_log",
"description": "Get circuit breaker error log",
"parameters": [],
"returns": {
"type": "Vec<ErrorEntry>",
"description": "Array of error entries"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "emergency_open_circuit",
"description": "Emergency open circuit (admin only)",
"parameters": [
{
"name": "admin",
"type": "Address",
"description": "Circuit breaker admin address"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "low"
}
]
},
"configuration": {
"parameters": [
{
"name": "BASIS_POINTS",
"type": "i128",
"default_value": "10000",
"description": "Basis points for fee calculations (1% = 100 basis points)",
"constraints": "value = 10000",
"admin_only": false
},
{
"name": "MAX_FEE_RATE",
"type": "i128",
"default_value": "1000",
"description": "Maximum fee rate (10% = 1000 basis points)",
"constraints": "0 <= value <= 1000",
"admin_only": false
},
{
"name": "lock_fee_rate",
"type": "i128",
"default_value": "0",
"description": "Fee rate for lock operations in basis points",
"constraints": "0 <= value <= MAX_FEE_RATE",
"admin_only": true
},
{
"name": "payout_fee_rate",
"type": "i128",
"default_value": "0",
"description": "Fee rate for payout operations in basis points",
"constraints": "0 <= value <= MAX_FEE_RATE",
"admin_only": true
},
{
"name": "fee_enabled",
"type": "bool",
"default_value": "false",
"description": "Whether fees are enabled",
"admin_only": true
}
],
"storage_keys": [
{
"name": "PROGRAM_DATA",
"type": "instance",
"description": "Single program data (legacy)",
"data_structure": "ProgramData"
},
{
"name": "PROGRAM_REGISTRY",
"type": "instance",
"description": "Multi-program registry",
"data_structure": "bool"
},
{
"name": "Program",
"type": "instance",
"description": "Program data by ID",
"data_structure": "ProgramData"
},
{
"name": "FEE_CONFIG",
"type": "instance",
"description": "Fee configuration",
"data_structure": "FeeConfig"
},
{
"name": "DataKey::Admin",
"type": "instance",
"description": "Contract admin address",
"data_structure": "Address"
},
{
"name": "DataKey::PauseFlags",
"type": "instance",
"description": "Pause configuration",
"data_structure": "PauseFlags"
},
{
"name": "SCHEDULES",
"type": "instance",
"description": "Release schedules",
"data_structure": "Vec<ProgramReleaseSchedule>"
}
]
},
"behaviors": {
"security_features": [
"Circuit breaker for error recovery",
"Comprehensive pause functionality",
"Rate limiting and anti-abuse protection",
"Atomic batch operations",
"Dependency management with cycle detection",
"Reentrancy protection",
"Comprehensive monitoring and analytics",
"Input validation for all parameters",
"Overflow protection in arithmetic operations"
],
"access_control": [
{
"mechanism": "admin_auth",
"description": "Single admin with full control over contract",
"configuration": "Set during initialization, can be rotated"
},
{
"mechanism": "capability",
"description": "Program-specific payout authorization",
"configuration": "Each program has authorized payout key"
},
{
"mechanism": "rbac",
"description": "Role-based access for different operations",
"configuration": "Admin vs payout key permissions"
}
],
"critical_behaviors": [
{
"behavior": "Circuit breaker",
"impact": "Automatically pauses operations on repeated failures",
"mitigation": "Configurable thresholds and manual reset capability"
},
{
"behavior": "Batch atomicity",
"impact": "All operations in batch succeed or fail together",
"mitigation": "Rollback mechanism for partial failures"
},
{
"behavior": "Dependency management",
"impact": "Programs can depend on other programs/external services",
"mitigation": "Cycle detection and status tracking"
},
{
"behavior": "Fee calculation",
"impact": "Fees are deducted from operations",
"mitigation": "Floor rounding and configurable rates"
},
{
"behavior": "Multi-program support",
"impact": "Multiple programs can coexist in same contract",
"mitigation": "Separate storage and authorization per program"
}
],
"error_handling": [
{
"error_code": "AlreadyInitialized",
"scenario": "Attempting to initialize an already initialized contract",
"resolution": "Contract can only be initialized once"
},
{
"error_code": "NotInitialized",
"scenario": "Calling admin functions before initialization",
"resolution": "Initialize contract with admin address"
},
{
"error_code": "Unauthorized",
"scenario": "Caller lacks required permissions",
"resolution": "Ensure caller is admin or authorized payout key"
},
{
"error_code": "InsufficientFunds",
"scenario": "Program doesn't have enough tokens for payout",
"resolution": "Ensure sufficient funds are locked in program"
},
{
"error_code": "FundsPaused",
"scenario": "Operation is paused by admin or circuit breaker",
"resolution": "Wait for admin to unpause or circuit breaker to reset"
},
{
"error_code": "InvalidFeeRate",
"scenario": "Fee rate exceeds maximum allowed",
"resolution": "Use fee rate within allowed range (0-1000 basis points)"
},
{
"error_code": "DependencyCycle",
"scenario": "Creating circular dependencies between programs",
"resolution": "Remove circular dependency references"
}
],
"gas_considerations": [
{
"operation": "batch_initialize_programs",
"cost_level": "high",
"notes": "Multiple program initializations and storage writes"
},
{
"operation": "batch_payout",
"cost_level": "high",
"notes": "Multiple token transfers and storage updates"
},
{
"operation": "lock_program_funds",
"cost_level": "medium",
"notes": "Token transfer and storage updates"
},
{
"operation": "single_payout",
"cost_level": "medium",
"notes": "Token transfer and storage updates"
},
{
"operation": "emergency_withdraw",
"cost_level": "high",
"notes": "Large token transfer of all program funds"
},
{
"operation": "view functions",
"cost_level": "low",
"notes": "Only storage reads, no state changes"
}
],
"events": [
{
"name": "ProgramInitialized",
"description": "Program initialization event",
"data": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
},
{
"name": "authorized_payout_key",
"type": "Address",
"description": "Authorized payout address"
},
{
"name": "token_address",
"type": "Address",
"description": "Token contract address"
},
{
"name": "timestamp",
"type": "u64",
"description": "Initialization timestamp"
}
],
"trigger": "Successful program initialization"
},
{
"name": "FundsLocked",
"description": "Program funds locked",
"data": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
},
{
"name": "amount",
"type": "i128",
"description": "Amount locked"
},
{
"name": "timestamp",
"type": "u64",
"description": "Lock timestamp"
}
],
"trigger": "Successful fund lock"
},
{
"name": "BatchPayout",
"description": "Batch payout completed",
"data": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
},
{
"name": "winner_count",
"type": "u32",
"description": "Number of winners paid"
},
{
"name": "total_amount",
"type": "i128",
"description": "Total amount paid out"
}
],
"trigger": "Successful batch payout"
},
{
"name": "Payout",
"description": "Single payout completed",
"data": [
{
"name": "program_id",
"type": "String",
"description": "Program identifier"
},
{
"name": "winner",
"type": "Address",
"description": "Winner address"
},
{
"name": "amount",
"type": "i128",
"description": "Amount paid"
}
],
"trigger": "Successful single payout"
}
]
},
"dependencies": {
"contracts": [],
"tokens": [
{
"token_standard": "SAC",
"purpose": "Program prize token for locking and payouts",
"requirements": [
"Must support transfer function",
"Must support balance function",
"Must be approved for contract operations"
]
}
],
"external_apis": []
},
"deployment": {
"networks": [],
"initialization": {
"steps": [
{
"step": 1,
"description": "Deploy contract to Stellar network",
"command": "stellar contract deploy --wasm target/wasm32-unknown-unknown/release/program_escrow.wasm",
"notes": "Save contract ID from deployment output"
},
{
"step": 2,
"description": "Initialize contract with admin",
"command": "stellar contract invoke --id CONTRACT_ID -- initialize_contract --admin ADMIN_ADDRESS",
"notes": "Use secure admin address (hardware wallet recommended)"
},
{
"step": 3,
"description": "Initialize first program",
"command": "stellar contract invoke --id CONTRACT_ID -- init_program --program_id 'Hackathon2024' --authorized_payout_key PAYOUT_KEY --token_address TOKEN_ADDRESS",
"notes": "Set up your first program with authorized payout key"
},
{
"step": 4,
"description": "Configure circuit breaker (optional)",
"command": "stellar contract invoke --id CONTRACT_ID -- configure_circuit_breaker --admin ADMIN_ADDRESS --failure_threshold 5 --success_threshold 3 --max_error_log 100",
"notes": "Optional: configure circuit breaker for error recovery"
}
],
"prerequisites": [
"Admin address (secure, preferably hardware wallet)",
"Token contract address for prize funds",
"Authorized payout key address for each program",
"Sufficient XLM for deployment fees",
"Token approval for contract operations"
]
},
"upgrade_process": {
"steps": [
{