From 739511cfb3f423d3145fc77afd8dbf4a7cfef79b Mon Sep 17 00:00:00 2001 From: Chris Maniewski Date: Thu, 31 Oct 2024 00:31:42 +0800 Subject: [PATCH] fix: export ContractConfig and Address --- packages/sdk/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/sdk/src/index.ts b/packages/sdk/src/index.ts index 62328f5b1..bc433aff2 100644 --- a/packages/sdk/src/index.ts +++ b/packages/sdk/src/index.ts @@ -1,6 +1,6 @@ export type { ContractReceipt, ContractTransaction } from 'ethers'; export type { TransactionResponse } from '@ethersproject/abstract-provider'; -export type { Abi } from 'abitype'; +export type { Abi, Address } from 'abitype'; export { type AnnotationData, @@ -41,6 +41,6 @@ export { } from '@colony/tokens'; export * from './ColonyNetwork/index.js'; -export type { ContractOptions } from './ContractConfig.js'; +export { type ContractOptions, ContractConfig } from './ContractConfig.js'; export * from './TxCreator/index.js'; export type { ParsedLogTransactionReceipt } from './types.js';