Skip to content

Commit

Permalink
Merge pull request #326 from inkonchain/chore/add-ink-contracts
Browse files Browse the repository at this point in the history
chore: add ink contracts
  • Loading branch information
eitjuh authored Jan 8, 2025
2 parents a394f9c + dcc0b0b commit 54081a0
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 15 deletions.
6 changes: 5 additions & 1 deletion src/pages/useful-information/_meta.json
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"
}
24 changes: 24 additions & 0 deletions src/pages/useful-information/ink-contracts.mdx
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" /> |
23 changes: 9 additions & 14 deletions src/pages/useful-information/ink-token-contracts.mdx
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
}

0 comments on commit 54081a0

Please sign in to comment.