Ayan
Ayan

Reputation: 8886

error { code: -32000, message: 'invalid sender' } while deploying a solidity contract to rinkeby test network

Getting following error while deploying a solidity contract to rinkeby test network:

error { code: -32000, message: 'invalid sender' }

Upvotes: 0

Views: 574

Answers (1)

Ayan
Ayan

Reputation: 8886

In my case, the error was due to the updated version of @truffle/hdwallet-provider

I had to downgrade it to version 1.2.3 to get it working.

npm uninstall @truffle/hdwallet-provider

npm install @truffle/[email protected]

Upvotes: 1

Related Questions