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 has been archived by the owner on Jan 24, 2022. It is now read-only.
It seems that a Solidity library is not being properly linked before the logic contract is pushed to the network.
We could either:
1- Deploy a copy of the library for each logic contract that uses it, which is the fastest way to fix this issue, though limits reusability
2- Have a single copy of the library being shared amongst all contracts, or even exposed as part of an on-chain library, which would require storing it in the contracts object and adding an extra flag to identify it as a linkable library instead of a contract
It seems that a Solidity
library
is not being properly linked before the logic contract is pushed to the network.We could either:
1- Deploy a copy of the library for each logic contract that uses it, which is the fastest way to fix this issue, though limits reusability
2- Have a single copy of the library being shared amongst all contracts, or even exposed as part of an on-chain library, which would require storing it in the
contracts
object and adding an extra flag to identify it as a linkable library instead of a contractSee #81 for more info
The text was updated successfully, but these errors were encountered: