Skip to content

Commit

Permalink
Update whitelist-updatable-flatrate TS client
Browse files Browse the repository at this point in the history
  • Loading branch information
MightOfOaks committed Mar 27, 2024
1 parent 0079ca9 commit eeb9b90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ts/src/WhitelistUpdatableFlatrate.client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface WhitelistUpdatableFlatrateReadOnlyInterface {
admins: () => Promise<AdminResponse>;
addressCount: () => Promise<Uint64>;
perAddressLimit: () => Promise<Uint64>;
mintDiscountAmount: () => Promise<NullableUint64>;
mintDiscountAmount: () => Promise<Nullableuint64>;
}
export class WhitelistUpdatableFlatrateQueryClient implements WhitelistUpdatableFlatrateReadOnlyInterface {
client: CosmWasmClient;
Expand Down Expand Up @@ -100,7 +100,7 @@ export class WhitelistUpdatableFlatrateQueryClient implements WhitelistUpdatable
per_address_limit: {}
});
};
mintDiscountAmount = async (): Promise<NullableUint64> => {
mintDiscountAmount = async (): Promise<Nullableuint64> => {
return this.client.queryContractSmart(this.contractAddress, {
mint_discount_amount: {}
});
Expand Down

0 comments on commit eeb9b90

Please sign in to comment.