Skip to content

Commit

Permalink
feat: 🎸 list farms
Browse files Browse the repository at this point in the history
  • Loading branch information
chef-ryan committed Jan 2, 2025
1 parent 0fe8ccd commit 239c0cb
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
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/',
),
}

0 comments on commit 239c0cb

Please sign in to comment.