diff --git a/src/contract.ts b/src/contract.ts index 0c74a3894..8abd22e9f 100644 --- a/src/contract.ts +++ b/src/contract.ts @@ -6,8 +6,8 @@ import { Abi } from './types'; import { BigNumberish, toBN } from './utils/number'; import { getSelectorFromName } from './utils/starknet'; -type Args = { [inputName: string]: string | string[] }; -type Calldata = string[]; +export type Args = { [inputName: string]: string | string[] }; +export type Calldata = string[]; function parseFelt(candidate: string): BN { try {