Skip to content

Commit

Permalink
feat: add bitflow protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
pradel committed Mar 22, 2024
1 parent 2061bec commit 1ed9919
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
Binary file added public/protocols/bitflow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/lib/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export const protocolsActions: {
} = {
alex: ["swap"],
arkadiko: ["swap", "add-liquidity", "remove-liquidity"],
bitflow: ["swap"],
stackswap: ["swap"],
velar: ["swap"],
} as const;
14 changes: 13 additions & 1 deletion src/lib/protocols.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
export const protocols = ["alex", "arkadiko", "stackswap", "velar"] as const;
export const protocols = [
"alex",
"arkadiko",
"stackswap",
"velar",
"bitflow",
] as const;

export type Protocol = (typeof protocols)[number];

Expand All @@ -20,6 +26,12 @@ export const protocolsInfo = {
website: "https://arkadiko.finance/",
x: "https://twitter.com/ArkadikoFinance",
},
bitflow: {
name: "Bitflow",
description: "The Decentralized Exchange for Bitcoiners.",
website: "https://www.bitflow.finance/",
x: "https://twitter.com/Bitflow_Finance",
},
stackswap: {
name: "StackSwap",
description:
Expand Down

0 comments on commit 1ed9919

Please sign in to comment.