리플을 활용하여 무언가 만들까 찾아보다 리플API를 발견 했습니다.

rippled API Reference | XRPL.org
Communicate directly with rippled, the core peer-to-peer server that manages the XRP Ledger.

이걸 활용하면 쇼핑몰 느낌의 무언가를 만들 수 있을 것 같았습니다.

rippled

rippled는 XRP 원장을 담당하는 P2P 코어 서버 입니다. 각각의 rippled 는 다른 rippled와 통신하여 리플의 전체 원장을 복사, 공유 합니다.

ripple/rippled
Decentralized cryptocurrency blockchain daemon implementing the XRP Ledger in C++ - ripple/rippled

rippled에 접속하는 방법으로 웹 소켓 방식과 JSON-RPC 가 있습니다. 사이트는 웹 소켓을 권장하고 있습니다.

rippled에 접속하기

rippled를 구축 하거나, 외부 서버에 접속할 수 있습니다.

JSON-RPC Websocket
https://xrpl.ws/ wss://xrpl.ws/
https://s1.ripple.com:51234/ wss://s1.ripple.com/
https://s2.ripple.com:51234/ wss://s2.ripple.com/

위 링크는 테스트용 으로, 실제 서비스를 만들려면 rippled를 설치해야 합니다.

rippled 설치

Install rippled | XRPL.org
Install and update the rippled server.

위 링크에 rippled 설치 방법이 안내 되어 있습니다.