From 5bcd41ca6a7db40996070f03e23e145f1cf174be Mon Sep 17 00:00:00 2001 From: Joe Pegler Date: Fri, 7 Jun 2024 17:45:28 +0100 Subject: [PATCH] chore: bump version --- bun.lockb | Bin 802471 -> 802471 bytes package.json | 2 +- src/components/Forward/MintNft.tsx | 16 ++++++++-------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bun.lockb b/bun.lockb index 1cb049cd5b7ea5f82dd41dd5ac8976be81c5fd0c..a51dd95054f86e987875fd2735343a778a6a9970 100755 GIT binary patch delta 195 zcmZ4f*I@Zyg9&;HT}28^Z)a$G=NqiuRU)aaza@6n5z(mP!{&vFE4O+)NpJLP^<&)X z$7JO+-J_7vpnZoE6A&|R-{Hif`rD!K-Kyw%e)mrY(rz5{*e`I8^KIYGAU?M4iB_U_ z0^3ClBUiBfTXcr=P19@R-1Milp2|!%myDhyc7M=bX{FxxxwKu@junX6w#(YFZ=S<$ usAr&OXvolh{T4eAa{w_X5OZz6ev5l?(DbE=+zQj9b$Ph9FVW>;76brY!cv+5 delta 194 zcmZ4f*I@Zyg9&;HpHAi6_%1G9d9m%CG^bqV|D1b|jC_-no~BostzB;QEvM11)sJzj zACr~S=BM>dY3K zcao)f^Y)K^r@uV?DqWEKL++-`LrKTKu6AprS$BN?U@~p`o7L^IcC0|mwq4eaee)dl uI72-HJwt=`>$li}m;;D8ftYLi^;_JFgQf=yb16=b(dFUXzC@RYSr7miC|Cjj diff --git a/package.json b/package.json index eac57f5..c2699d0 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/components/Forward/MintNft.tsx b/src/components/Forward/MintNft.tsx index ec646d6..d1aae14 100644 --- a/src/components/Forward/MintNft.tsx +++ b/src/components/Forward/MintNft.tsx @@ -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!), ]), }); };