package commands import ( "context" "fmt" libcommon "github.com/ledgerwatch/erigon-lib/common" "github.com/ledgerwatch/erigon/common/hexutil" ) // Accounts implements eth_accounts. Returns a list of addresses owned by the client. // Deprecated: This function will be removed in the future. func (api *APIImpl) Accounts(ctx context.Context) ([]libcommon.Address, error) { return []libcommon.Address{}, fmt.Errorf(NotAvailableDeprecated, "eth_accounts") } // Sign implements eth_sign. Calculates an Ethereum specific signature with: sign(keccak256('\\x19Ethereum Signed Message:\\n' + len(message) + message))). // Deprecated: This function will be removed in the future. func (api *APIImpl) Sign(ctx context.Context, _ libcommon.Address, _ hexutil.Bytes) (hexutil.Bytes, error) { return hexutil.Bytes(""), fmt.Errorf(NotAvailableDeprecated, "eth_sign") } // SignTransaction deprecated func (api *APIImpl) SignTransaction(_ context.Context, txObject interface{}) (libcommon.Hash, error) { return libcommon.Hash{0}, fmt.Errorf(NotAvailableDeprecated, "eth_signTransaction") }