diff --git a/src/constants/bills.ts b/src/constants/bills/bills.ts similarity index 99% rename from src/constants/bills.ts rename to src/constants/bills/bills.ts index aa2b7f17..f2455e8c 100644 --- a/src/constants/bills.ts +++ b/src/constants/bills/bills.ts @@ -1,13 +1,13 @@ import { ChainId } from '@ape.swap/sdk' -import tokens from './tokens' -import { BillsConfig, BillVersion } from '../types' +import tokens from '../tokens' +import { BillsConfig, BillVersion } from '../../types' // BNB Largest ID: 82 // Polygon Largest ID: 109 // Telos Largest ID: 215 // Arbitrum Largest ID: 2003 -const bills: BillsConfig[] = [ +export const bills: BillsConfig[] = [ { index: 62, contractAddress: { @@ -2366,5 +2366,3 @@ const bills: BillsConfig[] = [ soldOut: true, }, ] - -export default bills diff --git a/src/constants/bills/billsLaunch.ts b/src/constants/bills/billsLaunch.ts new file mode 100644 index 00000000..36393a8a --- /dev/null +++ b/src/constants/bills/billsLaunch.ts @@ -0,0 +1,3 @@ +import { BillsLaunchConfig } from '../../types' + +export const billsLaunch: BillsLaunchConfig[] = [] diff --git a/src/constants/bills/index.ts b/src/constants/bills/index.ts new file mode 100644 index 00000000..46c70063 --- /dev/null +++ b/src/constants/bills/index.ts @@ -0,0 +1,6 @@ +import { bills } from './bills' +import { billsLaunch } from './billsLaunch' + +const allBills = [...bills, ...billsLaunch] + +export { bills, billsLaunch, allBills } diff --git a/src/constants/billsLaunch.ts b/src/constants/billsLaunch.ts deleted file mode 100644 index 682f5647..00000000 --- a/src/constants/billsLaunch.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { ChainId } from '@ape.swap/sdk' -import tokens from './tokens' -import { BillsLaunchConfig, BillVersion } from '../types' - -const billsLaunch: BillsLaunchConfig[] = [] - -export default billsLaunch diff --git a/src/constants/index.ts b/src/constants/index.ts index 09fcbe09..2bbbe0df 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -1,4 +1,4 @@ -export { default as bills } from './bills' +export * from './bills/' export { default as farms } from './farms' export { default as jungleFarms } from './jungleFarms' export { default as tokens } from './tokens'