Verified Contract
0x055e0a77C8533beff379a20d02464E19A2478185
Pin to watchlist
scan to copy
zkLTC Balance
0
hard money native
Transactions
0
Token transfers
0
Validations
0
blocks produced
Hard Money Score
0
/100
NO ACTIVITY
share of activity in native zkLTC vs. tokens
native
0
tokens
0
Contract name
LitClinicHealthRecordStub
Compiler
v0.8.26+commit.8a97fa7a
Optimization
enabled · 200 runs
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.26;
contract LitClinicHealthRecordStub {
string public recordLabel;
uint256 public createdAt;
constructor(string memory _recordLabel) {
recordLabel = _recordLabel;
createdAt = block.timestamp;
}
function setLabel(string memory _recordLabel) external {
recordLabel = _recordLabel;
}
}