From 582bbd08a6981262c6d0b48bca63a09aaf361418 Mon Sep 17 00:00:00 2001 From: willclarktech Date: Thu, 4 Feb 2021 13:52:13 +0000 Subject: [PATCH] cosmwasm-launchpad: Reformat with prettier --- .../cosmwasm-launchpad/src/cw3cosmwasmclient.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/packages/cosmwasm-launchpad/src/cw3cosmwasmclient.ts b/packages/cosmwasm-launchpad/src/cw3cosmwasmclient.ts index ef8efb9d..226e049e 100644 --- a/packages/cosmwasm-launchpad/src/cw3cosmwasmclient.ts +++ b/packages/cosmwasm-launchpad/src/cw3cosmwasmclient.ts @@ -96,9 +96,10 @@ export class Cw3CosmWasmClient extends SigningCosmWasmClient { return this.queryContractSmart(this.cw3ContractAddress, { proposal: { proposal_id: proposalId } }); } - public listProposals({ startAfter, limit }: StartAfterNumberPaginationOptions = {}): Promise< - ProposalsResult - > { + public listProposals({ + startAfter, + limit, + }: StartAfterNumberPaginationOptions = {}): Promise { return this.queryContractSmart(this.cw3ContractAddress, { list_proposals: { start_after: startAfter, @@ -107,9 +108,10 @@ export class Cw3CosmWasmClient extends SigningCosmWasmClient { }); } - public reverseProposals({ startBefore, limit }: StartBeforeNumberPaginationOptions = {}): Promise< - ProposalsResult - > { + public reverseProposals({ + startBefore, + limit, + }: StartBeforeNumberPaginationOptions = {}): Promise { return this.queryContractSmart(this.cw3ContractAddress, { reverse_proposals: { start_before: startBefore,