From 6384a004bb6332d392649fd299110422da9a4c5c Mon Sep 17 00:00:00 2001 From: n0mbr3al3at0r10 Date: Tue, 20 Feb 2024 11:51:01 -0300 Subject: [PATCH] chore: added sepolia bond --- config/bills.json | 73 ++++++++++++++++++++++++++++++++++++++++++ src/constants/bills.ts | 25 +++++++++++++++ 2 files changed, 98 insertions(+) diff --git a/config/bills.json b/config/bills.json index e63d9a67..6c78e537 100644 --- a/config/bills.json +++ b/config/bills.json @@ -14222,5 +14222,78 @@ "billArt": { "collection": "ApeBond_Collection1" } + }, + { + "index": 123456789, + "contractAddress": { + "11155111": "0x49cC6aE319388906094D6a46eB90A521a8A1d28b" + }, + "billType": "reserve", + "billVersion": "V2", + "token": { + "symbol": "TABOND", + "address": { + "2424": "0x765FAE7497559175A73aa223894047c213CA5c82", + "11155111": "0x7039F6DDB900762c33842e406fB908EB8a03fB84" + }, + "decimals": { + "2424": 18, + "11155111": 18 + }, + "active": true + }, + "quoteToken": { + "symbol": "TABOND", + "address": { + "2424": "0x765FAE7497559175A73aa223894047c213CA5c82", + "11155111": "0x7039F6DDB900762c33842e406fB908EB8a03fB84" + }, + "decimals": { + "2424": 18, + "11155111": 18 + }, + "active": true + }, + "lpToken": { + "symbol": "TABOND", + "address": { + "2424": "0x765FAE7497559175A73aa223894047c213CA5c82", + "11155111": "0x7039F6DDB900762c33842e406fB908EB8a03fB84" + }, + "decimals": { + "2424": 18, + "11155111": 18 + }, + "active": true + }, + "earnToken": { + "symbol": "TABOND", + "address": { + "2424": "0x765FAE7497559175A73aa223894047c213CA5c82", + "11155111": "0x7039F6DDB900762c33842e406fB908EB8a03fB84" + }, + "decimals": { + "2424": 18, + "11155111": 18 + }, + "active": true + }, + "billNnftAddress": { + "11155111": "0x4DFc86Ad7FAb73D1A747Fb60856C31Eba66CA994" + }, + "inactive": false, + "projectLink": "https://ape.bond/", + "twitter": "https://twitter.com/apebond", + "audit": "https://paladinsec.co/projects/apeswap/", + "initTime": { + "11155111": 1702472400 + }, + "initPrice": { + "11155111": 1 + }, + "soldOut": false, + "billArt": { + "collection": "ApeBond_Collection1" + } } ] diff --git a/src/constants/bills.ts b/src/constants/bills.ts index 96d18634..0ba2c5a0 100644 --- a/src/constants/bills.ts +++ b/src/constants/bills.ts @@ -4340,6 +4340,31 @@ const bills: BillsConfig[] = [ collection: BillArtCollection.ApeBond_Collection1, }, }, + { + index: 123456789, // tabond + contractAddress: { + [ChainId.SEPOLIA]: '0x49cC6aE319388906094D6a46eB90A521a8A1d28b', + }, + billType: 'reserve', + billVersion: BillVersion.V2, + token: tokens.tabond, + quoteToken: tokens.tabond, + lpToken: tokens.tabond, + earnToken: tokens.tabond, + billNnftAddress: { + [ChainId.SEPOLIA]: '0x4DFc86Ad7FAb73D1A747Fb60856C31Eba66CA994', + }, + inactive: false, + projectLink: 'https://ape.bond/', + twitter: 'https://twitter.com/apebond', + audit: 'https://paladinsec.co/projects/apeswap/', + initTime: { [ChainId.SEPOLIA]: 1702472400 }, + initPrice: { [ChainId.SEPOLIA]: 1 }, + soldOut: false, + billArt: { + collection: BillArtCollection.ApeBond_Collection1, + }, + }, ] export default bills