From 134319b8707cd479dc91d6832bf078bdb5c5e886 Mon Sep 17 00:00:00 2001 From: Atticus Date: Mon, 18 Mar 2024 12:15:17 -0600 Subject: [PATCH] fix(build): remove redundant exported type --- src/common/ar-io.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/common/ar-io.ts b/src/common/ar-io.ts index 59edc37e..e3d3617d 100644 --- a/src/common/ar-io.ts +++ b/src/common/ar-io.ts @@ -19,6 +19,7 @@ import { ArIOState, ArNSAuctionData, ArNSNameData, + ContractConfiguration, EpochDistributionData, EvaluationOptions, EvaluationParameters, @@ -30,15 +31,6 @@ import { } from '../types.js'; import { RemoteContract } from './contracts/remote-contract.js'; -// TODO: append this with other configuration options (e.g. local vs. remote evaluation) -export type ContractConfiguration = - | { - contract?: SmartWeaveContract; - } - | { - contractTxId: string; - }; - function isContractConfiguration( config: ContractConfiguration, ): config is { contract: SmartWeaveContract } {