Skip to content

Commit

Permalink
chore: fix flashbonds
Browse files Browse the repository at this point in the history
  • Loading branch information
ape-fede committed Dec 12, 2024
1 parent 1fb6e3d commit 97be118
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 6 deletions.
23 changes: 23 additions & 0 deletions config/flashBonds.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[
{
"index": 0,
"chainId": 56,
"round": "1",
"totalRaiseString": "$150K",
"discountString": "3%",
Expand Down Expand Up @@ -100,6 +101,7 @@
},
{
"index": 1,
"chainId": 56,
"round": "1",
"totalRaiseString": "$50K",
"discountString": "2%",
Expand Down Expand Up @@ -199,6 +201,7 @@
},
{
"index": 2,
"chainId": 56,
"round": "2",
"totalRaiseString": "$250K",
"discountString": "3%",
Expand Down Expand Up @@ -310,6 +313,7 @@
},
{
"index": 3,
"chainId": 56,
"round": "2",
"totalRaiseString": "$75K",
"discountString": "2%",
Expand Down Expand Up @@ -421,6 +425,7 @@
},
{
"index": 4,
"chainId": 56,
"round": "3",
"totalRaiseString": "$180K",
"discountString": "3%",
Expand Down Expand Up @@ -511,6 +516,7 @@
},
{
"index": 5,
"chainId": 56,
"round": "3",
"totalRaiseString": "$60K",
"discountString": "2%",
Expand Down Expand Up @@ -601,6 +607,7 @@
},
{
"index": 6,
"chainId": 56,
"round": "3",
"totalRaiseString": "$25K",
"discountString": "1%",
Expand Down Expand Up @@ -691,6 +698,7 @@
},
{
"index": 7,
"chainId": 56,
"round": "4",
"totalRaiseString": "$160K",
"discountString": "3%",
Expand Down Expand Up @@ -790,6 +798,7 @@
},
{
"index": 8,
"chainId": 56,
"round": "4",
"totalRaiseString": "$60K",
"discountString": "2%",
Expand Down Expand Up @@ -889,6 +898,7 @@
},
{
"index": 9,
"chainId": 56,
"round": "5",
"totalRaiseString": "$120K",
"discountString": "3%",
Expand Down Expand Up @@ -988,6 +998,7 @@
},
{
"index": 10,
"chainId": 56,
"round": "5",
"totalRaiseString": "$50K",
"discountString": "2%",
Expand Down Expand Up @@ -1087,6 +1098,7 @@
},
{
"index": 11,
"chainId": 56,
"round": "6",
"totalRaiseString": "100K",
"discountString": "3%",
Expand Down Expand Up @@ -1198,6 +1210,7 @@
},
{
"index": 12,
"chainId": 56,
"round": "6",
"totalRaiseString": "40K",
"discountString": "2%",
Expand Down Expand Up @@ -1309,6 +1322,7 @@
},
{
"index": 13,
"chainId": 56,
"round": "6",
"totalRaiseString": "20K",
"discountString": "1%",
Expand Down Expand Up @@ -1420,6 +1434,7 @@
},
{
"index": 14,
"chainId": 56,
"round": "7",
"totalRaiseString": "30K",
"discountString": "2%",
Expand Down Expand Up @@ -1519,6 +1534,7 @@
},
{
"index": 15,
"chainId": 56,
"round": "7",
"totalRaiseString": "100K",
"discountString": "3%",
Expand Down Expand Up @@ -1618,6 +1634,7 @@
},
{
"index": 16,
"chainId": 56,
"round": "8",
"totalRaiseString": "40K",
"discountString": "2%",
Expand Down Expand Up @@ -1729,6 +1746,7 @@
},
{
"index": 17,
"chainId": 56,
"round": "8",
"totalRaiseString": "120K",
"discountString": "3%",
Expand Down Expand Up @@ -1840,6 +1858,7 @@
},
{
"index": 18,
"chainId": 56,
"round": "9",
"totalRaiseString": "15K",
"discountString": "1%",
Expand Down Expand Up @@ -1939,6 +1958,7 @@
},
{
"index": 19,
"chainId": 56,
"round": "10",
"totalRaiseString": "30K",
"discountString": "2%",
Expand Down Expand Up @@ -2038,6 +2058,7 @@
},
{
"index": 20,
"chainId": 56,
"round": "10",
"totalRaiseString": "100K",
"discountString": "3%",
Expand Down Expand Up @@ -2137,6 +2158,7 @@
},
{
"index": 21,
"chainId": 56,
"round": "11",
"totalRaiseString": "30K",
"discountString": "2%",
Expand Down Expand Up @@ -2227,6 +2249,7 @@
},
{
"index": 22,
"chainId": 56,
"round": "11",
"totalRaiseString": "100K",
"discountString": "3%",
Expand Down
30 changes: 24 additions & 6 deletions src/constants/flashBonds.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
import {
BillArtCollection,
BillVersion,
ChainId,
FlashBondConfig /* BillArtCollection, BillVersion, */,
} from '../types'
import { BillArtCollection, BillVersion, ChainId, FlashBondConfig } from '../types'
import tokens from './tokens'

const flashBonds: FlashBondConfig[] = [
{
index: 0,
chainId: ChainId.BSC,
round: '1',
totalRaiseString: '$150K',
discountString: '3%',
Expand Down Expand Up @@ -41,6 +37,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 1,
chainId: ChainId.BSC,
round: '1',
totalRaiseString: '$50K',
discountString: '2%',
Expand Down Expand Up @@ -73,6 +70,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 2,
chainId: ChainId.BSC,
round: '2',
totalRaiseString: '$250K',
discountString: '3%',
Expand Down Expand Up @@ -105,6 +103,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 3,
chainId: ChainId.BSC,
round: '2',
totalRaiseString: '$75K',
discountString: '2%',
Expand Down Expand Up @@ -137,6 +136,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 4,
chainId: ChainId.BSC,
round: '3',
totalRaiseString: '$180K',
discountString: '3%',
Expand Down Expand Up @@ -169,6 +169,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 5,
chainId: ChainId.BSC,
round: '3',
totalRaiseString: '$60K',
discountString: '2%',
Expand Down Expand Up @@ -201,6 +202,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 6,
chainId: ChainId.BSC,
round: '3',
totalRaiseString: '$25K',
discountString: '1%',
Expand Down Expand Up @@ -233,6 +235,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 7,
chainId: ChainId.BSC,
round: '4',
totalRaiseString: '$160K',
discountString: '3%',
Expand Down Expand Up @@ -265,6 +268,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 8,
chainId: ChainId.BSC,
round: '4',
totalRaiseString: '$60K',
discountString: '2%',
Expand Down Expand Up @@ -297,6 +301,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 9,
chainId: ChainId.BSC,
round: '5',
totalRaiseString: '$120K',
discountString: '3%',
Expand Down Expand Up @@ -329,6 +334,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 10,
chainId: ChainId.BSC,
round: '5',
totalRaiseString: '$50K',
discountString: '2%',
Expand Down Expand Up @@ -361,6 +367,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 11,
chainId: ChainId.BSC,
round: '6',
totalRaiseString: '100K',
discountString: '3%',
Expand Down Expand Up @@ -393,6 +400,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 12,
chainId: ChainId.BSC,
round: '6',
totalRaiseString: '40K',
discountString: '2%',
Expand Down Expand Up @@ -425,6 +433,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 13,
chainId: ChainId.BSC,
round: '6',
totalRaiseString: '20K',
discountString: '1%',
Expand Down Expand Up @@ -457,6 +466,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 14,
chainId: ChainId.BSC,
round: '7',
totalRaiseString: '30K',
discountString: '2%',
Expand Down Expand Up @@ -489,6 +499,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 15,
chainId: ChainId.BSC,
round: '7',
totalRaiseString: '100K',
discountString: '3%',
Expand Down Expand Up @@ -521,6 +532,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 16,
chainId: ChainId.BSC,
round: '8',
totalRaiseString: '40K',
discountString: '2%',
Expand Down Expand Up @@ -553,6 +565,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 17,
chainId: ChainId.BSC,
round: '8',
totalRaiseString: '120K',
discountString: '3%',
Expand Down Expand Up @@ -585,6 +598,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 18,
chainId: ChainId.BSC,
round: '9',
totalRaiseString: '15K',
discountString: '1%',
Expand Down Expand Up @@ -617,6 +631,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 19,
chainId: ChainId.BSC,
round: '10',
totalRaiseString: '30K',
discountString: '2%',
Expand Down Expand Up @@ -649,6 +664,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 20,
chainId: ChainId.BSC,
round: '10',
totalRaiseString: '100K',
discountString: '3%',
Expand Down Expand Up @@ -681,6 +697,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 21,
chainId: ChainId.BSC,
round: '11',
totalRaiseString: '30K',
discountString: '2%',
Expand Down Expand Up @@ -713,6 +730,7 @@ const flashBonds: FlashBondConfig[] = [
},
{
index: 22,
chainId: ChainId.BSC,
round: '11',
totalRaiseString: '100K',
discountString: '3%',
Expand Down

0 comments on commit 97be118

Please sign in to comment.