@@ -24,7 +24,7 @@ function get_1st_ref_index(): uint64 {
2424
2525@contract ( { name : 'StateAcctParamsGetContract' , avmVersion : 11 } )
2626export class StateAcctParamsGetContract extends arc4 . Contract {
27- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
27+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
2828 public verify_acct_balance ( a : Account ) : uint64 {
2929 const [ value , funded ] = op . AcctParams . acctBalance ( a )
3030 const [ value_index , funded_index ] = op . AcctParams . acctBalance ( get_1st_ref_index ( ) )
@@ -36,7 +36,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
3636 return value
3737 }
3838
39- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
39+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
4040 public verify_acct_min_balance ( a : Account ) : uint64 {
4141 const [ value , funded ] = op . AcctParams . acctMinBalance ( a )
4242 const [ value_index , funded_index ] = op . AcctParams . acctMinBalance ( get_1st_ref_index ( ) )
@@ -48,7 +48,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
4848 return value
4949 }
5050
51- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
51+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
5252 public verify_acct_auth_addr ( a : Account ) : Address {
5353 const [ value , funded ] = op . AcctParams . acctAuthAddr ( a )
5454 const [ value_index , funded_index ] = op . AcctParams . acctAuthAddr ( get_1st_ref_index ( ) )
@@ -57,7 +57,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
5757 return new Address ( value )
5858 }
5959
60- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
60+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
6161 public verify_acct_total_num_uint ( a : Account ) : uint64 {
6262 const [ value , funded ] = op . AcctParams . acctTotalNumUint ( a )
6363 const [ value_index , funded_index ] = op . AcctParams . acctTotalNumUint ( get_1st_ref_index ( ) )
@@ -66,7 +66,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
6666 return value
6767 }
6868
69- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
69+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
7070 public verify_acct_total_num_byte_slice ( a : Account ) : uint64 {
7171 const [ value , funded ] = op . AcctParams . acctTotalNumByteSlice ( a )
7272 const [ value_index , funded_index ] = op . AcctParams . acctTotalNumByteSlice ( get_1st_ref_index ( ) )
@@ -75,7 +75,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
7575 return value
7676 }
7777
78- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
78+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
7979 public verify_acct_total_extra_app_pages ( a : Account ) : uint64 {
8080 const [ value , funded ] = op . AcctParams . acctTotalExtraAppPages ( a )
8181 const [ value_index , funded_index ] = op . AcctParams . acctTotalExtraAppPages ( get_1st_ref_index ( ) )
@@ -84,7 +84,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
8484 return value
8585 }
8686
87- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
87+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
8888 public verify_acct_total_apps_created ( a : Account ) : uint64 {
8989 const [ value , funded ] = op . AcctParams . acctTotalAppsCreated ( a )
9090 const [ value_index , funded_index ] = op . AcctParams . acctTotalAppsCreated ( get_1st_ref_index ( ) )
@@ -93,7 +93,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
9393 return value
9494 }
9595
96- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
96+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
9797 public verify_acct_total_apps_opted_in ( a : Account ) : uint64 {
9898 const [ value , funded ] = op . AcctParams . acctTotalAppsOptedIn ( a )
9999 const [ value_index , funded_index ] = op . AcctParams . acctTotalAppsOptedIn ( get_1st_ref_index ( ) )
@@ -102,7 +102,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
102102 return value
103103 }
104104
105- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
105+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
106106 public verify_acct_total_assets_created ( a : Account ) : uint64 {
107107 const [ value , funded ] = op . AcctParams . acctTotalAssetsCreated ( a )
108108 const [ value_index , funded_index ] = op . AcctParams . acctTotalAssetsCreated ( get_1st_ref_index ( ) )
@@ -111,7 +111,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
111111 return value
112112 }
113113
114- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
114+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
115115 public verify_acct_total_assets ( a : Account ) : uint64 {
116116 const [ value , funded ] = op . AcctParams . acctTotalAssets ( a )
117117 const [ value_index , funded_index ] = op . AcctParams . acctTotalAssets ( get_1st_ref_index ( ) )
@@ -120,7 +120,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
120120 return value
121121 }
122122
123- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
123+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
124124 public verify_acct_total_boxes ( a : Account ) : uint64 {
125125 const [ value , funded ] = op . AcctParams . acctTotalBoxes ( a )
126126 const [ value_index , funded_index ] = op . AcctParams . acctTotalBoxes ( get_1st_ref_index ( ) )
@@ -129,7 +129,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
129129 return value
130130 }
131131
132- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
132+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
133133 public verify_acct_total_box_bytes ( a : Account ) : uint64 {
134134 const [ value , funded ] = op . AcctParams . acctTotalBoxBytes ( a )
135135 const [ value_index , funded_index ] = op . AcctParams . acctTotalBoxBytes ( get_1st_ref_index ( ) )
@@ -138,7 +138,7 @@ export class StateAcctParamsGetContract extends arc4.Contract {
138138 return value
139139 }
140140
141- @arc4 . abimethod ( { resourceEncoding : 'Index ' } )
141+ @arc4 . abimethod ( { resourceEncoding : 'index ' } )
142142 public verify_acct_incentive_eligible ( a : Account ) : boolean {
143143 const [ value , funded ] = op . AcctParams . acctIncentiveEligible ( a )
144144 const [ value_index , funded_index ] = op . AcctParams . acctIncentiveEligible ( get_1st_ref_index ( ) )
0 commit comments