Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions protocols/equilibria.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const qty: number = 100e6;

const equilibria: Protocol = {
// Airdrop: manualCliff(unixTimestampNow(), qty * 0.02),
"Boostrapping Incentives": manualCliff(
"Bootstrapping Incentives": manualCliff(
start + periodToSeconds.month * 6,
qty * 0.02,
),
Expand Down Expand Up @@ -59,7 +59,7 @@ const equilibria: Protocol = {
categories: {
publicSale: ["IDO"],
noncirculating: ["Equilibria Treasury"],
farming: ["Liquidity Mining", "Boostrapping Incentives"],
farming: ["Liquidity Mining", "Bootstrapping Incentives"],
privateSale: ["Presale Investors"],
},
};
Expand Down
4 changes: 2 additions & 2 deletions protocols/lido.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ ORDER BY date DESC`, {})
const lido: Protocol = {
Investors: schedule(0.2218),
"Validators & Signature Holders": schedule(0.065),
"Initial Lido Devlopers": schedule(0.2),
"Initial Lido Developers": schedule(0.2),
"Founders & Future Employees": schedule(0.15),
// "DAO Treasury": (backfill: boolean) =>
// balance(
Expand Down Expand Up @@ -117,7 +117,7 @@ const lido: Protocol = {
privateSale: ["Investors"],
insiders: [
"Validators & Signature Holders",
"Initial Lido Devlopers",
"Initial Lido Developers",
"Founders & Future Employees",
],
},
Expand Down
2 changes: 1 addition & 1 deletion protocols/raydium.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const raydium: Protocol = {
meta: {
notes: [
`The emission and distribution details are based on the proposed and intended token emission and distribution for RAY tokens.`,
`Emissions have been slower than originally planned and mining reserve will likely continue to be emitted longer than the intiial 36 months, it's vesting at a rate of 134,649.95 RAY per day; at current rates, there's roughly 40 years left of liquidity mining`,
`Emissions have been slower than originally planned and mining reserve will likely continue to be emitted longer than the initial 36 months, it's vesting at a rate of 134,649.95 RAY per day; at current rates, there's roughly 40 years left of liquidity mining`,
],
token: "solana:4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R",
sources: [
Expand Down
2 changes: 1 addition & 1 deletion protocols/tangible.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const tangible: Protocol = {
"https://docs.tangible.store/tngbl-and-marketplace/tangible-token-tngbl",
],
notes: [
`"GURU Holders" allocation consists of a mix of 2-4 year staked NFT positions. The mix is unkown so here we have assumed they'll unlock linearly across the 2 year period.`,
`"GURU Holders" allocation consists of a mix of 2-4 year staked NFT positions. The mix is unknown so here we have assumed they'll unlock linearly across the 2 year period.`,
],
token: "polygon:0x49e6A20f1BBdfEeC2a8222E052000BbB14EE6007",
protocolIds: ["2231"],
Expand Down
2 changes: 1 addition & 1 deletion protocols/tron.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const privateSaleAmount = initialSupplyBase * 0.257;
const icoAmount = initialSupplyBase * 0.40;
const tronFoundationAmount = (initialSupplyBase * 0.343) - 1_000_000_000; // 1B TRX is burned at launch

const dailyEmissionRate = 5_068_800; // TRX per day (Block + Voting rewards) (Caculated from approx 28800 blocks per day * (16 + 160))
const dailyEmissionRate = 5_068_800; // TRX per day (Block + Voting rewards) (Calculated from approx 28800 blocks per day * (16 + 160))

const tron: Protocol = {
"Public Sale": manualCliff(launch, icoAmount),
Expand Down
2 changes: 1 addition & 1 deletion protocols/vector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const vector: Protocol = {
],
token: "avax:0x5817d4f0b62a59b17f75207da1848c2ce75e7af4",
notes: [
`Bonus emmissions (15%) are minted on an as-needed basis, so havent been included in this analysis.`,
`Bonus emissions (15%) are minted on an as-needed basis, so havent been included in this analysis.`,
`We couldn't find details about the liquidity mining schedule up until Nov '22. So the rate has been interpolated as a linear emission.`,
],
protocolIds: ["1525"],
Expand Down
Loading