https://github.com/smartcontractkit/chainlink-solana
https://github.com/smartcontractkit/chainlink-solana
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/smartcontractkit/chainlink-solana
- Owner: smartcontractkit
- Created: 2021-08-23T18:55:38.000Z (almost 4 years ago)
- Default Branch: develop
- Last Pushed: 2025-05-09T15:38:02.000Z (about 2 months ago)
- Last Synced: 2025-05-10T06:11:17.446Z (about 2 months ago)
- Language: Go
- Size: 8.84 MB
- Stars: 89
- Watchers: 104
- Forks: 50
- Open Issues: 49
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-svm - GitHub
README
# Chainlink Solana
## Quick Start
For more information, see the [Chainlink Solana Documentation](./docs/).
## Local M1/ARM64 build
In order to build the project locally for arm64, one might find it useful to link the dependency libraries dynamically.
The following steps install arm64 version of `librdkafka` and link it dynamically during the build:1. Install the dependencies
```sh
brew install openssl pkg-config librdkafka
```
2. Follow the after-install instructions to let `pkg-config` find `openssl`
```sh
export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl@3/lib/pkgconfig"
```
3. Build using dynamic tag
```sh
go build --tags dynamic ./...
```