@@ -25,7 +25,7 @@ exports[`execute classes array types 1`] = `
2525 this.allTokens = this.allTokens.bind(this );
2626 this.minter = this.minter.bind(this );
2727 }
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 > => {
2929 return await this .client .execute (this .sender , this .contractAddress , {
3030 proposed_new_owner: {}
3131 }, fee_ , memo_ , funds_ );
@@ -36,7 +36,7 @@ exports[`execute classes array types 1`] = `
3636 }: {
3737 limit?: number;
3838 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 > => {
4040 return await this .client .execute (this .sender , this .contractAddress , {
4141 allowed_vaults: {
4242 limit ,
@@ -50,15 +50,15 @@ exports[`execute classes array types 1`] = `
5050 } : {
5151 limit ?: number ;
5252 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 > => {
5454 return await this .client .execute (this .sender , this .contractAddress , {
5555 all_debt_shares: {
5656 limit ,
5757 start_after: startAfter
5858 }
5959 }, fee_ , memo_ , funds_ );
6060 } ;
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 > => {
6262 return await this .client .execute (this .sender , this .contractAddress , {
6363 all_previous_owners: {}
6464 }, fee_ , memo_ , funds_ );
@@ -69,7 +69,7 @@ exports[`execute classes array types 1`] = `
6969 } : {
7070 includeExpired ?: boolean ;
7171 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 > => {
7373 return await this .client .execute (this .sender , this .contractAddress , {
7474 owner_of: {
7575 include_expired: includeExpired ,
@@ -85,7 +85,7 @@ exports[`execute classes array types 1`] = `
8585 includeExpired ?: boolean ;
8686 spender : string ;
8787 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 > => {
8989 return await this .client .execute (this .sender , this .contractAddress , {
9090 approval: {
9191 include_expired: includeExpired ,
@@ -100,7 +100,7 @@ exports[`execute classes array types 1`] = `
100100 } : {
101101 includeExpired ?: boolean ;
102102 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 > => {
104104 return await this .client .execute (this .sender , this .contractAddress , {
105105 approvals: {
106106 include_expired: includeExpired ,
@@ -118,7 +118,7 @@ exports[`execute classes array types 1`] = `
118118 limit ?: number ;
119119 owner : string ;
120120 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 > => {
122122 return await this .client .execute (this .sender , this .contractAddress , {
123123 all_operators: {
124124 include_expired: includeExpired ,
@@ -128,12 +128,12 @@ exports[`execute classes array types 1`] = `
128128 }
129129 }, fee_ , memo_ , funds_ );
130130 } ;
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 > => {
132132 return await this .client .execute (this .sender , this .contractAddress , {
133133 num_tokens: {}
134134 }, fee_ , memo_ , funds_ );
135135 } ;
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 > => {
137137 return await this .client .execute (this .sender , this .contractAddress , {
138138 contract_info: {}
139139 }, fee_ , memo_ , funds_ );
@@ -142,7 +142,7 @@ exports[`execute classes array types 1`] = `
142142 tokenId
143143 } : {
144144 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 > => {
146146 return await this .client .execute (this .sender , this .contractAddress , {
147147 nft_info: {
148148 token_id: tokenId
@@ -155,7 +155,7 @@ exports[`execute classes array types 1`] = `
155155 } : {
156156 includeExpired ?: boolean ;
157157 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 > => {
159159 return await this .client .execute (this .sender , this .contractAddress , {
160160 all_nft_info: {
161161 include_expired: includeExpired ,
@@ -171,7 +171,7 @@ exports[`execute classes array types 1`] = `
171171 limit ?: number ;
172172 owner : string ;
173173 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 > => {
175175 return await this .client .execute (this .sender , this .contractAddress , {
176176 tokens: {
177177 limit ,
@@ -186,15 +186,15 @@ exports[`execute classes array types 1`] = `
186186 } : {
187187 limit ?: number ;
188188 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 > => {
190190 return await this .client .execute (this .sender , this .contractAddress , {
191191 all_tokens: {
192192 limit ,
193193 start_after: startAfter
194194 }
195195 }, fee_ , memo_ , funds_ );
196196 } ;
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 > => {
198198 return await this .client .execute (this .sender , this .contractAddress , {
199199 minter: {}
200200 }, fee_ , memo_ , funds_ );
0 commit comments