Skip to content

Commit

Permalink
Fix issue with loading JSON ABI with internalType property (#728).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jun 22, 2021
1 parent f9d0964 commit e8a0144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/abi/src.ts/fragments.ts
Expand Up @@ -11,6 +11,7 @@ export interface JsonFragmentType {
readonly name?: string;
readonly indexed?: boolean;
readonly type?: string;
readonly internalType?: any; // @TODO: in v6 reduce type
readonly components?: ReadonlyArray<JsonFragmentType>;
}

Expand All @@ -30,7 +31,6 @@ export interface JsonFragment {
readonly gas?: string;
};


const _constructorGuard = { };

// AST Node parser state
Expand Down

0 comments on commit e8a0144

Please sign in to comment.