Skip to content

Commit

Permalink
missed a file
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Jul 5, 2023
1 parent 3703fe6 commit 57cbd3a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions protocols/tornado.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const chain: string = "ethereum";

function tornado(): Protocol {
const governance = async () =>
adapter("0x179f48C78f57A3A78f0608cC9197B8972921d1D2", chain, {
adapter(["0x179f48C78f57A3A78f0608cC9197B8972921d1D2"], chain, {
// cliff at 1616038233
beforeCliff: 1616025600,
afterCliff: 1616040000,
Expand All @@ -19,15 +19,17 @@ function tornado(): Protocol {
beforeStep: 1641859200,
afterStep: 1642118400,
};
const teamAndInvestors: () => Promise<AdapterResult[][]> = async () =>
Promise.all(
const teamAndInvestors: () => Promise<AdapterResult[]> = async () =>
adapter(
[
"0x5f48c2a71b2cc96e3f0ccae4e39318ff0dc375b2",
"0x00d5ec4cdf59374b2a47e842b799027356eac02b",
"0x77c08248c93ab53ff734ac555c932f8b9089d4c9",
"0xc3877028655ebe90b9447dd33de391c955ead267",
"0xb43432ec23e228fb7cb0fa52968949458b509f4f",
].map((a: string) => adapter(a, chain, investorTimestamps)),
],
chain,
investorTimestamps,
);
return {
governance,
Expand Down

0 comments on commit 57cbd3a

Please sign in to comment.