-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into gas-prices-api
- Loading branch information
Showing
19 changed files
with
1,662 additions
and
136 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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,14 @@ | ||
|
||
# This is a comment. | ||
# Each line is a file pattern followed by one or more owners. | ||
# Note: CODEOWNERS are automatically requested for review on relevant PRs. | ||
# Order is important; the last matching pattern takes the most | ||
# precedence. | ||
|
||
# These owners will be the default owners for everything in | ||
# the repo unless a later match takes precedence. | ||
* @mrice32 @nicholaspai @dohaki @james-a-morris | ||
|
||
# Serverless api | ||
/api/ @mrice32 @nicholaspai @dohaki @james-a-morris @pxrl | ||
|
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 |
---|---|---|
|
@@ -4,10 +4,10 @@ | |
"private": true, | ||
"license": "AGPL-3.0-only", | ||
"dependencies": { | ||
"@across-protocol/constants": "^3.1.20", | ||
"@across-protocol/contracts": "^3.0.17", | ||
"@across-protocol/constants": "^3.1.24", | ||
"@across-protocol/contracts": "^3.0.19", | ||
"@across-protocol/contracts-v3.0.6": "npm:@across-protocol/[email protected]", | ||
"@across-protocol/sdk": "^3.3.22", | ||
"@across-protocol/sdk": "^3.3.27", | ||
"@amplitude/analytics-browser": "^2.3.5", | ||
"@balancer-labs/sdk": "1.1.6-beta.16", | ||
"@emotion/react": "^11.13.0", | ||
|
@@ -30,6 +30,8 @@ | |
"@web3-onboard/core": "^2.21.2", | ||
"@web3-onboard/gnosis": "^2.2.0", | ||
"@web3-onboard/injected-wallets": "^2.11.1", | ||
"@web3-onboard/metamask": "^2.2.0", | ||
"@web3-onboard/phantom": "^2.1.1", | ||
"@web3-onboard/react": "^2.8.13", | ||
"@web3-onboard/walletconnect": "^2.4.6", | ||
"axios": "^0.27.2", | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,23 @@ | ||
import { CHAIN_IDs, PUBLIC_NETWORKS } from "@across-protocol/constants"; | ||
import { utils as sdkUtils } from "@across-protocol/sdk"; | ||
import { ChainConfig } from "../types"; | ||
|
||
const { getDeployedAddress, getDeployedBlockNumber } = sdkUtils; | ||
|
||
const chainId = CHAIN_IDs.INK; | ||
const chainInfoBase = PUBLIC_NETWORKS[chainId]; | ||
|
||
export default { | ||
...chainInfoBase, | ||
logoPath: "./assets/logo.svg", | ||
grayscaleLogoPath: "./assets/grayscale-logo.svg", | ||
spokePool: { | ||
address: getDeployedAddress("SpokePool", chainId), | ||
blockNumber: getDeployedBlockNumber("SpokePool", chainId), | ||
}, | ||
chainId, | ||
publicRpcUrl: "https://rpc-gel.inkonchain.com", | ||
blockTimeSeconds: 1, | ||
tokens: ["WETH", "ETH"], | ||
enableCCTP: false, | ||
} as ChainConfig; |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.