Skip to content

Commit

Permalink
fix: use full-form for minting function
Browse files Browse the repository at this point in the history
  • Loading branch information
aramalipoor committed Oct 27, 2022
1 parent fc4e112 commit 8cae3f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -29,7 +29,7 @@ export const useOwnerMinter = ({
contractInterface,
contractAddress,
signerOrProvider,
functionName: 'mintByOwner',
functionName: 'mintByOwner(address,uint256)',
args: [toAddress, mintCount] as ArgsType,
});
};
Expand Up @@ -29,7 +29,7 @@ export const useRoleBasedMinter = ({
contractInterface,
contractAddress,
signerOrProvider,
functionName: 'mintByRole',
functionName: 'mintByRole(address,uint256)',
args: [toAddress, mintCount] as ArgsType,
});
};

0 comments on commit 8cae3f2

Please sign in to comment.