Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add DUCKIES token + Update readme #54

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ Twitter Handle:

```
Point of Contact Telegram:
Did you add @liquiditymonkey as a contact on Telegram?:
Did you send a message to the Liquidity Monkey?:
Did you add @JulianApeSwap as a contact on Telegram?:
Did you send a message to Julian?:
```

**Additional Details (Optional):**
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/comment-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Thank you for submitting your pull request, last step is to send the link of your PR to the [liquidity Monkey](https://t.me/liquiditymonkey), that way we can review as quickly as possible! '
body: 'Thank you for submitting your pull request, last step is to send the link of your PR to [Julian](https://t.me/JulianApeSwap), that way we can review as quickly as possible! '
})
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,6 @@ We're committed to providing you with the best support possible. If you have any

- [Discord](https://discord.com/invite/ApeSwap)

- [Telegram](https://t.me/liquiditymonkey)
- [Telegram](https://t.me/JulianApeSwap)

Thank you for choosing ApeSwap! We're looking forward to working with you and helping your project thrive.
21 changes: 21 additions & 0 deletions config/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -1559,6 +1559,27 @@
"telegramUrl": "https://t.me/HyperGPTai"
}
},
{
"tokenSymbol": "DUCKIES",
"tokenName": "Yellow Duckies",
"tokenLogoUrl": "https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/DUCKIES.svg",
"tokenAddresses": [
{
"address": "0x18e73a5333984549484348a94f4d219f4fab7b81",
"chainId": "137"
}
],
"knownOwners": [
"0x046bbdd927fc635dd6de7cf4efdad3e767274074",
"0x801b684e7854493e3ada893343d3e288cfcee1ec"
],
"profileLinks": {
"siteUrl": "https://www.yellow.org/duckies",
"twitterUrl": "https://twitter.com/Yellow",
"discordUrl": "https://discord.com/invite/DKBjCg6rmT",
"telegramUrl": "https://t.me/yellow_org"
}
},
{
"tokenSymbol": "USDC",
"tokenLogoUrl": "https://cryptologos.cc/logos/usd-coin-usdc-logo.png?v=024",
Expand Down
13 changes: 13 additions & 0 deletions src/constants/verifiedAssets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,19 @@ const verifiedAssets: AddressMapping[] = [
telegramUrl: 'https://t.me/HyperGPTai',
},
},
{
tokenSymbol: 'DUCKIES',
tokenName: 'Yellow Duckies',
tokenLogoUrl: 'https://raw.githubusercontent.com/ApeSwapFinance/lhd-config/main/logos/DUCKIES.svg',
tokenAddresses: [{ address: '0x18e73A5333984549484348A94f4D219f4faB7b81', chainId: '137' }],
knownOwners: ['0x046bBDD927FC635DD6DE7Cf4eFDAD3E767274074', '0x801b684E7854493E3aDa893343D3E288CfcEE1Ec'],
profileLinks: {
siteUrl: 'https://www.yellow.org/duckies',
twitterUrl: 'https://twitter.com/Yellow',
discordUrl: 'https://discord.com/invite/DKBjCg6rmT',
telegramUrl: 'https://t.me/yellow_org',
},
},
]

export default verifiedAssets
Loading