* Rework transaction processing result forwarding Durable nonce prereq * Add Durable Nonce program API * Add runtime changes for Durable Nonce program * Register Durable Nonce program * Concise comments and bad math * Fix c/p error * Add rent sysvar to withdraw ix * Remove rent exempt required balance from Meta struct * Use the helper
6 lines
184 B
Rust
6 lines
184 B
Rust
crate::declare_id!("Nonce11111111111111111111111111111111111111");
|
|
|
|
pub fn solana_nonce_program() -> (String, crate::pubkey::Pubkey) {
|
|
("solana_nonce_program".to_string(), id())
|
|
}
|