What is the difference between setAdvanceNonceAccount
and setNonceAccount
#4200
-
What is the difference between var input =Solana.SigningInput.newBuilder() |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @aminsato,
|
Beta Was this translation helpful? Give feedback.
Hi @aminsato,
setAdvanceNonceAccount
is a deprecated functionality, and can be used to generate a transaction that can only advance a nonce account, but doesn't do anything else.setNonceAccount
means that you can sign any Solana transaction (transfer, SPL transfer, Delegate etc) offline by using of durable nonce.Basically, you need to use
setNonceAccount
only.