From a31135697b0853fe30633d8f98b4b8072bf5fe32 Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Wed, 8 Mar 2023 09:27:18 +0000 Subject: [PATCH] fix linting --- ts-packages/types/src/types/global.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ts-packages/types/src/types/global.ts b/ts-packages/types/src/types/global.ts index b095628f1f..bcd08f738a 100644 --- a/ts-packages/types/src/types/global.ts +++ b/ts-packages/types/src/types/global.ts @@ -157,7 +157,7 @@ export interface ContractState { vesting_contract_address: string; rewarding_denom: string; params: ContractStateParams; -}; +} export type VestingAccountNode = { amount: Coin; @@ -167,34 +167,34 @@ export type VestingAccountNode = { export interface VestAccounts { account_id: string; owner: string; -}; +} export interface VestingAccountsPaged { accounts: VestAccounts[]; start_next_after: string; -}; +} export interface VestingAccountsCoinPaged { account_id: string; owner: string; still_vesting: Coin; -}; +} export interface DelegationTimes { account_id: number; delegation_timestamps: []; mix_id: number; owner: string; -}; +} export interface DelegationBlock { account_id: number; amount: string; block_timestamp: number; mix_id: number; -}; +} export interface Delegations { delegations: DelegationBlock[]; start_next_after: string | null; -}; +}