pipermerriam / eth-testrpc

Used for testing all maner of Ethereum JSON-RPC interactions.
MIT License
163 stars 46 forks source link

Adding more accounts to testrpc-py #103

Closed fredrbl closed 6 years ago

fredrbl commented 7 years ago

I am using testrpc-py for research purposes, and in that regard it would be perfect to add more accounts. In the js testrpc this is simply done by initialise testrpc --accounts "number" However, I have not found a simple manner of increasing the amount for testrpc-py. Is there a command for this, or could I implement it another way?

image

pipermerriam commented 6 years ago

Do you need the RPC functionality or are you able to interact with the tester directly from python?

If it's the latter, I'd suggest taking a look at eth-tester

Otherwise you'll need to wait a bit or submit a pull request with this functionality yourself. This library is no longer being maintained as it's being replaced by the eth-tester library linked above.

fredrbl commented 6 years ago

aaaah perfect Piper, eth-tester covers my needs:) Thanks!