-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03850fe
commit 92f73d4
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
import { Protocol } from "../types/adapters"; | ||
import { manualCliff } from "../adapters/manual"; | ||
import { balance, latest } from "../adapters/balance"; | ||
|
||
const total = 100_000_000; // 100 million | ||
const token = "0xba100000625a3754423978a60c9317c58a424e3D"; | ||
const chain = "ethereum"; | ||
|
||
const balanceSection = (address: string, deployed: number) => | ||
balance([address], token, chain, "balancer", deployed); | ||
|
||
const balancer: Protocol = { | ||
"Liquidity Providers": () => | ||
balanceSection("0xBA12222222228d8Ba445958a75a0704d566BF2C8", 1618876800), | ||
"Founders, Options, Advisors, Investors": manualCliff( | ||
1696118400, | ||
total * 0.225, | ||
), | ||
Ecosystem: balanceSection( | ||
"0x10A19e7eE7d7F8a52822f6817de8ea18204F2e4f", | ||
1618272000, | ||
), | ||
"Balancer Labs Fundraising Fund": balanceSection( | ||
"0xB129F73f1AFd3A49C701241F374dB17AE63B20Eb", | ||
1604192400, | ||
), | ||
"Balancer Labs Contributors Incentives Program": balanceSection( | ||
"0xCDcEBF1f28678eb4A1478403BA7f34C94F7dDBc5", | ||
1592870400, | ||
), | ||
meta: { | ||
notes: [ | ||
"No information regarding the Founders, Options, Advisors, Investors unlock schedule is given in the source material, other than it had all been vested by Oct 23.", | ||
], | ||
sources: [ | ||
"https://docs.balancer.fi/concepts/governance/bal-token.html#supply-inflation-schedule", | ||
], | ||
token: "coingecko:balancer", | ||
protocolIds: ["116", "2611"], | ||
incompleteSections: [ | ||
{ | ||
key: "Liquidity Providers", | ||
allocation: total * 0.65, | ||
lastRecord: () => latest("balancer", 1618876800), | ||
}, | ||
{ | ||
key: "Ecosystem", | ||
allocation: total * 0.05, | ||
lastRecord: () => latest("balancer", 1618272000), | ||
}, | ||
{ | ||
key: "Balancer Labs Fundraising Fund", | ||
allocation: total * 0.05, | ||
lastRecord: () => latest("balancer", 1604192400), | ||
}, | ||
{ | ||
key: "Balancer Labs Contributors Incentives Program", | ||
allocation: total * 0.025, | ||
lastRecord: () => latest("balancer", 1592870400), | ||
}, | ||
], | ||
}, | ||
categories: { | ||
farming: ["Liquidity Providers"], | ||
noncirculating: ["Ecosystem"], | ||
insiders: [ | ||
"Founders, Options, Advisors, Investors", | ||
"Balancer Labs Fundraising Fund", | ||
"Balancer Labs Contributors Incentives Program", | ||
], | ||
}, | ||
}; | ||
|
||
export default balancer; |