2

What are some ways to send multiple transactions at once to a ganache blockchain ?

I am using the web3.py library.

1 Answers1

2

Ethereum does not support sending multiple transactions once.

Only way to do any kind of multi-transaction logic is to write your own smart contract.

Alternatively you can use another blockchain, like Cosmos SDK based ones, which support sending multiple transactions once.

Mikko Ohtamaa
  • 82,057
  • 50
  • 264
  • 435