Deploy Contracts To Planes
EVM
Compile this sample contract following steps below.
pragma solidity >=0.7.0 <0.9.0;
contract Storage {
uint256 counter;
function count() public {
counter += 1;
}
function get() public view returns (uint256){
return counter;
}
}
Build and Export Contract Artifacts
- Visit Remix IDE, and create a new contract:
- Click "File Explorer" > "Contracts" > "Create New File".
- Name the contract
flux-counter.sol
.
- Copy sample contract above into
contracts/flux-counter.sol
file. Optionally, you can modify the counter increment value in program at linecounter += 1;
- Navigate to the
Solidity Compiler
tab on the left panel > Click "Compile" > Click "Compilation Details" > Click "Download" of top right panel. - Rename it to
flux-counter-compData.json
.
Deploy Contract on Astromesh Planes > EVM
- On Astromesh, navigate to "Planes" > "EVM" > "Deploy".
- Click "Upload compiled contract" and choose
flux-counter-compData.json
. - Click "Deploy" and sign your transaction. A popup will confirm the contract address and transaction hash if the transaction processed successfully.
Interact with EVM Contract on Astromesh
- Go to "Planes" > "EVM" > "Interact".
- Enter the contract address you just deployed.
- Click "Upload ABI" and select
flux-counter-compData.json
again. - Click "Count" and sign your transaction.
- Click "Get" and see updated value of contract counter.
SVM
Compile this sample program following steps below.
use anchor_lang::prelude::*;
// This is your program's public key and it will update
// automatically when you build the project.
declare_id!("EUkzMcNLDVysYtJv8mE6wCbnyuya67jNrtB5MrHG3Xja");
// this program supports creating student, student will upload their exam to have total score updated
// this is for demostrating purpose so no RBAC added
#[program]
mod counter {
use super::*;
pub fn count(ctx: Context<Count>) -> Result<()> {
ctx.accounts.counter.value += 1;
Ok(())
}
}
#[derive(Accounts)]
pub struct Count<'info> {
// initialize the signers' PDA account for this program, so 1 wallet => 1 program account, something same as PDA
// you don't need an extra wallet just to interact with this program => better UX
#[account(init_if_needed, seeds = [b"counter"], bump, payer = signer, space = 8+8)]
pub counter: Account<'info, Counter>,
#[account(mut)]
pub signer: Signer<'info>,
pub system_program: Program<'info, System>,
}
#[account]
pub struct Counter {
pub value: u64,
}
Build and Export Program Artifacts
- Visit Solana Playground, and create a new project:
- Click the "+" button.
- Name the project
flux-counter
. - Select the Anchor framework.
- Copy sample program above into
src/lib.rs
file. Optionally, you can modify the counter increment value in program at linectx.accounts.counter.value += 1;
- Navigate to the
Build & Deploy
tab on the left panel. - Initial Build:
- Click "Build". This will generate a new keypair and update the program ID.
- Subsequent Builds:
- To generate a new program ID, click on "Program ID", then "New", and select "Generate" before building.
- Download the artifacts:
- Keypair: Navigate to "Program ID" and click "Export".
- Binary: Navigate to "Program Binary" and click "Export".
- IDL: Navigate to "IDL" and click "Export".
Ensure you have these three files: program-keypair.json
, flux-counter.so
, and idl.json
.
Deploy Program on Astromesh Planes > SVM
- On Astromesh, navigate to "Planes" > "SVM" > "Deploy".
- Click "+" next to "Accounts" and select "Keypair" to import the program keypair, name it
counter-program
. - Under "Program ID", select the
counter-program
tag from the hint dropdown. - Click "Upload Program Binary" and choose
flux-counter.so
. - Click "Deploy" and sign your transaction. A popup will confirm the program ID and transaction hash if the transaction processed successfully.
Interact with SVM Program on Astromesh
- Go to "Planes" > "SVM" > "Interact".
- Enter the program ID you just deployed.
- Click "+" next to "Accounts" and select "PDA", fill in your program id, set the seed to
counter
and name itcounter-pda
. - Click "Upload Program IDL" and select
idl.json
. - Navigate to "Instructions" > "Count":
- Expand all dropdowns.
- Set
counter-pda
for the counter,Current Wallet
for signer, andSystemProgram
for the systemProgram.
- Click "Execute" and sign your transaction.
- Query the
counter-pda
account state under "Instructions" > "Accounts" > "Counter" using its public key.
WasmVM
Build and Export Contract Artifacts
- Clone the example repository.
git clone https://github.com/FluxAstromeshLabs/wasmvm-counter
cd wasmvm-counter
- Build project and generate schema
make build-release
cargo run
- Verify these files exist
ls target/wasm32-unknown-unknown/release/wasmvm_counter.wasm
ls schema/wasmvm-counter.json
Deploy Contract on Astromesh Planes > WASMVM
- On Astromesh, navigate to "Planes" > "WASMVM" > "Deploy".
- Click "Upload wasm binary" and choose
wasmvm_counter.wasm
, then click "Store Contract". - Select your contract Code ID and paste in this instantiate msg, fill in your wallet address, sign and send transaction. When tx is processed, copy your contract address from popup window.
{
"label": "wasmvm-counter",
"admin": "your-wallet-address",
"msg": {},
"funds": []
}
Interact with WASMVM Contract on Astromesh
- Go to "Planes" > "WASMVM" > "Interact".
- Enter the contract address you just deployed.
- Paste in
{"count": {}}
and click "Execute" - Paste in
{"count": {}}
again and click "Query" to retrieve counter value.