Skip to content

Commit

Permalink
chore: Add OPEN bond
Browse files Browse the repository at this point in the history
  • Loading branch information
efeDaniels committed Nov 16, 2023
1 parent 62cb1ae commit 6d2dc2a
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 2 deletions.
74 changes: 74 additions & 0 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -10148,6 +10148,80 @@
"twitter": "https://twitter.com/HelloTelos",
"soldOut": true
},
{
"index": 2004,
"contractAddress": {
"42161": "0x04dA96Fb9F43491D3601F2b04424ABE7F12F700d"
},
"billType": "liquidity",
"billVersion": "V2",
"token": {
"symbol": "OPEN",
"address": {
"42161": "0x58CB98A966F62aA6F2190eB3AA03132A0c3de3D5"
},
"decimals": {
"42161": 18
},
"active": true
},
"quoteToken": {
"symbol": "ETH",
"address": {
"40": "0xfa9343c3897324496a05fc75abed6bac29f8a40f",
"56": "0x2170ed0880ac9a755fd29b2688956bd959f933f8",
"97": "0xd66c6b4f0be8ce5b39d52e0fd1344c389929b378",
"137": "0x7ceb23fd6bc0add59e62ac25578270cff1b9f619",
"42161": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1"
},
"decimals": {
"40": 18,
"56": 18,
"97": 18,
"137": 18,
"42161": 18
},
"active": true
},
"lpToken": {
"symbol": "OPEN-ETH",
"address": {
"42161": "0xC09C5B1420f33Ba6557789f15Ce6E1eb9aF1d31a"
},
"decimals": {
"42161": 18
},
"active": true,
"lpToken": true
},
"earnToken": {
"symbol": "OPEN",
"address": {
"42161": "0x58CB98A966F62aA6F2190eB3AA03132A0c3de3D5"
},
"decimals": {
"42161": 18
},
"active": true
},
"billNnftAddress": {
"42161": "0xAC707999D05C4048844B78c737D9512DFDff524d"
},
"inactive": false,
"projectLink": "https://openworld.vision/",
"twitter": "https://twitter.com/OpenWorldVision",
"audit": "https://wiki.openworld.vision/audit",
"initTime": {
"42161": 1700149206
},
"initPrice": {
"42161": 0.003660886786
},
"soldOut": false,
"billArt": {
"collection": "ApeBond_Collection1"
}
},
{
"index": 2003,
"contractAddress": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ape.swap/apeswap-lists",
"version": "1.5.46",
"version": "1.5.47",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
27 changes: 26 additions & 1 deletion src/constants/bills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { BillArtCollection, BillsConfig, BillVersion, MigrationVestingTerms } fr
// BNB Largest ID: 1000
// Polygon Largest ID: 109
// Telos Largest ID: 215
// Arbitrum Largest ID: 2003
// Arbitrum Largest ID: 2004
//Migration Bonds ID: 5007

const bills: BillsConfig[] = [
Expand Down Expand Up @@ -3077,6 +3077,31 @@ const bills: BillsConfig[] = [
/*
Arbitrum Bills - ID started from 2001
*/
{
index: 2004,
contractAddress: {
[ChainId.ARBITRUM]: '0x04dA96Fb9F43491D3601F2b04424ABE7F12F700d',
},
billType: 'liquidity',
billVersion: BillVersion.V2,
token: tokens.open,
quoteToken: tokens.eth,
lpToken: tokens.openEth,
earnToken: tokens.open,
billNnftAddress: {
[ChainId.ARBITRUM]: '0xAC707999D05C4048844B78c737D9512DFDff524d',
},
inactive: false,
projectLink: 'https://openworld.vision/',
twitter: 'https://twitter.com/OpenWorldVision',
audit: 'https://wiki.openworld.vision/audit',
initTime: { [ChainId.ARBITRUM]: 1700149206 },
initPrice: { [ChainId.ARBITRUM]: 0.003660886786 },
soldOut: false,
billArt: {
collection: BillArtCollection.ApeBond_Collection1,
},
},
{
index: 2003,
contractAddress: {
Expand Down

0 comments on commit 6d2dc2a

Please sign in to comment.