Skip to main content

My First Transaction

This document will guide you through composing and sending your first transaction into the Conflux network. We will introduce the technical details of Conflux transaction and some basic techniques to track the status of sent transactions and handle errors.

For common users, it is recommended to use a Conflux wallet like Conflux Portal, which is easy, safe and user-friendly.

For developers who want to compose and send transaction in your own applications, Conflux provides several SDKs in different languages:

The following document will use js-conflux-sdk as an example.

Compose and send my first transaction#

Create an account with Conflux Portal#

  1. Install Conflux Portal.

  2. Generate a new account.

  3. Get test-net tokens from the faucet.

  4. Export and copy your private key to somewhere, we'll use it later.

Installation#

npm install js-conflux-sdk

Send transaction by JavaScript program#

  • Import js-conflux-sdk and set a Conflux provider. For the Conflux test-net, there is a node provided at https://test.confluxrpc.com. It can also be changed to any other Conflux node, even your own.
const { Conflux, Drip } = require('js-conflux-sdk');
const conflux = new Conflux({
url: 'https://test.confluxrpc.com',
logger: console,
networkId: 1,
});
  • Paste your private key into the program
const PRIVATE_KEY = 'Your Private Key';
// const PRIVATE_KEY = '0x5f15f9e52fc5ec6f77115a9f306c120a7e80d83115212d33a843bb6b7989c261';
const account = conflux.wallet.addPrivateKey(PRIVATE_KEY); // create account instance
const receiver = 'cfxtest:aarc9abycue0hhzgyrr53m6cxedgccrmmy8m50bu1p'
  • Compose your transaction, here are the fields could be filled with:

    • nonce: optional, the nonce of a transaction to keep the order of your sending transactions, starting with some random large number and increase one by one. If missing, the result of cfx_getNextNonce will be automatically filled in and it works for general scenarios. Some cases, like sending a lot of transactions in a short period. It's recommended to maintain the nonce on your own.
    • gasPrice: optional, the price in Drip that you would like to pay for each gas consumed. If missing, the result of cfx_gasPrice will be automatically filled in, which is the median of recent transactions.
    • gas: optional, the max gas you would like to use in the transaction. After the end of transaction processing, the unused gas will be refunded if used_gas >= gas * 0.75. If missing, the result of cfx_estimateGasAndCollateral will be automatically filled in and it works for general scenarios.
    • to: the base32 address of the receiver of the transaction, could be a personal account (e.g. CFXTEST:TYPE.USER:AARC9ABYCUE0HHZGYRR53M6CXEDGCCRMMY8M50BU1P) or a contract (e.g. CFXTEST:TYPE.CONTRACT:ACC7UAWF5UBTNMEZVHU9DHC6SGHEA0403YWJZ6WTPG). Leave a null here to deploy a contract.
    • value: the value (in Drip) to be transferred.
    • storageLimit: optional, the max storage (in Byte) you would like to collateralize in the transaction. If missing, the result of cfx_estimateGasAndCollateral will be automatically filled in and it works for general senarios.transactions.
    • epochHeight: optional, a transaction is can be verified only in epochs in the range [epochHeight - 100000, epochHeight + 100000], so it's a timeout mechanism. If missing, the result of cfx_epochNumber will be automatically filled in and it works for general scenarios.
    • data: optional, it's either an attached message of a transaction or a function signature of a contract call. If missing, a null will be filled into it.
    • chainId: optional, it used for dealing with a hard fork or preventing a transaction replay attack. If missing, the SDK will get it from RPC. Currently mainnet chainId is 1029, testnet is 1.
    • from: The sender account(with private key) to sign the transaction.
let txParams = {
from: account, // from account instance and will by sign by account.privateKey
// nonce
// gasPrice
// gas
to: receiver, // accept address string or account instance
value: Drip.fromCFX(0.125), // use the conversion utility function
// storageLimit
// epochHeight
// data
};
  • Send it away by cfx.sendTransaction and get the returned transaction hash, then you can view the transaction details by searching the hash on Conflux Scan.
async function main() {
const txHash = await conflux.cfx.sendTransaction(txParams);
console.log(txHash);
}
main().catch(e => console.error(e));

Track my transaction#

After sending, the transaction could be in several different states:

1. Rejected by the RPC provider immediately#

After the provider got the cfx_sendRawTransaction RPC call, it will try to do the basic verification and insert it into the transaction pool. If there an obvious error of the transaction, e.g., RLP decoding error, signature verification error, it will be rejected immediately. Otherwise, it will be inserted into the transaction pool and start to wait to be mined, and the RPC will return a transaction hash.

2. Stuck in the transaction pool#

However, the transaction hash you got does not mean it was successfully executed. Conflux will store as many verified transactions in the pool as possible, even transactions whose nonce does not match the expected one or the balance is not enough to pay the value + gas * gasPrice + storageLimit * (10^18/1024).

So if you wait for 1 minute and still cannot find the transaction in ConfluxScan after sending it, it very likely got stuck in the transaction pool.

Use cfx_getTransactionByHash, cfx_getBalance and cfx_getNextNonce to check if your transaction is ready to be packed and mined, for example:

curl -X POST --data '{"jsonrpc":"2.0","method":"cfx_getBalance","params":["cfx:type.user:aarc9abycue0hhzgyrr53m6cxedgccrmmyybjgh4xg"],"id":1}' -H "Content-Type: application/json" https://test.confluxrpc.com

And compare the result with value + gas * gasPrice + storage_limit * (10^18/1024).

curl -X POST --data '{"jsonrpc":"2.0","method":"cfx_getNextNonce","params":["cfx:type.user:aarc9abycue0hhzgyrr53m6cxedgccrmmyybjgh4xg"],"id":1}' -H "Content-Type: application/json" https://test.confluxrpc.com

And compare the result with the nonce you filled in.

You can always get the transaction details by cfx_getTransactionByHash:

curl -X POST --data '{"jsonrpc":"2.0","method":"cfx_getTransactionByHash","params":["0x53fe995edeec7d241791ff32635244e94ecfd722c9fe90f34ddf59082d814514"],"id":1}' -H "Content-Type: application/json" https://test.confluxrpc.com

In this situation, you may want to send a new transaction after fixing the nonce or balance problem. Note that, for replacing a transaction in the pool with the same nonce, a higher gasPrice is necessary.

3. Mined but skipped#

If you can view the transaction on ConfluxScan but its status always shows "skip". Which means it didn't pass the basic verification (etc, nonce doesn't match, balance can't cover the basic fee) in execution engine and got skipped.

In this situation, you may want to send a new transaction after fixing the nonce or balance problem. Note that, for replacing a transaction in the pool with the same nonce, a higher gasPrice is necessary.

4. Mined and executed with some error outcome#

In this case, you'll see an error message on ConfluxScan. This could be in several causes:

  • EVM error: like assert, require
  • balance is enough to pay the basic fee, but not for the whole transaction fee
  • storageLimit reached

It's a good idea to double-check your contract in Conflux Studio and check the storageLimit and balance issue by cfx_estimateGasAndCollateral RPC.

5. Mined and executed with no error outcome#

Congrats! Your first transaction finally got there.