Skip to content

Commit

Permalink
fix: more types
Browse files Browse the repository at this point in the history
  • Loading branch information
janek26 committed Nov 3, 2021
1 parent c51fe40 commit e816a3b
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 e816a3b

Please sign in to comment.