You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For compilation of contracts, publisher global truffle version is used. This is a problem since truffle global version can be different everytime mosaic contracts npm is published.
"compile": "truffle compile",
Solution
Use node modules truffle version for contracts compilation
"compile": "./node_modules/.bin/truffle compile",
Problem
Contracts are being compiled on different compiler version
Proposed Solution
Publish metadata of contracts when publishing package
The text was updated successfully, but these errors were encountered:
abhayks1
changed the title
npm run compile should use node modules truffle version for contracts compilation
Publish metadata of contracts while publishing package
Dec 9, 2019
Problem
For compilation of contracts, publisher global truffle version is used. This is a problem since truffle global version can be different everytime mosaic contracts npm is published.
Solution
Use node modules truffle version for contracts compilation
Problem
Contracts are being compiled on different compiler version
Proposed Solution
Publish metadata of contracts when publishing package
The text was updated successfully, but these errors were encountered: