Building a Program to Increment a Counter
Learn how to write a simple Anchor program that increments a counter on Solana
This guide will walk you through the process of writing a simple Anchor program that increments a counter. You’ll learn how to deploy this program on Solana and interact with it using a React client.
Quick Access to Source Code
If you prefer to dive straight into the code:
Writing the Anchor Program
Let’s break down the key components of our counter program:
Core Functionality
The program implements two main instructions:
initialize
: Sets the counter to 0increment
: Increments the counter by 1
Here’s the core structure of our program:
Nothing special here, just a simple Anchor program that increments a counter. The only difference is that we’re adding the delegate
macro to inject some useful logic to interact with the delegation program.
Delegating the Counter PDA
In order to delegate the counter PDA, and make it writable in an Ephemeral Rollup session, we need to add an instruction which
internally calls the delegate_account
function. delegate_account
will CPI to the delegation program, which upon validation will gain ownership of the account.
After this step, an ephemeral validator can start processing transactions on the counter PDA and propose state diff trough the delegation program.
Committing while the PDA is delegated
The ephemeral runtime allow to commit the state of the PDA while it is delegated. This is done by calling the commit_accounts
function.
Undelegating the PDA
Undelegating the PDA is done by calling the commit_and_undelegate_accounts
as part of some instruction.
Undelegation commit the latest state and give back the ownership of the PDA to the owner program.
Connecting the React Client
The React client is a simple interface that allows you to interact with the Anchor program. It uses the Anchor bindings to interact with the program and the MagicBlock SDK to interact with the Ephemeral Rollup session.
The UI code for this project can be found in the ephemeral-counter-ui repository.
Ephemeral Endpoint Configuration
To interact with the Ephemeral Rollup session, you need to configure the appropriate endpoint:
-
For devnet, use the following ephemeral endpoint:
-
For mainnet, please reach out to the MagicBlock team to receive the appropriate endpoint.
Make sure to update your client configuration to use the correct endpoint based on your development or production environment.
Was this page helpful?