Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lifinance/solana-programs
Contains LI.FI's solana programs
https://github.com/lifinance/solana-programs
Last synced: about 1 month ago
JSON representation
Contains LI.FI's solana programs
- Host: GitHub
- URL: https://github.com/lifinance/solana-programs
- Owner: lifinance
- Created: 2024-07-22T12:16:06.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T14:25:33.000Z (3 months ago)
- Last Synced: 2024-09-18T13:23:04.421Z (3 months ago)
- Language: Rust
- Size: 145 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LI.FI solana programs
LI.FI's Solana programs, organized similar to the [solana-program-examples](https://github.com/solana-developers/program-examples/tree/main/basics/repository-layout) layout recommendations.
Each program has a `program` folder containing the program's source code
and a `ts` folder containing the TypeScript bindings for the program.# Programs
For now, LI.FI only uses one program on Solana:
## [lifi-solana-program-1](./lifi-solana-program-1/README.md)
This program is used by LI.FI primarily to track on-chain transactions generated using the LI.FI backend/API.# How to
## Typescript
To build the typescript bindings: ```pnpm build```To run the typescript test suite (jest): ```pnpm test```
## Solana
- [lifi-solana-program-1](./lifi-solana-program-1/README.md)