-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: do not allow sending if failed to request
estimategas-onledger
(…
…#7696) * fix: do not allow sending if failed to request estimategas-onledger * fix: logic * fix: remove unnecessary try/catch * feat: remove redundant promise resolve & reject
- Loading branch information
1 parent
25b9993
commit c3b62e7
Showing
7 changed files
with
42 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
export * from './layer2-asset-allowance.interface' | ||
export * from './layer2-gas-estimate-payload.interface' | ||
export * from './layer2-parameters.interface' | ||
export * from './layer2-smart-contract-call-data.interface' | ||
export * from './layer2-transfer-allowance-metadata.interface' |
4 changes: 4 additions & 0 deletions
4
packages/shared/lib/core/layer-2/interfaces/layer2-gas-estimate-payload.interface.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export interface ILayer2GasEstimatePayload { | ||
gasBurned?: number | ||
gasFeeCharged?: number | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters