You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if not how should i serialize my transaction to be be signed. Working on something like thi
letmut payload = Self::path_to_bytes(&self.derivation);// need to figure out how to encode the alloy TypedTransactionRequest into a Vec<u8>
payload.extend_from_slice(tx.encode().as_slice());letmut signature = self.sign_payload(Instruction::Sign,&payload).await?;
The text was updated successfully, but these errors were encountered:
right now this crate has RPC type, which is actually a superset of the Transaction type that gets RLP encoded. we're still planning how to make this distinction smooth. I am skeptical of implementing rlp encodabe/decodable for types with more props than the actually encoding will represent
alloy/crates/rpc-types/src/eth/transaction/typed.rs
Line 18 in b7a9c18
if not how should i serialize my transaction to be be signed. Working on something like thi
The text was updated successfully, but these errors were encountered: