@@ -34,26 +34,26 @@ exports[`AutocompounderAppClient 1`] = `
34
34
35
35
updateFeeConfig = async (params : CamelCasedProperties < Extract < ExecuteMsg , {
36
36
update_fee_config: unknown ;
37
- }> [\\" update_fee_config\\ " ]> , fee : number | StdFee | \\" auto\\ " = \\" auto\\ " , memo ?: string , _funds ?: Coin []): Promise <ExecuteResult > => {
38
- return this ._execute (AutocompounderExecuteMsgBuilder .updateFeeConfig (params ), fee , memo , _funds );
37
+ }> [\\" update_fee_config\\ " ]> , fee_ : number | StdFee | \\" auto\\ " = \\" auto\\ " , memo_ ?: string , funds_ ?: Coin []): Promise <ExecuteResult > => {
38
+ return this ._execute (AutocompounderExecuteMsgBuilder .updateFeeConfig (params ), fee_ , memo_ , funds_ );
39
39
} ;
40
40
deposit = async (params: CamelCasedProperties<Extract<ExecuteMsg, {
41
41
deposit : unknown ;
42
- } >[\\"deposit\\"]>, fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
43
- return this ._execute (AutocompounderExecuteMsgBuilder .deposit (params ), fee , memo , _funds );
42
+ } >[\\"deposit\\"]>, fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
43
+ return this ._execute (AutocompounderExecuteMsgBuilder .deposit (params ), fee_ , memo_ , funds_ );
44
44
} ;
45
- withdraw = async (fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
46
- return this ._execute (AutocompounderExecuteMsgBuilder .withdraw (), fee , memo , _funds );
45
+ withdraw = async (fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
46
+ return this ._execute (AutocompounderExecuteMsgBuilder .withdraw (), fee_ , memo_ , funds_ );
47
47
} ;
48
- compound = async (fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
49
- return this ._execute (AutocompounderExecuteMsgBuilder .compound (), fee , memo , _funds );
48
+ compound = async (fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
49
+ return this ._execute (AutocompounderExecuteMsgBuilder .compound (), fee_ , memo_ , funds_ );
50
50
} ;
51
- batchUnbond = async (fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
52
- return this ._execute (AutocompounderExecuteMsgBuilder .batchUnbond (), fee , memo , _funds );
51
+ batchUnbond = async (fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
52
+ return this ._execute (AutocompounderExecuteMsgBuilder .batchUnbond (), fee_ , memo_ , funds_ );
53
53
} ;
54
- _execute = async (msg: ExecuteMsg, fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
54
+ _execute = async (msg: ExecuteMsg, fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
55
55
const moduleMsg : AppExecuteMsg <ExecuteMsg > = AppExecuteMsgFactory.executeApp(msg);
56
- return await this.accountClient.abstract.client.execute(this.accountClient.sender, await this.getAddress(), moduleMsg, fee, memo, _funds );
56
+ return await this.accountClient.abstract.client.execute(this.accountClient.sender, await this.getAddress(), moduleMsg, fee_, memo_, funds_ );
57
57
};
58
58
}"
59
59
`;
@@ -186,25 +186,25 @@ exports[`DexAdapterClient 1`] = `
186
186
187
187
updateFee = async (params : CamelCasedProperties < Extract < ExecuteMsg , {
188
188
update_fee: unknown ;
189
- }> [\\" update_fee\\ " ]> , fee : number | StdFee | \\" auto\\ " = \\" auto\\ " , memo ?: string , _funds ?: Coin []): Promise <ExecuteResult > => {
190
- return this ._execute (DexClientExecuteMsgBuilder .updateFee (params ), fee , memo , _funds );
189
+ }> [\\" update_fee\\ " ]> , fee_ : number | StdFee | \\" auto\\ " = \\" auto\\ " , memo_ ?: string , funds_ ?: Coin []): Promise <ExecuteResult > => {
190
+ return this ._execute (DexClientExecuteMsgBuilder .updateFee (params ), fee_ , memo_ , funds_ );
191
191
} ;
192
192
ansAction = async (params: CamelCasedProperties<Extract<ExecuteMsg, {
193
193
ans_action : unknown ;
194
- } >[\\"ans_action\\"]>, fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
195
- return this ._execute (DexClientExecuteMsgBuilder .ansAction (params ), fee , memo , _funds );
194
+ } >[\\"ans_action\\"]>, fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
195
+ return this ._execute (DexClientExecuteMsgBuilder .ansAction (params ), fee_ , memo_ , funds_ );
196
196
} ;
197
197
rawAction = async (params: CamelCasedProperties<Extract<ExecuteMsg, {
198
198
raw_action : unknown ;
199
- } >[\\"raw_action\\"]>, fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
200
- return this ._execute (DexClientExecuteMsgBuilder .rawAction (params ), fee , memo , _funds );
199
+ } >[\\"raw_action\\"]>, fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
200
+ return this ._execute (DexClientExecuteMsgBuilder .rawAction (params ), fee_ , memo_ , funds_ );
201
201
} ;
202
- _execute = async (msg: ExecuteMsg, fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
202
+ _execute = async (msg: ExecuteMsg, fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
203
203
const moduleMsg : AdapterExecuteMsg <ExecuteMsg > = AdapterExecuteMsgFactory.executeAdapter({
204
204
request : msg ,
205
205
proxyAddress : this .accountQueryClient .proxyAddress
206
206
} );
207
- return await this.accountClient.abstract.client.execute(this.accountClient.sender, await this.getAddress(), moduleMsg, fee, memo, _funds );
207
+ return await this.accountClient.abstract.client.execute(this.accountClient.sender, await this.getAddress(), moduleMsg, fee_, memo_, funds_ );
208
208
};
209
209
}"
210
210
`;
@@ -214,13 +214,13 @@ exports[`IAutocompounderAppClient 1`] = `
214
214
accountClient : AbstractAccountClient ;
215
215
updateFeeConfig : (params : CamelCasedProperties < Extract < ExecuteMsg , {
216
216
update_fee_config: unknown ;
217
- }> [\\" update_fee_config\\ " ]> , fee ?: number | StdFee | \\" auto\\ " , memo ?: string , _funds ?: Coin []) => Promise <ExecuteResult >;
217
+ }> [\\" update_fee_config\\ " ]> , fee_ ?: number | StdFee | \\" auto\\ " , memo_ ?: string , funds_ ?: Coin []) => Promise <ExecuteResult >;
218
218
deposit: (params: CamelCasedProperties<Extract<ExecuteMsg, {
219
219
deposit : unknown ;
220
- } >[\\"deposit\\"]>, fee ?: number | StdFee | \\"auto\\", memo ?: string, _funds ?: Coin[]) => Promise<ExecuteResult >;
221
- withdraw: (fee ?: number | StdFee | \\"auto\\", memo ?: string, _funds ?: Coin[]) => Promise<ExecuteResult >;
222
- compound: (fee ?: number | StdFee | \\"auto\\", memo ?: string, _funds ?: Coin[]) => Promise<ExecuteResult >;
223
- batchUnbond: (fee ?: number | StdFee | \\"auto\\", memo ?: string, _funds ?: Coin[]) => Promise<ExecuteResult >;
220
+ } >[\\"deposit\\"]>, fee_ ?: number | StdFee | \\"auto\\", memo_ ?: string, funds_ ?: Coin[]) => Promise<ExecuteResult >;
221
+ withdraw: (fee_ ?: number | StdFee | \\"auto\\", memo_ ?: string, funds_ ?: Coin[]) => Promise<ExecuteResult >;
222
+ compound: (fee_ ?: number | StdFee | \\"auto\\", memo_ ?: string, funds_ ?: Coin[]) => Promise<ExecuteResult >;
223
+ batchUnbond: (fee_ ?: number | StdFee | \\"auto\\", memo_ ?: string, funds_ ?: Coin[]) => Promise<ExecuteResult >;
224
224
}"
225
225
`;
226
226
@@ -281,18 +281,18 @@ exports[`IbcMailClientAppClient 1`] = `
281
281
282
282
sendMessage = async (params : CamelCasedProperties < Extract < ExecuteMsg , {
283
283
send_message: unknown ;
284
- }> [\\" send_message\\ " ]> , fee : number | StdFee | \\" auto\\ " = \\" auto\\ " , memo ?: string , _funds ?: Coin []): Promise <ExecuteResult > => {
285
- return this ._execute (IbcMailClientExecuteMsgBuilder .sendMessage (params ), fee , memo , _funds );
284
+ }> [\\" send_message\\ " ]> , fee_ : number | StdFee | \\" auto\\ " = \\" auto\\ " , memo_ ?: string , funds_ ?: Coin []): Promise <ExecuteResult > => {
285
+ return this ._execute (IbcMailClientExecuteMsgBuilder .sendMessage (params ), fee_ , memo_ , funds_ );
286
286
} ;
287
- receiveMessage = async (message: Message, fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
288
- return this ._execute (IbcMailClientExecuteMsgBuilder .receiveMessage (message ), fee , memo , _funds );
287
+ receiveMessage = async (message: Message, fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
288
+ return this ._execute (IbcMailClientExecuteMsgBuilder .receiveMessage (message ), fee_ , memo_ , funds_ );
289
289
} ;
290
- updateConfig = async (fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
291
- return this ._execute (IbcMailClientExecuteMsgBuilder .updateConfig (), fee , memo , _funds );
290
+ updateConfig = async (fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
291
+ return this ._execute (IbcMailClientExecuteMsgBuilder .updateConfig (), fee_ , memo_ , funds_ );
292
292
} ;
293
- _execute = async (msg: ExecuteMsg, fee : number | StdFee | \\"auto\\" = \\"auto\\", memo ?: string, _funds ?: Coin[]): Promise<ExecuteResult > => {
293
+ _execute = async (msg: ExecuteMsg, fee_ : number | StdFee | \\"auto\\" = \\"auto\\", memo_ ?: string, funds_ ?: Coin[]): Promise<ExecuteResult > => {
294
294
const moduleMsg : AppExecuteMsg <ExecuteMsg > = AppExecuteMsgFactory.executeApp(msg);
295
- return await this.accountClient.abstract.client.execute(this.accountClient.sender, await this.getAddress(), moduleMsg, fee, memo, _funds );
295
+ return await this.accountClient.abstract.client.execute(this.accountClient.sender, await this.getAddress(), moduleMsg, fee_, memo_, funds_ );
296
296
};
297
297
}"
298
298
`;
0 commit comments