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
EncodeFunctionCallFuture should be able to be passed as an arg to:
contract constructors
m.call args
m.staticCall args
m.send data
Validations and reconciliations should be same as for m.call , minus things they don’t have in common like value and from
Usage:
example using proxy initialization function
constproxyAdminOwner=m.getAccount(0);constcontract=m.contract("Contract");constdata=m.encodeFunctionCall(contract,"initialize",[proxyAdminOwner])constproxy=m.contract("TransparentUpgradeableProxy",[...,data]);// etc.
The text was updated successfully, but these errors were encountered:
args
should accept the same types asm.call
EncodeFunctionCallFuture
should be able to be passed as an arg to:contract constructors
m.call
argsm.staticCall
argsm.send
dataValidations and reconciliations should be same as for
m.call
, minus things they don’t have in common likevalue
andfrom
Usage:
example using proxy initialization function
The text was updated successfully, but these errors were encountered: