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

feat: 🎸 list farms aptos #11122

Merged
merged 1 commit into from
Jan 8, 2025
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
48 changes: 48 additions & 0 deletions apps/aptos/config/constants/farms/1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,54 @@ const farms: SerializedFarmConfig[] = [
aptIncentiveInfo: 0,
},
},
{
pid: 25,
lpSymbol: 'APT-lzUSDT LP',
lpAddress:
'0xc7efb4076dbe143cbcd98cfaaa929ecfc8f299203dfff63b95ccb6bfe19850fa::swap::LPToken<0x1::aptos_coin::AptosCoin, 0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDT>',
token: mainnetTokens.lzusdt, // lzUSDT
quoteToken: mainnetTokens.apt, // APT
dual: {
token: mainnetTokens.apt,
aptIncentiveInfo: 0,
},
},
{
pid: 26,
lpSymbol: 'MOD-lzUSDC LP',
lpAddress:
'0xc7efb4076dbe143cbcd98cfaaa929ecfc8f299203dfff63b95ccb6bfe19850fa::swap::LPToken<0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD, 0xf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa::asset::USDC>',
token: mainnetTokens.MOD, // MOD
quoteToken: mainnetTokens.lzusdc, // lzUSDC
dual: {
token: mainnetTokens.apt,
aptIncentiveInfo: 0,
},
},
{
pid: 27,
lpSymbol: 'aBTC-APT LP',
lpAddress:
'0xc7efb4076dbe143cbcd98cfaaa929ecfc8f299203dfff63b95ccb6bfe19850fa::swap::LPToken<0x4e1854f6d332c9525e258fb6e66f84b6af8aba687bbcb832a24768c4e175feec::abtc::ABTC, 0x1::aptos_coin::AptosCoin>',
token: mainnetTokens.aBTC, // aBTC
quoteToken: mainnetTokens.apt,
dual: {
token: mainnetTokens.apt,
aptIncentiveInfo: 0,
},
},
{
pid: 28,
lpSymbol: 'MOOMOO-APT LP',
lpAddress:
'0xc7efb4076dbe143cbcd98cfaaa929ecfc8f299203dfff63b95ccb6bfe19850fa::swap::LPToken<0xc5fbbcc4637aeebb4e732767abee8a21f2b0776f73b73e16ce13e7d31d6700da::MOOMOO::MOOMOO, 0x1::aptos_coin::AptosCoin>',
token: mainnetTokens.MOOMOO, // MOOMOO
quoteToken: mainnetTokens.apt,
dual: {
token: mainnetTokens.apt,
aptIncentiveInfo: 0,
},
},
].map((p) => ({
...p,
lpAddress: p.lpAddress as `0x${string}`,
Expand Down
26 changes: 26 additions & 0 deletions apps/aptos/config/constants/tokens/1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,30 @@ export const mainnetTokens = {
'Staked Aptos Coin',
'https://stake.amnis.finance/',
),
aBTC: new Coin(
ChainId.MAINNET,
'0x4e1854f6d332c9525e258fb6e66f84b6af8aba687bbcb832a24768c4e175feec::abtc::ABTC',
8,
'aBTC',
'Aptos Bitcoin',
'https://www.echo-protocol.xyz/',
),

MOOMOO: new Coin(
ChainId.MAINNET,
'0xc5fbbcc4637aeebb4e732767abee8a21f2b0776f73b73e16ce13e7d31d6700da::MOOMOO::MOOMOO',
8,
'MOOMOO',
'MOOMOO Token',
'https://www.moo.meme/',
),

MOD: new Coin(
ChainId.MAINNET,
'0x6f986d146e4a90b828d8c12c14b6f4e003fdff11a8eecceceb63744363eaac01::mod_coin::MOD',
8,
'MOD',
'MOD Token',
'https://www.thala.fi/',
),
}
Loading