-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
78 changed files
with
6,210 additions
and
4,866 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
".": "0.16.0", | ||
"packages/branding": "0.1.2", | ||
".": "0.17.0", | ||
"packages/branding": "0.2.0", | ||
"packages/bridge-ui": "0.9.1", | ||
"packages/bridge-ui-v2": "2.2.0", | ||
"packages/eventindexer": "0.8.0", | ||
"packages/bridge-ui-v2": "2.3.0", | ||
"packages/eventindexer": "0.9.0", | ||
"packages/fork-diff": "0.2.0", | ||
"packages/protocol": "0.11.0", | ||
"packages/protocol": "0.12.0", | ||
"packages/relayer": "0.8.0", | ||
"packages/status-page": "0.12.0", | ||
"packages/website": "0.11.0", | ||
"packages/website": "0.12.0", | ||
"packages/whitepaper": "1.4.0" | ||
} |
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
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,5 +1,5 @@ | ||
{ | ||
"name": "@taiko/branding", | ||
"version": "0.1.2", | ||
"version": "0.2.0", | ||
"private": true | ||
} |
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
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,19 +1,21 @@ | ||
export const recommentProcessingFee = { | ||
ethGasLimit: BigInt(900000), | ||
erc20NotDeployedGasLimit: BigInt(3100000), | ||
erc20DeployedGasLimit: BigInt(1100000), | ||
ethGasLimit: BigInt(900_000), | ||
erc20NotDeployedGasLimit: BigInt(3_100_000), | ||
erc20DeployedGasLimit: BigInt(1_100_000), | ||
}; | ||
|
||
export const processingFeeComponent = { | ||
closingDelayOptionClick: 300, | ||
intervalComputeRecommendedFee: 20000, | ||
intervalComputeRecommendedFee: 20_000, | ||
}; | ||
|
||
export const bridge = { | ||
noOwnerGasLimit: BigInt(140000), | ||
noTokenDeployedGasLimit: BigInt(3000000), | ||
export const bridgeService = { | ||
noOwnerGasLimit: BigInt(140_000), | ||
noTokenDeployedGasLimit: BigInt(3_000_000), | ||
erc20GasLimitThreshold: BigInt(2_500_000), | ||
unpredictableGasLimit: BigInt(1_000_000), | ||
}; | ||
|
||
export const pendingTransaction = { | ||
waitTimeout: 300000, | ||
waitTimeout: 300_000, | ||
}; |
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,4 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
|
Oops, something went wrong.