diff --git a/content/courses/connecting-to-offchain-data/verifiable-randomness-functions.md b/content/courses/connecting-to-offchain-data/verifiable-randomness-functions.md index 0026bcc98..3951a34f7 100644 --- a/content/courses/connecting-to-offchain-data/verifiable-randomness-functions.md +++ b/content/courses/connecting-to-offchain-data/verifiable-randomness-functions.md @@ -414,9 +414,9 @@ pub fn handler(ctx: Context) -> Result <()> { } ``` -Now you have randomness! Hooray! But there is one last thing we have not discussed -yet and that's how the randomness is returned. Switchboard, gives you your -randomness calling +Now you have randomness! Hooray! But there is one last thing we have not +discussed yet and that's how the randomness is returned. Switchboard, gives you +your randomness calling [`get_result()`](https://github.com/switchboard-xyz/solana-sdk/blob/9dc3df8a5abe261e23d46d14f9e80a7032bb346c/rust/switchboard-solana/src/oracle_program/accounts/vrf.rs#L122). This method returns the `current_round.result` field of the `vrf` account SwitchboardDecimal format, which is really just a buffer of 32 random diff --git a/content/guides/getstarted/full-stack-solana-development.md b/content/guides/getstarted/full-stack-solana-development.md index 01b6659ca..0923ba17b 100644 --- a/content/guides/getstarted/full-stack-solana-development.md +++ b/content/guides/getstarted/full-stack-solana-development.md @@ -489,10 +489,10 @@ pub struct Counter { Make sure you go over the comments! -The `initialize` instruction does only one thing: it creates a new -account of the `Counter` type. To do this, we need to know who's paying, details -of the account we're creating like the space and the address, and which program -to use to create the account. +The `initialize` instruction does only one thing: it creates a new account of +the `Counter` type. To do this, we need to know who's paying, details of the +account we're creating like the space and the address, and which program to use +to create the account. Let's go line by line: diff --git a/docs/core/fees.md b/docs/core/fees.md index 61a01b07c..126645e49 100644 --- a/docs/core/fees.md +++ b/docs/core/fees.md @@ -422,9 +422,9 @@ allocates, the higher the withheld rent deposit will be. ### Rent exempt -Accounts must maintain a lamport balance greater than the minimum required to store -its respective data on-chain. This is called "_rent exempt_" and that balance is -called the "_minimum balance for rent exemption_". +Accounts must maintain a lamport balance greater than the minimum required to +store its respective data on-chain. This is called "_rent exempt_" and that +balance is called the "_minimum balance for rent exemption_". > New accounts (and programs) on Solana are **REQUIRED** to be initialized with > enough lamports to become _rent exempt_. This was not always the case.