← Kembali
Deploy Remix
Deploy Remix : https://remix.ethereum.org
1Langkah 1
Create New File
KryvoraTest.sol
2Langkah 2
Paste This Script
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract KryvoraTest {
string public message;
address public owner;
constructor() {
message = "Hello Kryvora!";
owner = msg.sender;
}
function setMessage(string memory _message) public {
message = _message;
}
}3Langkah 3
Go to Solidity Compiler
4Langkah 4
Click Complile
KryvoraTest.sol
5Langkah 5
Click Deploy And Run Transaction
6Langkah 6
Environment Select Browser Extansion
7Langkah 7
Connect Your Wallet Testnet
8Langkah 8
Deploy
9Langkah 9
Copy Tx Hash Deploy
10Langkah 10
Paste TxHash On Web
11Langkah 11
Done
