aeternity / aepp-cli-js

Command line interface for the æternity blockchain
http://docs.aeternity.com/aepp-cli-js/
ISC License
7 stars 6 forks source link

fix(contract)!: allow to static calls without wallet #205

Closed davidyuk closed 2 years ago

davidyuk commented 2 years ago

BREAKING CHANGE: contract call accepts wallet_path as the last argument For example, replace

$ aecli contract call ./myWalletFile --password testpass foo '[1, 2]'

with

$ aecli contract call --password testpass foo '[1, 2] ./myWalletFile'

closes #202

marc0olo commented 2 years ago

thanks @davidyuk :-)