monero-ecosystem / monero-python

A comprehensive Python module for handling Monero cryptocurrency
BSD 3-Clause "New" or "Revised" License
246 stars 80 forks source link

is there any sdk that can create transaction and sign hex without rpc api? #40

Open zhp1254 opened 5 years ago

zhp1254 commented 5 years ago

is there any sdk that can create transaction and sign hex without rpc api?

emesik commented 5 years ago

At the moment we have no code that would modify or create transactions without calling the external API.

It is planned for the future but I wouldn't expect it soon. The matter is critical for user's security and needs to be addressed carefully. I'd rather depend on RPC than allow any lousy code there.

ruanqunfeng commented 5 years ago

@zhp1254 Do you find the sdk?

moneroexamples commented 5 years ago

is there any sdk that can create transaction and sign hex without rpc api?

Yes there is, but depends what you want to do. If you are after JavaScript tools, look at mymonero and openmonero. Openmonero is using mymonero code, so mymonero is the source repo, but openmonero can show how it can be used to build a backend for that code. It provides functionality in javascript to create txs and sign them without needing any RPCing to wallet.

Monero-HackerIndustrial commented 1 year ago

Is there any update? I am working on monerosigner (a seedsigner fork for monero). I wanted to see if there was any traction to have a pure python signing utility. Having pure python signing capabilities can help improve development in offline applications