Skip to content

Commit

Permalink
Update fee-token to use bigint
Browse files Browse the repository at this point in the history
  • Loading branch information
therealjmj committed Jun 1, 2023
1 parent cf89bca commit 07c145a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 0 additions & 4 deletions src/models/fee-token.ts

This file was deleted.

1 change: 0 additions & 1 deletion src/models/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
export * from './artifact';
export * from './blocked-address';
export * from './fee-token';
export * from './function-types';
export * from './merkletree-scan';
export * from './network-config';
Expand Down
5 changes: 5 additions & 0 deletions src/models/response-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ export type TransactionGasDetailsType2 = {
maxPriorityFeePerGas: bigint;
};

export type FeeTokenDetails = {
tokenAddress: string;
feePerUnitGas: bigint;
};

export enum ChainType {
EVM = 0,
}
Expand Down

0 comments on commit 07c145a

Please sign in to comment.