@@ -22,51 +22,51 @@ export const minBalance = (a: Account | internal.primitives.StubUint64Compat): u
22
22
}
23
23
24
24
export const AcctParams : internal . opTypes . AcctParamsType = {
25
- acctBalance : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
25
+ acctBalance ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
26
26
const acct = getAccount ( a )
27
27
return [ acct . balance , acct . balance !== 0 ]
28
28
} ,
29
- acctMinBalance : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
29
+ acctMinBalance ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
30
30
const acct = getAccount ( a )
31
31
return [ acct . minBalance , acct . balance !== 0 ]
32
32
} ,
33
- acctAuthAddr : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
33
+ acctAuthAddr ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
34
34
const acct = getAccount ( a )
35
35
return [ acct . authAddress , acct . balance !== 0 ]
36
36
} ,
37
- acctTotalNumUint : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
37
+ acctTotalNumUint ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
38
38
const acct = getAccount ( a )
39
39
return [ acct . totalNumUint , acct . balance !== 0 ]
40
40
} ,
41
- acctTotalNumByteSlice : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
41
+ acctTotalNumByteSlice ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
42
42
const acct = getAccount ( a )
43
43
return [ acct . totalNumByteSlice , acct . balance !== 0 ]
44
44
} ,
45
- acctTotalExtraAppPages : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
45
+ acctTotalExtraAppPages ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
46
46
const acct = getAccount ( a )
47
47
return [ acct . totalExtraAppPages , acct . balance !== 0 ]
48
48
} ,
49
- acctTotalAppsCreated : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
49
+ acctTotalAppsCreated ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
50
50
const acct = getAccount ( a )
51
51
return [ acct . totalAppsCreated , acct . balance !== 0 ]
52
52
} ,
53
- acctTotalAppsOptedIn : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
53
+ acctTotalAppsOptedIn ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
54
54
const acct = getAccount ( a )
55
55
return [ acct . totalAppsOptedIn , acct . balance !== 0 ]
56
56
} ,
57
- acctTotalAssetsCreated : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
57
+ acctTotalAssetsCreated ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
58
58
const acct = getAccount ( a )
59
59
return [ acct . totalAssetsCreated , acct . balance !== 0 ]
60
60
} ,
61
- acctTotalAssets : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
61
+ acctTotalAssets ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
62
62
const acct = getAccount ( a )
63
63
return [ acct . totalAssets , acct . balance !== 0 ]
64
64
} ,
65
- acctTotalBoxes : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
65
+ acctTotalBoxes ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
66
66
const acct = getAccount ( a )
67
67
return [ acct . totalBoxes , acct . balance !== 0 ]
68
68
} ,
69
- acctTotalBoxBytes : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
69
+ acctTotalBoxBytes ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
70
70
const acct = getAccount ( a )
71
71
return [ acct . totalBoxBytes , acct . balance !== 0 ]
72
72
} ,
0 commit comments