TrueFiEng/Waffle

Swap arguments for fixture

sz-piotr opened this issue · 1 comments

Currently the signature for fixture is async function fixture (provider, wallets). Since the provider argument is very rarely used compared to wallets I propose a breaking change for the next version of waffle that swaps the arguments. The new signature would be:

async function fixture (wallets: Wallet[], provider: providers.Provider)

part of #155