@@ -73,7 +73,7 @@ export interface 98Interface extends 98ReadOnlyInterface {
73
73
} : {
74
74
id : number ;
75
75
instantiateMsg : Binary ;
76
- } , fee ?: number | StdFee | "auto" , memo ?: string , _funds ?: Coin [ ] ) => Promise < ExecuteResult > ;
76
+ } , fee_ ?: number | StdFee | "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) => Promise < ExecuteResult > ;
77
77
registerPlugin : ( {
78
78
checksum,
79
79
codeId,
@@ -88,12 +88,12 @@ export interface 98Interface extends 98ReadOnlyInterface {
88
88
ipfsHash : string ;
89
89
name : string ;
90
90
version : string ;
91
- } , fee ?: number | StdFee | "auto" , memo ?: string , _funds ?: Coin [ ] ) => Promise < ExecuteResult > ;
91
+ } , fee_ ?: number | StdFee | "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) => Promise < ExecuteResult > ;
92
92
unregisterPlugin : ( {
93
93
id
94
94
} : {
95
95
id : number ;
96
- } , fee ?: number | StdFee | "auto" , memo ?: string , _funds ?: Coin [ ] ) => Promise < ExecuteResult > ;
96
+ } , fee_ ?: number | StdFee | "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) => Promise < ExecuteResult > ;
97
97
updatePlugin : ( {
98
98
checksum,
99
99
codeId,
@@ -110,17 +110,17 @@ export interface 98Interface extends 98ReadOnlyInterface {
110
110
ipfsHash ?: string ;
111
111
name ?: string ;
112
112
version ?: string ;
113
- } , fee ?: number | StdFee | "auto" , memo ?: string , _funds ?: Coin [ ] ) => Promise < ExecuteResult > ;
113
+ } , fee_ ?: number | StdFee | "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) => Promise < ExecuteResult > ;
114
114
updateRegistryFee : ( {
115
115
newFee
116
116
} : {
117
117
newFee : Coin ;
118
- } , fee ?: number | StdFee | "auto" , memo ?: string , _funds ?: Coin [ ] ) => Promise < ExecuteResult > ;
118
+ } , fee_ ?: number | StdFee | "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) => Promise < ExecuteResult > ;
119
119
updateDaoAddr : ( {
120
120
newAddr
121
121
} : {
122
122
newAddr : string ;
123
- } , fee ?: number | StdFee | "auto" , memo ?: string , _funds ?: Coin [ ] ) => Promise < ExecuteResult > ;
123
+ } , fee_ ?: number | StdFee | "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) => Promise < ExecuteResult > ;
124
124
}
125
125
export class 98 Client extends 98 QueryClient implements 98 Interface {
126
126
client : SigningCosmWasmClient ;
@@ -144,13 +144,13 @@ export class 98Client extends 98QueryClient implements 98Interface {
144
144
} : {
145
145
id : number ;
146
146
instantiateMsg : Binary ;
147
- } , fee : number | StdFee | "auto" = "auto" , memo ?: string , _funds ?: Coin [ ] ) : Promise < ExecuteResult > => {
147
+ } , fee_ : number | StdFee | "auto" = "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) : Promise < ExecuteResult > => {
148
148
return await this . client . execute ( this . sender , this . contractAddress , {
149
149
proxy_install_plugin : {
150
150
id,
151
151
instantiate_msg : instantiateMsg
152
152
}
153
- } , fee , memo , _funds ) ;
153
+ } , fee_ , memo_ , funds_ ) ;
154
154
} ;
155
155
registerPlugin = async ( {
156
156
checksum,
@@ -166,7 +166,7 @@ export class 98Client extends 98QueryClient implements 98Interface {
166
166
ipfsHash : string ;
167
167
name : string ;
168
168
version : string ;
169
- } , fee : number | StdFee | "auto" = "auto" , memo ?: string , _funds ?: Coin [ ] ) : Promise < ExecuteResult > => {
169
+ } , fee_ : number | StdFee | "auto" = "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) : Promise < ExecuteResult > => {
170
170
return await this . client . execute ( this . sender , this . contractAddress , {
171
171
register_plugin : {
172
172
checksum,
@@ -176,18 +176,18 @@ export class 98Client extends 98QueryClient implements 98Interface {
176
176
name,
177
177
version
178
178
}
179
- } , fee , memo , _funds ) ;
179
+ } , fee_ , memo_ , funds_ ) ;
180
180
} ;
181
181
unregisterPlugin = async ( {
182
182
id
183
183
} : {
184
184
id : number ;
185
- } , fee : number | StdFee | "auto" = "auto" , memo ?: string , _funds ?: Coin [ ] ) : Promise < ExecuteResult > => {
185
+ } , fee_ : number | StdFee | "auto" = "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) : Promise < ExecuteResult > => {
186
186
return await this . client . execute ( this . sender , this . contractAddress , {
187
187
unregister_plugin : {
188
188
id
189
189
}
190
- } , fee , memo , _funds ) ;
190
+ } , fee_ , memo_ , funds_ ) ;
191
191
} ;
192
192
updatePlugin = async ( {
193
193
checksum,
@@ -205,7 +205,7 @@ export class 98Client extends 98QueryClient implements 98Interface {
205
205
ipfsHash ?: string ;
206
206
name ?: string ;
207
207
version ?: string ;
208
- } , fee : number | StdFee | "auto" = "auto" , memo ?: string , _funds ?: Coin [ ] ) : Promise < ExecuteResult > => {
208
+ } , fee_ : number | StdFee | "auto" = "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) : Promise < ExecuteResult > => {
209
209
return await this . client . execute ( this . sender , this . contractAddress , {
210
210
update_plugin : {
211
211
checksum,
@@ -216,28 +216,28 @@ export class 98Client extends 98QueryClient implements 98Interface {
216
216
name,
217
217
version
218
218
}
219
- } , fee , memo , _funds ) ;
219
+ } , fee_ , memo_ , funds_ ) ;
220
220
} ;
221
221
updateRegistryFee = async ( {
222
222
newFee
223
223
} : {
224
224
newFee : Coin ;
225
- } , fee : number | StdFee | "auto" = "auto" , memo ?: string , _funds ?: Coin [ ] ) : Promise < ExecuteResult > => {
225
+ } , fee_ : number | StdFee | "auto" = "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) : Promise < ExecuteResult > => {
226
226
return await this . client . execute ( this . sender , this . contractAddress , {
227
227
update_registry_fee : {
228
228
new_fee : newFee
229
229
}
230
- } , fee , memo , _funds ) ;
230
+ } , fee_ , memo_ , funds_ ) ;
231
231
} ;
232
232
updateDaoAddr = async ( {
233
233
newAddr
234
234
} : {
235
235
newAddr : string ;
236
- } , fee : number | StdFee | "auto" = "auto" , memo ?: string , _funds ?: Coin [ ] ) : Promise < ExecuteResult > => {
236
+ } , fee_ : number | StdFee | "auto" = "auto" , memo_ ?: string , funds_ ?: Coin [ ] ) : Promise < ExecuteResult > => {
237
237
return await this . client . execute ( this . sender , this . contractAddress , {
238
238
update_dao_addr : {
239
239
new_addr : newAddr
240
240
}
241
- } , fee , memo , _funds ) ;
241
+ } , fee_ , memo_ , funds_ ) ;
242
242
} ;
243
243
}
0 commit comments