hedera-json-rpc-relay
hedera-json-rpc-relay copied to clipboard
Sort out how to delete an account with a completely off-chain and offline signature
Problem
Currently, we have an account that we want to delete but the AccountDeleteTransaction signing must be completely offchain. The following execution must be with another account and in the validStart
timeframe.
Solution
There are 2 actions we need to cover:
- Add a script for signing the transaction off-chain and offline. The script's output should be signed transaction bytes that we should use in the "executor" job.
- Add an executor script that should track the transaction's
validStart
time and must pass the transaction to the nodes when thevalidStart
occurs.
Alternatives
No response