Skip to content

Commit

Permalink
add gas types
Browse files Browse the repository at this point in the history
  • Loading branch information
nnoln committed Sep 17, 2024
1 parent 1a83a2e commit ae0fbe5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsquid/squid-types",
"version": "0.1.104",
"version": "0.1.105",
"description": "JS and TS types relating to 0xsquid related projects.",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
14 changes: 14 additions & 0 deletions src/gas/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
export interface FeeData {
lastBaseFeePerGas?: string;
maxFeePerGas?: string;
maxPriorityFeePerGas?: string;
gasPrice: string;
}

export interface AxelarFeeData {
baseFee: string;
expressFee: string;
executeMultiplier: string;
expressMultiplier: string;
expressSupported: boolean;
}
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ export * from "./wrappers";
export * from "./path";
export * from "./compliance";
export * from "./rfq";
export * from "./gas";

0 comments on commit ae0fbe5

Please sign in to comment.