Create SimpleStore.abi.sol

This commit is contained in:
ControlCplusControlV 2022-03-07 21:15:21 -07:00 committed by GitHub
parent 457253a46d
commit 99d0dfd785
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
interface SimpleStore {
function store(uint256 value) external;
}