Skip to content

Commit

Permalink
Merge pull request #2227 from ZkSwapFinance/master
Browse files Browse the repository at this point in the history
update zkswap-finance fee
  • Loading branch information
dtmkeng authored Dec 17, 2024
2 parents 34288fd + 18bf14c commit ab0e163
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions fees/zkswap-finance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,19 +38,19 @@ const fetch = (chain: string, totalFees: number, revenueFee: number) => {
}

const methodology = {
Fees: "A 0.08% trading fee is collected",
UserFees: "Users pays 0.08% of each swap",
Revenue: "A 0.04% fees goes to the protocol",
ProtocolRevenue: "A 0.04% fees goes to the protocol",
SupplySideRevenue: "A 0.04% is distributed proportionally to liquidity providers (ZFLP token holders)"
Fees: "A 0.1% trading fee is collected",
UserFees: "Users pays 0.1% of each swap",
Revenue: "A 0.05% fees goes to the protocol",
ProtocolRevenue: "A 0.05% fees goes to the protocol",
SupplySideRevenue: "A 0.05% is distributed proportionally to liquidity providers (ZFLP token holders)"
}

const baseAdapter: BaseAdapter = {
[CHAIN.ERA]: {
...adapterObj[CHAIN.ERA],
fetch: fetch(CHAIN.ERA, 0.0008, 0.0004),
customBackfill: fetch(CHAIN.ERA, 0.0008, 0.0004),
start: '2023-10-01',
fetch: fetch(CHAIN.ERA, 0.001, 0.0005),
customBackfill: fetch(CHAIN.ERA, 0.001, 0.0005),
start: '2024-12-17',
meta: {
methodology
}
Expand Down

0 comments on commit ab0e163

Please sign in to comment.