26 lines
760 B
Solidity
26 lines
760 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.19;
|
|
|
|
contract TokenClaimTest {
|
|
event EvmPrint(string);
|
|
|
|
constructor() {
|
|
emit EvmPrint("TokenClaim.constructor");
|
|
|
|
// Here you can either deploy your contracts via `new`, eg:
|
|
// Counter counter = new Counter();
|
|
// counter.increment();
|
|
|
|
// or interact with an existing deployment by specifying a `fork` url in `dbg.project.json`
|
|
// eg:
|
|
// ICounter counter = ICounter(0x12345678.....)
|
|
// counter.increment();
|
|
//
|
|
// If you have correct symbols (`artifacts`) for the deployed contract, you can step-into calls.
|
|
|
|
uint256 abc = 123;
|
|
uint256 def = abc + 5;
|
|
|
|
emit EvmPrint("DbgEntry return");
|
|
}
|
|
} |