Answer by Yilmaz for How can a Solana Rust smart contract get block height or...
// pass this to Context#[derive(Accounts)]pub struct CreatePost<'info> { // add other properties pub post: Account<'info, PostAccount>, // Clock to save time of post pub clock:...
View ArticleAnswer by AKSHAY DHAYAL for How can a Solana Rust smart contract get block...
I'm assuming you're using anchorlet now_ts = Clock::get().unwrap().unix_timestamp;You will need to pass in the system program account
View ArticleAnswer by john for How can a Solana Rust smart contract get block height or...
Is this what you mean when you say "smart contract itself to get the current time"?#[program]mod hello_anchor { use super::*; pub fn initialize(ctx: Context<Initialize>) -> Result<()> {...
View ArticleAnswer by Ademola for How can a Solana Rust smart contract get block height...
What you have above is how the smart contract "itself" gets the current time.When you add anchor.web3.SYSVAR_CLOCK_PUBKEY to your accounts, you're not passing in time from the frontend. You're simply...
View ArticleHow can a Solana Rust smart contract get block height or Unix time?
I know how to pass the current Unix time from the frontend:web3.js:anchor.web3.SYSVAR_CLOCK_PUBKEYRust:let current_time = ctx.accounts.clock.unix_timestamp;I do not want that. I need the smart contract...
View Article