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
{{ message }}
This repository was archived by the owner on Jan 24, 2022. It is now read-only.
app.sol enable creating a contract instance according to package name .
this will give always the latest implementation version of the specific package.
what will be the recommended approach to enable creating a contract instance from an older package versions ?
options:
versioning via the package name - each package has its own version- not nice.
bypass app.sol create function. get the package contract to get the specific provider for the require version.
app.solenable creating a contract instance according to package name .this will give always the latest implementation version of the specific package.
what will be the recommended approach to enable creating a contract instance from an older package versions ?
options:
app.sol createfunction. get the package contract to get the specific provider for the require version.app.solcreate function.latest option seems to be cleaner.