Browse Source

docs: lint fixes for token tutorial

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

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

@ -74,8 +74,10 @@ const senderKey = createStacksPrivateKey(key);
<<<<<<< HEAD <<<<<<< 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.
======= =======
> 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 >
> > > > > > > 50bb8c8a... feat: draft of first 2 tutorials
## Step 3: Generating transaction ## Step 3: Generating transaction
@ -143,7 +145,8 @@ The generation method will need a few more pieces of information, as specified i
| `senderKey` | A private key object | Yes | | `senderKey` | A private key object | Yes |
| `network` | Specifies whether the transaction is meant for Stacks Mainnet or Testnet | 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 | | `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
> > > > > > > 50bb8c8a... feat: draft of first 2 tutorials
### Estimating fees ### Estimating fees
@ -158,8 +161,10 @@ estimateTransfer(transaction);
<<<<<<< HEAD <<<<<<< 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.
======= =======
> 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 >
> > > > > > > 50bb8c8a... feat: draft of first 2 tutorials
### Handling nonces ### Handling nonces
@ -196,8 +201,10 @@ With the transaction ID, we can check the status of the transaction. Every trans
<<<<<<< HEAD <<<<<<< 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.
======= =======
> 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 >
> > > > > > > 50bb8c8a... feat: draft of first 2 tutorials
```js ```js
const transactions = new TransactionsApi(apiConfig); const transactions = new TransactionsApi(apiConfig);

Loading…
Cancel
Save