Skip to content

Commit

Permalink
chore: Updated CRUIZE bond
Browse files Browse the repository at this point in the history
  • Loading branch information
obiedobo committed Jul 31, 2023
1 parent 6709a60 commit 9fd607c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
9 changes: 6 additions & 3 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -7346,7 +7346,7 @@
{
"index": 2003,
"contractAddress": {
"42161": "0xb4b18300289d257d1F341E6240d9Fe9B0F474ADd"
"42161": "0xb5022e9DE06793D74c7892cD0e7D820cdEd05611"
},
"billType": "reserve",
"billVersion": "V2",
Expand Down Expand Up @@ -7406,20 +7406,23 @@
"decimals": {
"42161": 18
},
"liquidityDex": {
"42161": "UniswapV3"
},
"active": true
},
"billNnftAddress": {
"42161": "0xAC707999D05C4048844B78c737D9512DFDff524d"
},
"inactive": true,
"inactive": false,
"projectLink": "https://www.cruize.finance/",
"twitter": "https://twitter.com/CruizeFinance",
"audit": "https://docs.cruize.finance/technical-details/audits",
"initTime": {
"42161": 1689955200
},
"initPrice": {
"42161": 0.0925
"42161": 0.0202
},
"soldOut": false
},
Expand Down
3 changes: 3 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -1822,6 +1822,9 @@
"decimals": {
"42161": 18
},
"liquidityDex": {
"42161": "UniswapV3"
},
"active": true
},
"xcur": {
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.4.5",
"version": "1.4.6",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
6 changes: 3 additions & 3 deletions src/constants/bills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2231,7 +2231,7 @@ const bills: BillsConfig[] = [
{
index: 2003,
contractAddress: {
[ChainId.ARBITRUM]: '0xb4b18300289d257d1F341E6240d9Fe9B0F474ADd',
[ChainId.ARBITRUM]: '0xb5022e9DE06793D74c7892cD0e7D820cdEd05611',
},
billType: 'reserve',
billVersion: BillVersion.V2,
Expand All @@ -2242,12 +2242,12 @@ const bills: BillsConfig[] = [
billNnftAddress: {
[ChainId.ARBITRUM]: '0xAC707999D05C4048844B78c737D9512DFDff524d',
},
inactive: true,
inactive: false,
projectLink: 'https://www.cruize.finance/',
twitter: 'https://twitter.com/CruizeFinance',
audit: 'https://docs.cruize.finance/technical-details/audits',
initTime: { [ChainId.ARBITRUM]: 1689955200 },
initPrice: { [ChainId.ARBITRUM]: 0.0925 },
initPrice: { [ChainId.ARBITRUM]: 0.0202 },
soldOut: false,
},
{
Expand Down
5 changes: 4 additions & 1 deletion src/constants/tokens.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ChainId } from '@ape.swap/sdk'
import { Token } from '../types'
import { LiquidityDex, Token } from '../types'

const tokens: Record<string, Token> = {
// BANANA should always be first token for GNANA calculation
Expand Down Expand Up @@ -1839,6 +1839,9 @@ const tokens: Record<string, Token> = {
decimals: {
[ChainId.ARBITRUM]: 18,
},
liquidityDex: {
[ChainId.ARBITRUM]: LiquidityDex.UniswapV3,
},
active: true,
},
xcur: {
Expand Down

0 comments on commit 9fd607c

Please sign in to comment.