We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bfae1a2 + 4ef4bdb commit 1cd4fbcCopy full SHA for 1cd4fbc
1 file changed
contracts/L2/src/core/xZBERC20.cairo
@@ -92,6 +92,15 @@ pub mod xZBERC20 {
92
}
93
94
95
+ #[generate_trait]
96
+ #[abi(per_item)]
97
+ impl TestMint of IxZbTest<ContractState> {
98
+ #[external(v0)]
99
+ fn test_mint(ref self: ContractState, recipient: ContractAddress, amount: u256) {
100
+ self.erc20.mint(recipient, amount);
101
+ }
102
103
+
104
//
105
// Upgradeable
106
0 commit comments