Description:
Smart contract deployed on Ethereum.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
// SPDX-License-Identifier: BSD-3-Clause
pragma solidity ^0.8.24;
// src/Foo.sol
contract Foo {
uint256 public myVar;
constructor() {
myVar = 23;
}
}
Submitted on: 2025-10-07 10:46:01
Comments
Log in to comment.
No comments yet.