@@ -22,51 +22,51 @@ export const minBalance = (a: Account | internal.primitives.StubUint64Compat): u
2222}
2323
2424export 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 ] {
2626 const acct = getAccount ( a )
2727 return [ acct . balance , acct . balance !== 0 ]
2828 } ,
29- acctMinBalance : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
29+ acctMinBalance ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
3030 const acct = getAccount ( a )
3131 return [ acct . minBalance , acct . balance !== 0 ]
3232 } ,
33- acctAuthAddr : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
33+ acctAuthAddr ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ Account , boolean ] {
3434 const acct = getAccount ( a )
3535 return [ acct . authAddress , acct . balance !== 0 ]
3636 } ,
37- acctTotalNumUint : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
37+ acctTotalNumUint ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
3838 const acct = getAccount ( a )
3939 return [ acct . totalNumUint , acct . balance !== 0 ]
4040 } ,
41- acctTotalNumByteSlice : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
41+ acctTotalNumByteSlice ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
4242 const acct = getAccount ( a )
4343 return [ acct . totalNumByteSlice , acct . balance !== 0 ]
4444 } ,
45- acctTotalExtraAppPages : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
45+ acctTotalExtraAppPages ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
4646 const acct = getAccount ( a )
4747 return [ acct . totalExtraAppPages , acct . balance !== 0 ]
4848 } ,
49- acctTotalAppsCreated : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
49+ acctTotalAppsCreated ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
5050 const acct = getAccount ( a )
5151 return [ acct . totalAppsCreated , acct . balance !== 0 ]
5252 } ,
53- acctTotalAppsOptedIn : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
53+ acctTotalAppsOptedIn ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
5454 const acct = getAccount ( a )
5555 return [ acct . totalAppsOptedIn , acct . balance !== 0 ]
5656 } ,
57- acctTotalAssetsCreated : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
57+ acctTotalAssetsCreated ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
5858 const acct = getAccount ( a )
5959 return [ acct . totalAssetsCreated , acct . balance !== 0 ]
6060 } ,
61- acctTotalAssets : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
61+ acctTotalAssets ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
6262 const acct = getAccount ( a )
6363 return [ acct . totalAssets , acct . balance !== 0 ]
6464 } ,
65- acctTotalBoxes : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
65+ acctTotalBoxes ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
6666 const acct = getAccount ( a )
6767 return [ acct . totalBoxes , acct . balance !== 0 ]
6868 } ,
69- acctTotalBoxBytes : function ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
69+ acctTotalBoxBytes ( a : Account | internal . primitives . StubUint64Compat ) : readonly [ uint64 , boolean ] {
7070 const acct = getAccount ( a )
7171 return [ acct . totalBoxBytes , acct . balance !== 0 ]
7272 } ,
0 commit comments