Transaction Context
You have two options for generating, signing, and brodcasting messages.
Use https://bitbadges.io/dev/broadcast - This is a visual UI that you can simply copy and paste your transaction Msg contents into or provide them in the URL parameters. Generating all additional transaction details, gas, fees, and signing is all outsourced to the user interface. This is the recommended option if you do not require programmatically submitting TXs.
Generate, sign, and broadcast directly to a running blockchain node. This is more technical and has more steps but can be done programmatically.
If you plan to use Option 1, you may proceed to the next page because generating the transaction context is already handled via the user interface.
If you plan to use option 2, see below.
Generating Transaction Context
The first step is to fetch and identify the transaction context and the account details for who is going to sign. You will need the following information below.
Pre-Reqs: For a user who has not yet interacted with the blockchain, the fetched public key will be null and accountNumber will be -1. To get an account number, they need to receive $BADGE somehow (this is also a pre-requisite to pay for any fees).
Get Public Key - Cosmos
For Keplr / Cosmos, you will need to specify the public key in the txContext. You can simply use getKey() then convert to base64.
Note: It will also be returned with the account details from the BitBadges API (if the user has interacted with the chain before via a signature).
Fee
Generating the fee can be tricky. It should be reasonable for the current gas prices but also not too expensive. To get the gas, we recommend simulating the transaction right before broadcasting to see how much gas it uses on a dry run. We will walk you through how to do this in the broadcast tutorial. You can also fetch the estimated gas prices via the BitBadgesApi.getStatus() route.
Sender Details
To fetch a user's account details, the easiest way is to use the routes from the BitBadges API in Users. You can also query a node directly.
This will return the user's BitBadges address, account ID, sequence (nonce), and public key. If the user has previously interacted with the blockchain, all this information will already be populated.
Last updated