We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ef7498 commit cb26938Copy full SHA for cb26938
main.py
@@ -4,12 +4,17 @@
4
5
from defi.pools.solana.orca_protocol import OrcaProtocol
6
from defi.pools.solana.save_protocol import SaveProtocol
7
+from defi.pools.solana.kamino_protocol import KaminoProtocol
8
9
# Load environment variables
10
load_dotenv()
11
12
# Define protocols enabled
-protocols = [OrcaProtocol.PROTOCOL_NAME, SaveProtocol.PROTOCOL_NAME]
13
+protocols = [
14
+ OrcaProtocol.PROTOCOL_NAME,
15
+ SaveProtocol.PROTOCOL_NAME,
16
+ KaminoProtocol.PROTOCOL_NAME,
17
+]
18
19
# Create flask app
20
app = create_flask_app(protocols)
0 commit comments