Contracts Verification in Hedera #27
-
Hello, I have a question. I have managed to deploy a contract using the FileAppendTransaction() function. But in the block explorer I see something that is unintelligible for me... https://testnet.dragonglass.me/transactions/00460501151656320700698270653 Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Hi @damianlluch, By contract verification I presume you mean verifying the entity is present post creation. I'd recommend viewing the create-a-smart-contract documentation. Hope that helps |
Beta Was this translation helpful? Give feedback.
Hi @damianlluch,
Thanks for reaching out. I converted your issue to a discussion since it doesn't highlight an issue with this repose code.
By contract verification I presume you mean verifying the entity is present post creation.
In your case all you've done is created a file, not yet a contract.
I'd recommend viewing the create-a-smart-contract documentation.
Specifically you could utilize the
ContractCreateFlow
which does the work of creating a File with the byte code contents and then creating an actual contract that reference these bytes.To verify you can view the contractID output in any mirror node explorer.
Hope that helps