Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler committed Jun 7, 2024
1 parent ed2a70d commit 5bcd41c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"@biconomy/account": "^4.4.5",
"@biconomy/use-aa": "^1.0.10",
"@biconomy/use-aa": "1.0.11",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@ethersproject/providers": "^5.7.2",
Expand Down
16 changes: 8 additions & 8 deletions src/components/Forward/MintNft.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,19 +78,19 @@ const MintNftForward: React.FC = () => {
);
}, [waitIsSuccess]);

console.log(
mergeOptions([
Options.GasTokenPayment,
Options.getGasTokenFeeQuote(selectedQuote!),
])
);

const mintNft = () => {
mutate({
transactions,
options: mergeOptions([
Options.GasTokenPayment,
{
paymasterServiceData: {
mode: PaymasterMode.ERC20,
feeQuote: selectedQuote,
spender: data?.tokenPaymasterAddress,
maxApproval: false,
},
},
Options.getGasTokenFeeQuote(selectedQuote!),
]),
});
};
Expand Down

0 comments on commit 5bcd41c

Please sign in to comment.