Skip to content

Instantly share code, notes, and snippets.

@merlox
Created February 20, 2022 19:59
Show Gist options
  • Save merlox/ad8dd259a108bcffa99bfc0e35c2d668 to your computer and use it in GitHub Desktop.
Save merlox/ad8dd259a108bcffa99bfc0e35c2d668 to your computer and use it in GitHub Desktop.
lib.rs
use anchor_lang::prelude::*;
declare_id!("Fg6PaFpoGXkYsidMpWTK6W2BeZ7FEfcYkg476zPFsLnS");
#[program]
pub mod solana_global_article {
use super::*;
pub fn initialize(ctx: Context<Initialize>) -> ProgramResult {
Ok(())
}
}
#[derive(Accounts)]
pub struct Initialize {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment