Quantcast
Channel: How can a Solana Rust smart contract get block height or Unix time? - Solana Stack Exchange
Browsing latest articles
Browse All 5 View Live

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 Article


Answer 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 Article


Image may be NSFW.
Clik here to view.

Answer 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 Article

Answer 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 Article

How 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

Browsing latest articles
Browse All 5 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>