Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Commit

Permalink
Update common types
Browse files Browse the repository at this point in the history
  • Loading branch information
justinkchen committed Jul 25, 2018
1 parent 93c1fd0 commit fda38fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions types/common.ts
@@ -1,6 +1,11 @@
import { BigNumber } from "bignumber.js";
import * as _ from "lodash";

export type Address = string;
export type UInt = number | BigNumber;
export type Bytes32 = string;
export type Bytes = string;

export interface TxData {
from?: string;
gas?: number;
Expand Down Expand Up @@ -45,7 +50,7 @@ export interface IssuanceOrder {
}

export interface ECSig {
v: number | BigNumber;
v: UInt;
r: string;
s: string;
}
Expand All @@ -56,11 +61,6 @@ export interface Log {
args: any;
}

export type Address = string;
export type UInt = number | BigNumber;
export type Bytes32 = string;
export type Bytes = string;

export enum SolidityTypes {
Address = 'address',
Uint256 = 'uint256',
Expand Down

0 comments on commit fda38fa

Please sign in to comment.