Skip to content

Commit

Permalink
Merge pull request #43 from seanjameshan/fix/export-needed-types
Browse files Browse the repository at this point in the history
fix: export more types
  • Loading branch information
janek26 authored Nov 3, 2021
2 parents 7bb0e8e + e816a3b commit 3901b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3901b84

Please sign in to comment.