LogoLogo
GithubDiscordTwitter
  • Welcome
    • What is Clockwork?
    • Quickstart
    • Installation
  • Guides
    • 1. Scheduling an SPL transfer
    • 2. Auto-incrementing counter
  • Reference
    • Threads
      • Account
      • Address
      • Authority
      • Fees
      • Payers
      • Triggers
    • Localnet
    • SDK
    • Support
  • Node operators
    • Deploy a worker
Powered by GitBook
On this page
  • Rust
  • Solana
  • Anchor
  • Clockwork

Was this helpful?

Edit on GitHub
  1. Welcome

Installation

PreviousQuickstartNext1. Scheduling an SPL transfer

Last updated 1 year ago

Was this helpful?

Rust

Go to install Rust.

Solana

Go to install Solana, and then run solana-keygen new to create a local keypair for development.

Anchor

Go to install Anchor. Anchor is a popular framework for building Solana smart-contracts. We will reference Anchor frequently in these docs and guides.

Clockwork

To install Clockwork on your local machine, simply run the following cargo install command:

cargo install -f --locked clockwork-cli

If you are on Linux, you may need to additionally install these dependencies:

sudo apt-get update && \
sudo apt-get upgrade && \
sudo apt-get install -y pkg-config build-essential libudev-dev libssl-dev
here
here
here