本文へスキップ
このページは英語からの機械翻訳を使用しており、誤りや不明瞭な表現が含まれている可能性があります。最も正確な情報については、オリジナルの英語版をご覧ください。頻繁な更新のため、一部のコンテンツはオリジナルの英語になっている可能性があります。Crowdinでの取り組みに参加して、このページの翻訳改善にご協力ください。 (Crowdin translation page, Contributing guide)

KaiaGreeter

KaiaGreeter is a simple contract that returns a greeting message. Greeting message is set when the contract is deployed.

Writing KaiaGreeter


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract KaiaGreeter {
/* Define variable greeting of the type string */
string greeting;
/* This runs once when the contract is created */
constructor (string memory _greeting) {
greeting = _greeting;
}
/* Main function */
function greet() public view returns (string memory) {
return greeting;
}
}

Deploying KaiaGreeter using Remix Online IDE

  • Please visit Kaia Plugin for Remix and create a KaiaGreeter.sol contract.

  • Copy and paste the code above in your newly created file: KaiaGreeter.sol.

  • Get some test KAIA from the faucet if you don’t already have test KAIA.

  • Deploy the contract with initial parameter, a greeting message.

  • After deploying, you can invoke greet from the IDE.

References

For the details of contract deployment and the Remix Online IDE usage guideline, please refer to the following documents.

ページを改善してください。