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 } {