Send a transaction
Send a transaction to the blockchain and wait for its confirmation
In the previous article, we constructed a signed transaction that creates a Solana token. Now, let's see how we can send this transaction and ensure it has been confirmed by the network.
Send transactions without confirming
The most common way to send transactions is via the sendTransaction
RPC method. This method accepts an encoded signed transaction and forwards it to the configured RPC node so it can handle this for us.
One way to tackle this would be to encode the transaction ourselves using getBase64EncodedWireTransaction
and pass it to the sendTransaction
RPC method like so.
However, Kit offers a helper function that does that for us whilst providing some sensible default values. This function is called sendTransactionWithoutConfirmingFactory
and, given an RPC object, it returns a function that sends transactions without waiting for confirmation.
Confirmation strategies
Sending transactions is one thing but, more often than not, we'll want to make sure they have been processed by the network before we continue with our application logic.
There are several ways to ensure a transaction was confirmed by the network. For instance, we could poll the network at regular intervals to check the status of the transaction until it has the required commitment level. Another way would be to listen for network events and use them to determine the status of the sent transaction.
Sometimes it may be useful to dig deeper into confirmation strategies and create custom ones that make the most sense for our applications. But for all other cases, Kit provides helpers that abstract this complexity away from us. Namely, it provides two helper functions that both send and confirm transactions. Which function to use depends on the lifetime set on the transaction.
sendAndConfirmTransactionFactory
is used for transactions using a blockhash strategy for its lifetime.sendAndConfirmDurableNonceTransactionFactory
is used for transactions using a durable nonce strategy for its lifetime.
Both accept RPC and RPC Subscriptions objects and return a function that sends and confirms transactions for us. Since we are using the blockhash strategy in this tutorial, we'll use the sendAndConfirmTransactionFactory
function.
Transaction signatures
If you hover on top of the sendTransaction
or sendAndConfirmTransaction
functions above, you'll notice that their return type is simply Promise<void>
. That is, they do not return the transaction signature that uniquely identifies that transaction on the network.
This is because there is a common misconception that one must wait for the transaction to be sent to the network before obtaining its signature. However, that's not the case. The transaction signature is accessible as soon as the transaction is signed by its fee payer. This is because the signature that uniquely identifies a transaction is none other than the fee payer's signature for that transaction.
As such, Kit decouples these two distinct concepts by offering a getSignatureFromTransaction
function that returns the signature of a transaction that can be used even before it is sent to the network.
Update client.ts
With all that new knowledge in hand, let's update our Client
object to include the new sendAndConfirmTransaction
function created from the sendAndConfirmTransactionFactory
helper.
Update create-mint.ts
Now, let's make use of our new client.sendAndConfirmTransaction
helper in the createMint
function.
All that's left to do is return the address of the Mint
account we created so the caller of this function can use it for further operations.
And with that, our createMint
function is complete!
Update index.ts
Finally, let's update our main tutorial
function to execute the createMint
function and log the address of the newly created mint account.
On the next article, we'll use that address to fetch and decode the mint account we just created.