forked from sushiswap/sushiswap-interface
-
Notifications
You must be signed in to change notification settings - Fork 1
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' of github.com-unbreakablery:sushiswap/sushiswap…
…-interface into feat/stop-loss-with-autonomy-bot
- Loading branch information
Showing
22 changed files
with
215 additions
and
125 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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { ChainId, Token } from '@sushiswap/core-sdk' | ||
|
||
export const USDC = new Token( | ||
ChainId.ARBITRUM_NOVA, | ||
'0x750ba8b76187092B0D1E87E28daaf484d1b5273b', | ||
6, | ||
'USDC', | ||
'USD Coin' | ||
) | ||
export const WBTC = new Token( | ||
ChainId.ARBITRUM_NOVA, | ||
'0x1d05e4e72cD994cdF976181CfB0707345763564d', | ||
8, | ||
'WBTC', | ||
'Wrapped Bitcoin' | ||
) | ||
export const USDT = new Token( | ||
ChainId.ARBITRUM_NOVA, | ||
'0x52484E1ab2e2B22420a25c20FA49E173a26202Cd', | ||
8, | ||
'USDT', | ||
'Tether USD' | ||
) | ||
export const DAI = new Token( | ||
ChainId.ARBITRUM_NOVA, | ||
'0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1', | ||
18, | ||
'DAI', | ||
'Dai Stablecoin' | ||
) |
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.