Hi,
I am new to javascript and I hope this question is not too much stupid...
I am trying to test my contract with truffle+ganache and I am having a little problem: I don't know how to get the addresses of the accounts in Ganache.
In my migration script at some point I have:
...
var _seller = ... ;
deployer.deploy(VickreyAuction, _seller, ...other parameters...);
...
Now, I want to assign a particular address to _sender, chosen among the 10 default of Ganache. How can I get, let's say, the address of the second account?