@@ -25,7 +25,7 @@ exports[`execute classes array types 1`] = `
25
25
this.allTokens = this.allTokens.bind(this );
26
26
this.minter = this.minter.bind(this );
27
27
}
28
- proposedNewOwner = async (fee : number | StdFee | " auto" = " auto" , memo ? : string , funds_ ? : Coin []): Promise <ExecuteResult > => {
28
+ proposedNewOwner = async (fee_ : number | StdFee | " auto" = " auto" , memo ? : string , funds_ ? : Coin []): Promise <ExecuteResult > => {
29
29
return await this .client .execute (this .sender , this .contractAddress , {
30
30
proposed_new_owner: {}
31
31
}, fee_ , memo_ , funds_ );
@@ -36,7 +36,7 @@ exports[`execute classes array types 1`] = `
36
36
}: {
37
37
limit?: number;
38
38
startAfter?: VaultBase_for_String;
39
- }, fee : number | StdFee | " auto" = " auto" , memo ?: string , funds_ ?: Coin []): Promise <ExecuteResult > => {
39
+ }, fee_ : number | StdFee | " auto" = " auto" , memo ?: string , funds_ ?: Coin []): Promise <ExecuteResult > => {
40
40
return await this .client .execute (this .sender , this .contractAddress , {
41
41
allowed_vaults: {
42
42
limit ,
@@ -50,15 +50,15 @@ exports[`execute classes array types 1`] = `
50
50
} : {
51
51
limit ?: number ;
52
52
startAfter ?: string [][];
53
- } , fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
53
+ } , fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
54
54
return await this .client .execute (this .sender , this .contractAddress , {
55
55
all_debt_shares: {
56
56
limit ,
57
57
start_after: startAfter
58
58
}
59
59
}, fee_ , memo_ , funds_ );
60
60
} ;
61
- allPreviousOwners = async (fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
61
+ allPreviousOwners = async (fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
62
62
return await this .client .execute (this .sender , this .contractAddress , {
63
63
all_previous_owners: {}
64
64
}, fee_ , memo_ , funds_ );
@@ -69,7 +69,7 @@ exports[`execute classes array types 1`] = `
69
69
} : {
70
70
includeExpired ?: boolean ;
71
71
tokenId : string ;
72
- } , fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
72
+ } , fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
73
73
return await this .client .execute (this .sender , this .contractAddress , {
74
74
owner_of: {
75
75
include_expired: includeExpired ,
@@ -85,7 +85,7 @@ exports[`execute classes array types 1`] = `
85
85
includeExpired ?: boolean ;
86
86
spender : string ;
87
87
tokenId : string ;
88
- } , fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
88
+ } , fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
89
89
return await this .client .execute (this .sender , this .contractAddress , {
90
90
approval: {
91
91
include_expired: includeExpired ,
@@ -100,7 +100,7 @@ exports[`execute classes array types 1`] = `
100
100
} : {
101
101
includeExpired ?: boolean ;
102
102
tokenId : string ;
103
- } , fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
103
+ } , fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
104
104
return await this .client .execute (this .sender , this .contractAddress , {
105
105
approvals: {
106
106
include_expired: includeExpired ,
@@ -118,7 +118,7 @@ exports[`execute classes array types 1`] = `
118
118
limit ?: number ;
119
119
owner : string ;
120
120
startAfter ?: string ;
121
- } , fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
121
+ } , fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
122
122
return await this .client .execute (this .sender , this .contractAddress , {
123
123
all_operators: {
124
124
include_expired: includeExpired ,
@@ -128,12 +128,12 @@ exports[`execute classes array types 1`] = `
128
128
}
129
129
}, fee_ , memo_ , funds_ );
130
130
} ;
131
- numTokens = async (fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
131
+ numTokens = async (fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
132
132
return await this .client .execute (this .sender , this .contractAddress , {
133
133
num_tokens: {}
134
134
}, fee_ , memo_ , funds_ );
135
135
} ;
136
- contractInfo = async (fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
136
+ contractInfo = async (fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
137
137
return await this .client .execute (this .sender , this .contractAddress , {
138
138
contract_info: {}
139
139
}, fee_ , memo_ , funds_ );
@@ -142,7 +142,7 @@ exports[`execute classes array types 1`] = `
142
142
tokenId
143
143
} : {
144
144
tokenId : string ;
145
- } , fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
145
+ } , fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
146
146
return await this .client .execute (this .sender , this .contractAddress , {
147
147
nft_info: {
148
148
token_id: tokenId
@@ -155,7 +155,7 @@ exports[`execute classes array types 1`] = `
155
155
} : {
156
156
includeExpired ?: boolean ;
157
157
tokenId : string ;
158
- } , fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
158
+ } , fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
159
159
return await this .client .execute (this .sender , this .contractAddress , {
160
160
all_nft_info: {
161
161
include_expired: includeExpired ,
@@ -171,7 +171,7 @@ exports[`execute classes array types 1`] = `
171
171
limit ?: number ;
172
172
owner : string ;
173
173
startAfter ?: string ;
174
- } , fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
174
+ } , fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
175
175
return await this .client .execute (this .sender , this .contractAddress , {
176
176
tokens: {
177
177
limit ,
@@ -186,15 +186,15 @@ exports[`execute classes array types 1`] = `
186
186
} : {
187
187
limit ?: number ;
188
188
startAfter ?: string ;
189
- } , fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
189
+ } , fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
190
190
return await this .client .execute (this .sender , this .contractAddress , {
191
191
all_tokens: {
192
192
limit ,
193
193
start_after: startAfter
194
194
}
195
195
}, fee_ , memo_ , funds_ );
196
196
} ;
197
- minter = async (fee : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
197
+ minter = async (fee_ : number | StdFee | "auto" = "auto", memo?: string, funds_?: Coin[]): Promise<ExecuteResult > => {
198
198
return await this .client .execute (this .sender , this .contractAddress , {
199
199
minter: {}
200
200
}, fee_ , memo_ , funds_ );
0 commit comments