Skip to content

Commit

Permalink
[docs] updated readme and fix links (#34565)
Browse files Browse the repository at this point in the history
* feat: updated readme

* fix: updated links

* fix: proposal links

* fix: more links

* fix: json-rpc links

* fix: more links

* fix: zk links

* fix: managing forks

* fix: links for deprecated methods
  • Loading branch information
nickfrosty authored and joncinque committed Nov 1, 2024
1 parent 61b2128 commit d78af47
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions interface/src/instruction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
//! accounts][na]. It is responsible for transferring lamports from accounts
//! owned by the system program, including typical user wallet accounts.
//!
//! [na]: https://docs.solana.com/implemented-proposals/durable-tx-nonces
//! [na]: https://docs.solanalabs.com/implemented-proposals/durable-tx-nonces
//!
//! Account creation typically involves three steps: [`allocate`] space,
//! [`transfer`] lamports for rent, [`assign`] to its owning program. The
//! [`create_account`] function does all three at once. All new accounts must
//! contain enough lamports to be [rent exempt], or else the creation
//! instruction will fail.
//!
//! [rent exempt]: https://docs.solana.com/developing/programming-model/accounts#rent-exemption
//! [rent exempt]: https://solana.com/docs/core/accounts#rent-exemption
//!
//! The accounts created by the system program can either be user-controlled,
//! where the secret keys are held outside the blockchain,
Expand Down Expand Up @@ -1330,7 +1330,7 @@ pub fn create_nonce_account_with_seed(
/// Consequently, it is not possible to sign a transaction, wait more than two
/// minutes, then successfully execute that transaction.
///
/// [dtn]: https://docs.solana.com/implemented-proposals/durable-tx-nonces
/// [dtn]: https://docs.solanalabs.com/implemented-proposals/durable-tx-nonces
/// [rbh]: crate::message::Message::recent_blockhash
/// [nonce]: https://en.wikipedia.org/wiki/Cryptographic_nonce
///
Expand Down Expand Up @@ -1601,7 +1601,7 @@ pub fn advance_nonce_account(nonce_pubkey: &Pubkey, authorized_pubkey: &Pubkey)
/// would leave the nonce account with a balance less than required for rent
/// exemption, but also greater than zero, then the transaction will fail.
///
/// [rent exemption]: https://docs.solana.com/developing/programming-model/accounts#rent-exemption
/// [rent exemption]: https://solana.com/docs/core/accounts#rent-exemption
///
/// This constructor creates a [`SystemInstruction::WithdrawNonceAccount`]
/// instruction.
Expand Down
2 changes: 1 addition & 1 deletion interface/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! The [system native program][np].
//!
//! [np]: https://docs.solana.com/developing/runtime-facilities/programs#system-program
//! [np]: https://docs.solanalabs.com/runtime/programs#system-program
crate::declare_id!("11111111111111111111111111111111");

0 comments on commit d78af47

Please sign in to comment.