diff --git a/ethers-solc/test-data/yul-sample/SimpleStore.abi.sol b/ethers-solc/test-data/yul-sample/SimpleStore.abi.sol new file mode 100644 index 00000000..4a02c336 --- /dev/null +++ b/ethers-solc/test-data/yul-sample/SimpleStore.abi.sol @@ -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; +}