diff --git a/crates/by-chain/icepick-solana/src/lib.rs b/crates/by-chain/icepick-solana/src/lib.rs index 2a30399..c4d2755 100644 --- a/crates/by-chain/icepick-solana/src/lib.rs +++ b/crates/by-chain/icepick-solana/src/lib.rs @@ -175,8 +175,6 @@ pub struct GetTokenInfo { #[derive(Serialize, Deserialize, Debug)] pub struct CreateNonceAccountAndSigningKey { authorization_address: String, - from_account: Option, - from_address: String, } #[derive(Serialize, Deserialize, Debug)] @@ -226,7 +224,7 @@ pub struct TransferToken { pub struct Compile { #[serde(flatten)] hashable: Hashable, - derivation_accounts: Vec, + derivation_accounts: Option>, instructions: Vec, } @@ -671,8 +669,6 @@ impl Module for Solana { } Operation::CreateNonceAccountAndSigningKey(CreateNonceAccountAndSigningKey { authorization_address, - from_account, - from_address, }) => { // NOTE: Since this transaction is meant to be run on an online system with a // freshly generated mnemonic, only designed to live to make the nonce account, we @@ -685,16 +681,12 @@ impl Module for Solana { // this uses OsRng, which sources from getrandom() if available, which pulls from // /dev/urandom, or sources from `/dev/urandom` directly. let keypair = Keypair::new(); + let payer_keypair = Keypair::new(); - let from_pk = Pubkey::from_str(&from_address).unwrap(); let authorization_pk = Pubkey::from_str(&authorization_address).unwrap(); - if from_account.is_some() { - unimplemented!("alternative derivation accounts are not yet implemented"); - } - let instructions = system_instruction::create_nonce_account( - &from_pk, + &payer_keypair.pubkey(), &keypair.pubkey(), &authorization_pk, // just above the approximate rent necessary for a nonce account @@ -706,8 +698,13 @@ impl Module for Solana { "blob": { "nonce_pubkey": keypair.pubkey().to_string(), "nonce_privkey": [keypair.secret().to_bytes()], + "payer_pubkey": payer_keypair.pubkey().to_string(), + "payer_privkey": [payer_keypair.secret().to_bytes()], + "privkeys": [ + keypair.secret().to_bytes(), + payer_keypair.secret().to_bytes() + ], "transaction": instructions, - "derivation_accounts": [0u32 | 1 << 31], }, })) } @@ -1016,7 +1013,7 @@ impl Module for Solana { "hash": hash, "instructions": instructions, }, - "derivation_accounts": derivation_accounts, + "derivation_accounts": derivation_accounts.as_deref().unwrap_or(&[]), })) } Operation::Inspect(Inspect { transaction }) => { @@ -1081,7 +1078,7 @@ impl Module for Solana { "status": "simulate_transaction", "error": err.to_string(), } - })) + })); } let response = client.send_and_confirm_transaction(&transaction); let cluster_suffix = { diff --git a/crates/icepick/workflows/sol/generate-nonce-account.yaml b/crates/icepick/workflows/sol/generate-nonce-account.yaml index 734cd86..a0c93e0 100644 --- a/crates/icepick/workflows/sol/generate-nonce-account.yaml +++ b/crates/icepick/workflows/sol/generate-nonce-account.yaml @@ -16,20 +16,11 @@ inputs: authorization address is often the principal address - the one performing the transaction. aliases: + - address - primary_address - principal_address - pubkey step: -- type: "sol-generate-wallet" -- type: "sol-get-wallet-address" - outputs: - pubkey: "wallet_pubkey" -- type: "sol-await-funds" - inputs: - address: "wallet_pubkey" - cluster: "cluster" - values: - lamports: "1510000" - type: "sol-get-blockhash" inputs: cluster: "cluster" @@ -37,13 +28,18 @@ step: blockhash: "blockhash" - type: "sol-create-nonce-account-and-signing-key" inputs: - from_address: "wallet_pubkey" authorization_address: "authorization_address" outputs: transaction: "instructions" nonce_pubkey: "nonce_pubkey" - nonce_privkey: "private_keys" - derivation_accounts: "derivation_accounts" + payer_pubkey: "payer_pubkey" + privkeys: "private_keys" +- type: "sol-await-funds" + inputs: + address: "payer_pubkey" + cluster: "cluster" + values: + lamports: "1510000" - type: "sol-compile" inputs: instructions: "instructions"