Hi,
How to create ADA address, sign transaction using rest api ?
Kindly do needful
Are you referring toâŚ
1am so I have some brain freeze going on.
Probably this repository has all the information you need to pick the library best for you: https://github.com/input-output-hk/adrestia
Thank you for replies @Trigger @SebastienGllmt
@SebastienGllmt I need to run Blockchain node in my server to hit this api ? âhttps://localhost:8090/v2/walletsâ
Yes, for each solution you will have to run a node. If youâre looking for an API hosted by somebody else that you can reuse, I wouldnât do it until after the Shelley hardfork because all the existing public APIs will go through breaking changes for this upgrade.
@SebastienGllmt I need to download ? https://input-output-hk.github.io/cardano-wallet/api/edge/ âDownload OpenAPI specificationâ.
@SebastienGllmt https://github.com/input-output-hk/adrestia is there testnet option ?
Use a library or HTTP client (e.g., curl
) to interact with the Cardano node via its REST API. The nodeâs REST API allows you to query information and submit transactions.
Generate a wallet using the Cardano Hierarchical Deterministic (HD) Wallet API. Derive an address from the wallet using the Cardano Addresses API. When working with the Cardano blockchain, understanding the B2B API meaning (Business-to-Business API) is essential, as it enables seamless integration with other systems and services.
See the code:
Generate a wallet
curl -X POST https://your-cardano-node:port/v2/wallets -d â{ânameâ: âMyWalletâ}â
Derive an address from the wallet
curl -X POST