File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
contrib/core-contract-tests/tests/sip-031/commands Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,20 @@ export type Real = {
9
9
} ;
10
10
11
11
export interface Model {
12
+ // Total STX balance currently held by SIP-031.
12
13
balance : bigint ;
14
+ // Current block height used for vesting calculations.
13
15
blockHeight : bigint ;
16
+ // SIP-031 constants including vesting parameters and error codes.
14
17
constants : typeof contracts . sip031 . constants ;
18
+ // Block height that marks when vesting becomes active.
15
19
deployBlockHeight : bigint ;
20
+ // Flag indicating whether the initial funding has been transferred.
16
21
initialized : boolean ;
22
+ // Current recipient address eligible to claim STX and update the recipient.
17
23
recipient : string ;
24
+ // Running total of all STX that have been claimed from the contract.
18
25
totalClaimed : bigint ;
26
+ // Map tracking command execution statistics for reporting purposes.
19
27
statistics : Map < string , number > ;
20
28
}
You can’t perform that action at this time.
0 commit comments