我可以在 Hedera 网络上使用智能合约吗?
Can I use smart contracts on the Hedera network?
Hedera Hashgraph Network 是否支持智能合约,是否可以将智能合约迁移到 Hedera?
支持智能合约。请参阅文档 here。
此外,智能合约 2.0 已宣布并将在 21Q4 左右推出 - 有关更多详细信息,请参阅 Hedera roadmap and the announcement。
简而言之,智能合约 2.0 每秒将启用 运行 数百个 Solidity 智能合约。这也将有助于从其他网络迁移,同时最大限度地减少代码更改。
//Create the transaction const transaction = new ContractCreateTransaction()
.setGas(500)
.setBytecodeFileId(bytecodeFileId)
.setAdminKey(adminKey);
//Modify the default max transaction fee (1 hbar) const modifyTransactionFee = transaction.setMaxTransactionFee(new Hbar(16));
//Sign the transaction with the client operator key and submit to a Hedera network const txResponse = await modifyTransactionFee.execute(client)
Hedera Hashgraph Network 是否支持智能合约,是否可以将智能合约迁移到 Hedera?
支持智能合约。请参阅文档 here。
此外,智能合约 2.0 已宣布并将在 21Q4 左右推出 - 有关更多详细信息,请参阅 Hedera roadmap and the announcement。 简而言之,智能合约 2.0 每秒将启用 运行 数百个 Solidity 智能合约。这也将有助于从其他网络迁移,同时最大限度地减少代码更改。
//Create the transaction const transaction = new ContractCreateTransaction()
.setGas(500)
.setBytecodeFileId(bytecodeFileId)
.setAdminKey(adminKey);
//Modify the default max transaction fee (1 hbar) const modifyTransactionFee = transaction.setMaxTransactionFee(new Hbar(16));
//Sign the transaction with the client operator key and submit to a Hedera network const txResponse = await modifyTransactionFee.execute(client)