-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #326 from inkonchain/chore/add-ink-contracts
chore: add ink contracts
- Loading branch information
Showing
3 changed files
with
38 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
{ | ||
"contracts": "Contracts", | ||
"ink-token-contracts": "Ink Token Contracts", | ||
"ink-contracts": "Ink Contracts", | ||
"ink-token-contracts": { | ||
"title": "Ink Token Contracts", | ||
"display": "hidden" | ||
}, | ||
"the-superchain": "The Superchain" | ||
} |
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,24 @@ | ||
import { Callout } from "nextra/components"; | ||
import CopyableCode from "@/components/CopyableCode"; | ||
|
||
# Ink Contracts | ||
|
||
<Callout type="info" emoji="ℹ️"> | ||
This page is a work in progress. If there are missing tokens, please feel free | ||
to edit this page by submitting a PR to our | ||
[Github](https://github.com/inkonchain). | ||
</Callout> | ||
|
||
| Name | Contract Address | | ||
| ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| CRV | <CopyableCode code="0xAC73671a1762FE835208Fb93b7aE7490d1c2cCb3" href="https://explorer.inkonchain.com/token/0xAC73671a1762FE835208Fb93b7aE7490d1c2cCb3" /> | | ||
| crvUSD | <CopyableCode code="0x39fec550CC6DDCEd810eCCfA9B2931b4B5f2344D" href="https://explorer.inkonchain.com/token/0x39fec550CC6DDCEd810eCCfA9B2931b4B5f2344D" /> | | ||
| FPI | <CopyableCode code="0x90581eCa9469D8D7F5D3B60f4715027aDFCf7927" href="https://explorer.inkonchain.com/address/0x90581eCa9469D8D7F5D3B60f4715027aDFCf7927" /> | | ||
| frxETH | <CopyableCode code="0x43eDD7f3831b08FE70B7555ddD373C8bF65a9050" href="https://explorer.inkonchain.com/address/0x43eDD7f3831b08FE70B7555ddD373C8bF65a9050" /> | | ||
| frxUSD | <CopyableCode code="0x80eede496655fb9047dd39d9f418d5483ed600df" href="https://explorer.inkonchain.com/token/0x80eede496655fb9047dd39d9f418d5483ed600df" /> | | ||
| FXS | <CopyableCode code="0x64445f0aecc51e94ad52d8ac56b7190e764e561a" href="https://explorer.inkonchain.com/address/0x64445f0aecc51e94ad52d8ac56b7190e764e561a" /> | | ||
| sfrxETH | <CopyableCode code="0x3ec3849c33291a9ef4c5db86de593eb4a37fde45" href="https://explorer.inkonchain.com/address/0x3ec3849c33291a9ef4c5db86de593eb4a37fde45" /> | | ||
| sfrxUSD | <CopyableCode code="0x5bff88ca1442c2496f7e475e9e7786383bc070c0" href="https://explorer.inkonchain.com/token/0x5bff88ca1442c2496f7e475e9e7786383bc070c0" /> | | ||
| USDC.e | <CopyableCode code="0xF1815bd50389c46847f0Bda824eC8da914045D14" href="https://explorer.inkonchain.com/token/0xF1815bd50389c46847f0Bda824eC8da914045D14" /> | | ||
| USDT | Coming soon | | ||
| WETH9 | <CopyableCode code="0x4200000000000000000000000000000000000006" href="https://explorer.inkonchain.com/token/0x4200000000000000000000000000000000000006" /> | |
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,17 +1,12 @@ | ||
import { Callout } from "nextra/components"; | ||
import CopyableCode from "@/components/CopyableCode"; | ||
import { useEffect } from 'react' | ||
import { useRouter } from 'next/router' | ||
|
||
# Ink Token Contracts | ||
export default function Redirect() { | ||
const router = useRouter() | ||
|
||
<Callout type="info" emoji="ℹ️"> | ||
This page is a work in progress. If there are missing tokens, please feel free | ||
to edit this page by submitting a PR to our | ||
[Github](https://github.com/inkonchain). | ||
</Callout> | ||
useEffect(() => { | ||
router.replace('/useful-information/ink-contracts') | ||
}, []) | ||
|
||
| Name | Contract Address | | ||
| ----- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| WETH9 | <CopyableCode code="0x4200000000000000000000000000000000000006" href="https://explorer.inkonchain.com/token/0x4200000000000000000000000000000000000006" /> | | ||
| USDC | <CopyableCode code="0xF1815bd50389c46847f0Bda824eC8da914045D14" href="https://explorer.inkonchain.com/token/0xF1815bd50389c46847f0Bda824eC8da914045D14" /> | | ||
| USDT | Coming soon | | ||
| DAI | Coming soon | | ||
return null | ||
} |