Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/emschwartz/ripple-donate-widget

An embeddable widget for paying with Ripple.
https://github.com/emschwartz/ripple-donate-widget

Last synced: 3 months ago
JSON representation

An embeddable widget for paying with Ripple.

Lists

README

        

ripple-checkout
===============

An embeddable widget for paying with Ripple.

See [http://emschwartz.github.io/ripple-checkout/](http://emschwartz.github.io/ripple-checkout/) for a live demo.

### How to include the widget in a webpage:

Copy the `ripple-checkout.js` script into your page's directory and include the following elements in the page:

```html

var checkout = RippleCheckout({
dst_address: 'rLpq5RcRzA8FU1yUqEPW4xfsdwon7casuM',
server_url: 'wss://s_west.ripple.com'
});

checkout.addButton({
dst_amount: {
value: '10',
currency: 'XRP',
issuer: '' // Issuer can be left blank or specified for non-XRP currencies
},
dst_tag: Math.floor(Math.random() * 4294967294),
// button_type: 'pay', // Defaults to 'pay', other option is 'donate'
// dom_id: 'ripple-checkout', // Defaults to 'ripple-checkout'
callback: function(err, confirmed_transaction) {
if (err) {
alert('Error: \n\n' + err);
} else {
alert('Transaction Confirmed: \n\n' + JSON.stringify(confirmed_transaction));
}
}
});

```

### How it works:

Clicking on the button will direct the user to a `ripple-client` page with a pre-filled payment form.

The widget uses a WebSocket connection to listen to the Ripple Network transaction stream. Once the transaction has been processed and the funds have been confirmed in the `dst_address` account, the `callback` function registered with `.addButton({...})` will be called with the details of the transaction.