Reputation: 39
Is it possible to create a feeless ERC20 token?
Or paying fees through another address?
I have a solution in mind, to refund the transaction fee amount to receiver’s adress from a central address.
Any ideas?
Upvotes: 3
Views: 631
Reputation: 11001
You can't have another address pay for transaction fees. You have two options:
ownersOnly
payable
fallback function) and process refunds when appropriate. Be sure to follow appropriate withdrawal patterns.Upvotes: 1