serai/processor/ethereum/router
Luke Parker 8ea5acbacb Update the Router smart contract to pay fees to the caller
The caller is paid a fixed fee per unit of gas spent. That arguably
incentivizes the publisher to raise the gas used by internal calls, yet this
doesn't effect the user UX as they'll have flatly paid the worst-case fee
already. It does pose a risk where callers are arguably incentivized to cause
transaction failures which consume all the gas, not just increased gas, yet:

1) Modern smart contracts don't error by consuming all the gas
2) This is presumably infeasible
3) Even if it was feasible, the gas fees gained presumably exceed the gas fees
   spent causing the failure

The benefit to only paying the callers for the gas used, not the gas alotted,
is it allows Serai to build up a buffer. While this should be minor, a few
cents on every transaction at best, if we ever do have any costs slip through
the cracks, it ideally is sufficient to handle those.
2024-09-19 23:36:32 -07:00
..
contracts Update the Router smart contract to pay fees to the caller 2024-09-19 23:36:32 -07:00
src Update the Router smart contract to pay fees to the caller 2024-09-19 23:36:32 -07:00
build.rs Smash out the router library 2024-09-19 23:36:32 -07:00
Cargo.toml Ethereum SignableTransaction, Eventuality 2024-09-19 23:36:32 -07:00
LICENSE Smash out the router library 2024-09-19 23:36:32 -07:00
README.md Smash out the router library 2024-09-19 23:36:32 -07:00

Ethereum Router