Browse Source

docs: lint fixes for token tutorial

fix/update-miner-config
Alexander Graebe 5 years ago
parent
commit
59953a3471
  1. 7
      src/pages/stacks-blockchain/sending-tokens.md

7
src/pages/stacks-blockchain/sending-tokens.md

@ -74,7 +74,9 @@ const senderKey = createStacksPrivateKey(key);
<<<<<<< HEAD
-> Note: The code above also imports methods required for the next steps, including API configuration for the client library usage.
=======
> Note: The code above also imports methods required for the next steps, including API configuration for the client library usage.
>
> > > > > > > 50bb8c8a... feat: draft of first 2 tutorials
## Step 3: Generating transaction
@ -143,6 +145,7 @@ The generation method will need a few more pieces of information, as specified i
| `senderKey` | A private key object | Yes |
| `network` | Specifies whether the transaction is meant for Stacks Mainnet or Testnet | Yes |
| `memo` | A memo string to attach additional information to the transaction. This data is limited to 33 bytes | Yes |
> > > > > > > 50bb8c8a... feat: draft of first 2 tutorials
### Estimating fees
@ -158,7 +161,9 @@ estimateTransfer(transaction);
<<<<<<< HEAD
-> Note: By setting a fee in the transaction builder function, the automatic fee estimation step will be skipped.
=======
> Note: By setting a fee in the transaction builder function, the automatic fee estimation step will be skipped.
>
> > > > > > > 50bb8c8a... feat: draft of first 2 tutorials
### Handling nonces
@ -196,7 +201,9 @@ With the transaction ID, we can check the status of the transaction. Every trans
<<<<<<< HEAD
-> Note: A transactions is completed once it is confirmed and the status changes to `success`. Most transactions will be pending for several minutes before confirmed. You should implement polling in your app to refresh the status display.
=======
> Note: A transactions is completed once it is confirmed and the status changes to `success`. Most transactions will be pending for several minutes before confirmed. You should implement polling in your app to refresh the status display.
>
> > > > > > > 50bb8c8a... feat: draft of first 2 tutorials
```js

Loading…
Cancel
Save