Skip to content

Commit

Permalink
Merge pull request #131 from lambdaclass/fd-mint-ierc20
Browse files Browse the repository at this point in the history
feat(mint-erc20): add abi interface
  • Loading branch information
fborello-lambda authored Aug 20, 2024
2 parents 6a81b46 + 8ffbec9 commit 8a9de6b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/contracts/erc20.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
use ethers_contract::abigen;

abigen!(ERC20, "abi/IERC20.json");

abigen!(
MINT_IERC20,
"[function mint(address _to, uint256 _amount) public returns (bool)]"
);

0 comments on commit 8a9de6b

Please sign in to comment.