Skip to content

Commit

Permalink
add empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
popenta committed Feb 13, 2024
1 parent 0a34a8c commit 65230d0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,30 +29,39 @@ export interface IPlainTransactionObject {
export interface ISignature {
hex(): string;
}

export interface IAddress {
bech32(): string;
}

export interface ITransactionValue {
toString(): string;
}

export interface IAccountBalance {
toString(): string;
}

export interface INonce {
valueOf(): number;
}

export interface IChainID {
valueOf(): string;
}

export interface IGasLimit {
valueOf(): number;
}

export interface IGasPrice {
valueOf(): number;
}

export interface ITransactionVersion {
valueOf(): number;
}

export interface ITransactionOptions {
valueOf(): number;
}
Expand Down

0 comments on commit 65230d0

Please sign in to comment.