Skip to content
This repository was archived by the owner on Jun 23, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Install libdrift_ffi
run: |
SO_URL=$(curl -s https://api.github.com/repos/drift-labs/drift-ffi-sys/releases/latest | jq -r '.assets[] | select(.name=="libdrift_ffi_sys.so") | .browser_download_url')
SO_URL=$(curl -s https://api.github.com/repos/velocity-exchange/drift-ffi-sys/releases/latest | jq -r '.assets[] | select(.name=="libdrift_ffi_sys.so") | .browser_download_url')
echo "downloading libdrift: $SO_URL"
curl -L -o libdrift_ffi_sys.so "$SO_URL"
cp libdrift_ffi_sys.so $CARGO_DRIFT_FFI_PATH
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"
description = "Rust keeper bots for Drift protocol"
license = "MIT"
repository = "https://github.com/drift-labs/keep-rs"
repository = "https://github.com/velocity-exchange/keep-rs"
keywords = ["drift", "defi", "solana", "trading-bot", "liquidity"]
categories = ["financial", "network-programming"]

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install jq -y && rustup component add rustfmt
# RUN mkdir src && echo "fn main() {}" > src/main.rs

# install libdrift
RUN SO_URL=$(curl -s https://api.github.com/repos/drift-labs/drift-ffi-sys/releases/latest | jq -r '.assets[] | select(.name=="libdrift_ffi_sys.so") | .browser_download_url') &&\
RUN SO_URL=$(curl -s https://api.github.com/repos/velocity-exchange/drift-ffi-sys/releases/latest | jq -r '.assets[] | select(.name=="libdrift_ffi_sys.so") | .browser_download_url') &&\
curl -L -o libdrift_ffi_sys.so "$SO_URL" &&\
cp libdrift_ffi_sys.so $CARGO_DRIFT_FFI_PATH

Expand Down
Loading