-
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.
* update deps * add chain config * update sdk * generate routes and ui assets * fixes * Undo zora logo changes * add path to animate id * fix routes * add wgrass to sepolia and generate routes * fix: add missing grass logo * fix: use custom gas token in limits * fixup * fix: GRASS capital cost config * fix: GRASS on sepolia * fix: GRASS/WGRASS behavior in selector * improve: debug logs * fix: log level * fixup * fix wgrass routes * Revert "fix wgrass routes" This reverts commit 5e226fc. * fix wgrass route * update lockfile * fix lint warnings --------- Co-authored-by: Dong-Ha Kim <[email protected]>
- Loading branch information
1 parent
58fa06c
commit 7cf450a
Showing
22 changed files
with
551 additions
and
74 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
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
13 changes: 13 additions & 0 deletions
13
scripts/chain-configs/lens-sepolia/assets/grayscale-logo.svg
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.LENS_SEPOLIA; | ||
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.testnet.lens.dev", | ||
blockTimeSeconds: 1, | ||
tokens: ["GRASS", "WETH", "WGRASS"], | ||
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
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
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.