forked from Jagadeeshftw/grainlify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbounty-escrow-manifest.json
More file actions
2096 lines (2096 loc) · 65.7 KB
/
Copy pathbounty-escrow-manifest.json
File metadata and controls
2096 lines (2096 loc) · 65.7 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": "BountyEscrowContract",
"contract_purpose": "Manages bounty escrow with multi-token support, capability-based authorization, two-step admin rotation with timelock, refund-eligibility views, fee configuration, participant filter pagination with audit events, high-value release timelock queue, and comprehensive security features including reentrancy protection and rate limiting",
"version": {
"current": "2.5.0",
"schema": "1.0.0",
"history": [
{
"version": "1.0.0",
"release_date": "2024-01-01",
"changes": [
"Initial release with basic escrow functionality",
"Single admin authorization model",
"Basic fee configuration"
]
},
{
"version": "2.0.0",
"release_date": "2024-06-01",
"changes": [
"Added capability-based authorization system",
"Enhanced fee configuration with separate lock/release rates",
"Implemented reentrancy protection",
"Added rate limiting and anti-abuse mechanisms",
"Enhanced monitoring and analytics",
"Added claim period functionality"
]
},
{
"version": "2.1.0",
"release_date": "2026-04-22",
"changes": [
"Added explicit refund eligibility view with deterministic semantics",
"Added refund approval audit events for approval set/consumption lifecycle",
"Added upgrade-safe storage marker for refund eligibility schema versioning"
]
},
{
"version": "2.2.0",
"release_date": "2026-04-22",
"changes": [
"Hardened maintenance mode with explicit initialization, idempotent toggling, and audit-friendly v2 events",
"Added upgrade-safe storage keys for maintenance mode metadata and schema versioning"
]
},
{
"version": "2.3.0",
"release_date": "2026-04-23",
"changes": [
"Added FeeRoutingInvariantChecked audit event — emitted after every fee routing operation to prove distributed_total == fee_amount",
"Added FeeRoutingSchemaVersionSet event — emitted once during init() for upgrade-safe schema versioning",
"Added reason field to MaintenanceModeChangedV2 for complete audit trail",
"Added InvalidBatchSize error code for batch size governance",
"Added BatchSizeCaps and FeeRoutingSchemaVersion DataKey variants for upgrade-safe storage",
"Fee routing invariant is now enforced on-chain: last destination absorbs rounding remainder ensuring exact accounting"
]
},
{
"version": "2.4.0",
"release_date": "2026-04-23",
"changes": [
"query_whitelist and query_blocklist now return ParticipantListPage with items, total, offset, and has_more fields for clear pagination semantics",
"Added get_whitelist_count and get_blocklist_count view functions for O(1) total-count queries",
"Added ParticipantFilterQueried audit event emitted on every query_whitelist/query_blocklist call for off-chain audit trails",
"Limit argument silently capped at MAX_PARTICIPANT_FILTER_PAGE_SIZE (50) to bound per-call ledger cost",
"Added ParticipantListSchemaVersion storage key initialized on contract init for upgrade-safe storage versioning"
]
},
{
"version": "2.5.0",
"release_date": "2026-04-24",
"changes": [
"Added high-value release timelock queue: releases at or above a configurable threshold are queued with a mandatory delay before execution",
"Added set_high_value_config (admin) to configure threshold and duration; both must be > 0",
"Added get_high_value_config view to read current configuration",
"Added get_queued_release view to inspect a pending queued release",
"Added execute_queued_release (permissionless after delay) to finalize a queued release; respects maintenance mode, escrow freeze, and applies release fees",
"Added cancel_queued_release (admin) to cancel a pending queued release",
"Added DataKey::HighValueConfig, DataKey::QueuedRelease(u64), and DataKey::HighValueConfigSchemaVersion storage keys",
"Added HighValueConfigUpdated, ReleaseQueued, QueuedReleaseExecuted, ReleaseQueueCancelled, and HighValueConfigSchemaVersionSet audit events",
"Added TimelockNotElapsed (53) and ReleaseAlreadyQueued (54) error codes",
"Added get_high_value_config_schema_version view for upgrade safety checks"
]
}
]
},
"entrypoints": {
"public": [
{
"name": "lock_funds",
"description": "Lock funds into escrow for a bounty",
"parameters": [
{
"name": "depositor",
"type": "Address",
"description": "Address locking the funds"
},
{
"name": "bounty_id",
"type": "u64",
"description": "Unique identifier for the bounty"
},
{
"name": "amount",
"type": "i128",
"description": "Amount to lock in escrow"
},
{
"name": "deadline",
"type": "u64",
"description": "Timestamp when funds can be refunded"
},
{
"name": "metadata",
"type": "EscrowMetadata",
"description": "Optional metadata for the escrow",
"optional": true
}
],
"returns": {
"type": "Escrow",
"description": "The created escrow record"
},
"authorization": "signer",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "release_funds",
"description": "Release funds to a contributor",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
},
{
"name": "contributor",
"type": "Address",
"description": "Address to receive funds"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "release_with_capability",
"description": "Release funds using a capability token",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
},
{
"name": "contributor",
"type": "Address",
"description": "Address to receive funds"
},
{
"name": "capability_id",
"type": "u64",
"description": "Capability token ID"
},
{
"name": "payout_amount",
"type": "i128",
"description": "Amount to release"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "capability",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "refund_funds",
"description": "Refund funds to depositor after deadline",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "signer",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "authorize_claim",
"description": "Authorize a pending claim instead of immediate release",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
},
{
"name": "recipient",
"type": "Address",
"description": "Address authorized to claim"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "claim",
"description": "Claim funds from an authorized pending claim",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "signer",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "issue_capability",
"description": "Issue a capability token for delegated operations",
"parameters": [
{
"name": "owner",
"type": "Address",
"description": "Address that owns the capability"
},
{
"name": "holder",
"type": "Address",
"description": "Address that can use the capability"
},
{
"name": "action",
"type": "CapabilityAction",
"description": "Action this capability authorizes"
},
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
},
{
"name": "amount_limit",
"type": "i128",
"description": "Maximum amount this capability can release"
},
{
"name": "expiry",
"type": "u64",
"description": "Expiration timestamp"
},
{
"name": "uses",
"type": "u32",
"description": "Number of uses allowed",
"optional": true
}
],
"returns": {
"type": "u64",
"description": "Capability token ID"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "medium"
},
{
"name": "revoke_capability",
"description": "Revoke a capability token",
"parameters": [
{
"name": "owner",
"type": "Address",
"description": "Capability owner"
},
{
"name": "capability_id",
"type": "u64",
"description": "Capability token ID"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "signer",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "batch_lock_funds",
"description": "Lock funds for multiple bounties in one transaction",
"parameters": [
{
"name": "items",
"type": "Vec<LockFundsItem>",
"description": "Array of lock requests"
}
],
"returns": {
"type": "u32",
"description": "Number of bounties successfully locked"
},
"authorization": "signer",
"pausable": true,
"gas_estimate": "high"
},
{
"name": "batch_release_funds",
"description": "Release funds for multiple bounties in one transaction",
"parameters": [
{
"name": "items",
"type": "Vec<ReleaseFundsItem>",
"description": "Array of release requests"
}
],
"returns": {
"type": "u32",
"description": "Number of bounties successfully released"
},
"authorization": "admin",
"pausable": true,
"gas_estimate": "high"
},
{
"name": "accept_admin",
"description": "Accept a pending admin role after timelock expires",
"parameters": [],
"returns": { "type": "()", "description": "Empty on success" },
"authorization": "signer",
"pausable": false,
"gas_estimate": "low"
}
],
"view": [
{
"name": "get_filter_mode",
"description": "Get current participant filter mode",
"parameters": [],
"returns": {
"type": "ParticipantFilterMode",
"description": "Current participant filter mode"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_whitelist_count",
"description": "Return total number of allowlisted addresses",
"parameters": [],
"returns": {
"type": "u32",
"description": "Total count of allowlisted addresses"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_blocklist_count",
"description": "Return total number of blocklisted addresses",
"parameters": [],
"returns": {
"type": "u32",
"description": "Total count of blocklisted addresses"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "query_whitelist",
"description": "Get paginated allowlist participants with total count and has_more metadata. Limit silently capped at 50.",
"parameters": [
{
"name": "offset",
"type": "u32",
"description": "Zero-based start index"
},
{
"name": "limit",
"type": "u32",
"description": "Maximum number of results (capped at 50)"
}
],
"returns": {
"type": "ParticipantListPage",
"description": "Page of allowlisted addresses with items, total, offset, and has_more fields"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "query_blocklist",
"description": "Get paginated blocklist participants with total count and has_more metadata. Limit silently capped at 50.",
"parameters": [
{
"name": "offset",
"type": "u32",
"description": "Zero-based start index"
},
{
"name": "limit",
"type": "u32",
"description": "Maximum number of results (capped at 50)"
}
],
"returns": {
"type": "ParticipantListPage",
"description": "Page of blocklisted addresses with items, total, offset, and has_more fields"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_escrow",
"description": "Get escrow details by bounty ID",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
}
],
"returns": {
"type": "Escrow",
"description": "Escrow record"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_capability",
"description": "Get capability details by ID",
"parameters": [
{
"name": "capability_id",
"type": "u64",
"description": "Capability token ID"
}
],
"returns": {
"type": "Capability",
"description": "Capability record"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_fee_config",
"description": "Get current fee configuration",
"parameters": [],
"returns": {
"type": "FeeConfig",
"description": "Fee configuration"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_batch_size_caps",
"description": "Get the effective batch size caps for batch lock and batch release",
"parameters": [],
"returns": {
"type": "BatchSizeCaps",
"description": "Current effective batch size cap configuration"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_high_value_config",
"description": "Get the current high-value release timelock configuration, or None if not set.",
"parameters": [],
"returns": {
"type": "Option<HighValueConfig>",
"description": "Timelock threshold and duration, or None."
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_queued_release",
"description": "Get the pending queued release for a bounty, or None if no release is queued.",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
}
],
"returns": {
"type": "Option<QueuedRelease>",
"description": "Queued release entry (contributor, amount, executable_at), or None."
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_multisig_config",
"description": "Get multisig configuration",
"parameters": [],
"returns": {
"type": "MultisigConfig",
"description": "Multisig configuration"
},
"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": "dry_run_lock",
"description": "Simulate lock operation without state changes",
"parameters": [
{
"name": "depositor",
"type": "Address",
"description": "Address that would lock funds"
},
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
},
{
"name": "amount",
"type": "i128",
"description": "Amount to lock"
},
{
"name": "deadline",
"type": "u64",
"description": "Deadline timestamp"
}
],
"returns": {
"type": "SimulationResult",
"description": "Simulation outcome"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "dry_run_release",
"description": "Simulate release operation without state changes",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
},
{
"name": "contributor",
"type": "Address",
"description": "Recipient address"
}
],
"returns": {
"type": "SimulationResult",
"description": "Simulation outcome"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "dry_run_refund",
"description": "Simulate refund operation without state changes",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
}
],
"returns": {
"type": "SimulationResult",
"description": "Simulation outcome"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "get_refund_eligibility_view",
"description": "Return deterministic typed refund eligibility status, amount, and recipient preview",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
}
],
"returns": {
"type": "RefundEligibilityView",
"description": "Eligibility state with explicit semantic code and preview fields"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"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": "is_maintenance_mode",
"description": "Check if maintenance mode is active",
"parameters": [],
"returns": {
"type": "bool",
"description": "True if maintenance mode is enabled, false otherwise"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_high_value_config",
"description": "Get the current high-value release timelock configuration",
"parameters": [],
"returns": {
"type": "Option<HighValueConfig>",
"description": "Threshold and duration, or None if not configured"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "get_queued_release",
"description": "Get the pending queued release for a bounty, if any",
"parameters": [
{ "name": "bounty_id", "type": "u64", "description": "Bounty identifier" }
],
"returns": {
"type": "Option<QueuedRelease>",
"description": "Queued release record or None"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
}
],
"admin": [
{
"name": "init",
"description": "Initialize the contract with admin and token",
"parameters": [
{
"name": "admin",
"type": "Address",
"description": "Admin address"
},
{
"name": "token",
"type": "AssetId",
"description": "Token contract address"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "any",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "update_fee_config",
"description": "Update fee configuration",
"parameters": [
{
"name": "lock_fee_rate",
"type": "Option<i128>",
"description": "Fee rate for lock operations",
"optional": true
},
{
"name": "release_fee_rate",
"type": "Option<i128>",
"description": "Fee rate for release operations",
"optional": true
},
{
"name": "fee_recipient",
"type": "Option<Address>",
"description": "Address to receive fees",
"optional": true
},
{
"name": "fee_enabled",
"type": "Option<bool>",
"description": "Enable/disable fees",
"optional": true
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "update_multisig_config",
"description": "Update multisig configuration",
"parameters": [
{
"name": "threshold_amount",
"type": "i128",
"description": "Amount threshold for multisig"
},
{
"name": "signers",
"type": "Vec<Address>",
"description": "List of authorized signers"
},
{
"name": "required_signatures",
"type": "u32",
"description": "Number of signatures required"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "approve_large_release",
"description": "Approve large release requiring multisig",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
},
{
"name": "contributor",
"type": "Address",
"description": "Contributor address"
},
{
"name": "amount",
"type": "i128",
"description": "Amount to release"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": true,
"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": "set_claim_window",
"description": "Set claim window duration. Emits ClaimWindowSet audit event. Set to 0 to disable enforcement.",
"parameters": [
{
"name": "claim_window",
"type": "u64",
"description": "Seconds beneficiary has to claim after authorization. 0 disables enforcement."
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "set_maintenance_mode",
"description": "Update maintenance mode (admin only)",
"parameters": [
{
"name": "enabled",
"type": "bool",
"description": "Enable or disable maintenance mode"
},
{
"name": "reason",
"type": "Option<String>",
"description": "Optional reason for the change",
"optional": true
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "medium"
},
{
"name": "emergency_withdraw",
"description": "Emergency withdraw all funds (requires lock_paused=true)",
"parameters": [
{
"name": "target",
"type": "Address",
"description": "Address to receive funds"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "high"
},
{
"name": "update_risk_flags",
"description": "Updates the risk flags for a specific bounty (replaces entire bitmask)",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
},
{
"name": "new_flags",
"type": "u32",
"description": "New bitmask of risk flags (bits outside RISK_FLAG_MASK_ALL are rejected)"
}
],
"returns": {
"type": "()",
"description": "Empty on success"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "set_escrow_risk_flags",
"description": "OR flag_bits onto stored risk flags for a bounty (admin only). Returns updated EscrowMetadata.",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier (metadata created with zero defaults if absent)"
},
{
"name": "flag_bits",
"type": "u32",
"description": "Bits to set; rejected if outside RISK_FLAG_MASK_ALL"
}
],
"returns": {
"type": "EscrowMetadata",
"description": "Updated metadata reflecting new flag state"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "clear_escrow_risk_flags",
"description": "AND-NOT flag_bits from stored risk flags for a bounty (admin only). Returns updated EscrowMetadata.",
"parameters": [
{
"name": "bounty_id",
"type": "u64",
"description": "Bounty identifier"
},
{
"name": "flag_bits",
"type": "u32",
"description": "Bits to clear; rejected if outside RISK_FLAG_MASK_ALL"
}
],
"returns": {
"type": "EscrowMetadata",
"description": "Updated metadata reflecting new flag state"
},
"authorization": "admin",
"pausable": false,
"gas_estimate": "low"
},
{
"name": "update_metadata",
"description": "Write repo_id, issue_id, bounty_type, and reference_hash for a bounty. Caller must be admin or a registered governor. Preserves risk_flags and notification_prefs.",
"parameters": [