wagmi allows to add paymaster capability url as mentioned in the doc core/api/actions/sendCalls
import { parseEther } from 'viem'
import { sendCalls } from '@wagmi/core'
import { config } from './config'
const id = await sendCalls(config, {
calls: [
{
to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8',
value: parseEther('1')
},
{
data: '0xdeadbeef',
to: '0xa5cc3c03994DB5b0d9A5eEdD10CabaB0813678AC',
},
],
capabilities: {
paymasterService: {
url: 'https://...'
}
}
})
i tried it but it seems you do not allow us for custom paymaster
is there a way we could do it? like contact you or make the request manually and users be able to sign it
we want to sponser with our own logic and users be able to use the MetaMask mainly
thanks for your time