Hey guys, truffle question here: When I'm trying to access a deployed (on ganache) smart contract from my node/react project, I can use the following code:
var MyContract = contract({
abi: ...,
unlinked_binary: ...,
address: ..., // optional
// many more
})
My question is, what is unlinked_binary? Where can I find this information?
May 30, 2020, 8:10 PM