Dose polygon-edge support smart contract? #411
-
I wonder if i can deploy a smart contract on my own blockchain developed with polygon-edge. I want to mint a token in polygon-edge based blockchain and swap in the erc20 token in Ethereum. It's hard to find an explanation for that part even if i search the official documentation. Please help me! Our requirements is as follows.
Is polygon-edge suitable these requirements? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
@JSHan94 Hello, Thank you for your question. You can deploy contract in the same manner as Ethereum. You will need to set bytecode to If you're using Remix, you can deploy contract by Injected Web3 via Metamask. |
Beta Was this translation helpful? Give feedback.
@JSHan94 Hello, Thank you for your question. You can deploy contract in the same manner as Ethereum. You will need to set bytecode to
input
field and keepto
field blank in transaction, and send request toeth_sendRawTransaction
in JSON-RPC. https://polygon-edge.netlify.app/docs/get-started/json-rpc-commands#eth_sendrawtransactionIf you're using Remix, you can deploy contract by Injected Web3 via Metamask.