If you want to send several transactions in the shortest time (probably in a block), you can include the last _tx ID_ in your transactions:
```
// create tx as normal
const anchor_id = await arweave.api.get('/tx_anchor').then(x => x.data);
tx.last_tx = anchor_id;
// post tx as normal
```
_Props @aokisok_