Advertisement
Guest User

Untitled

a guest
May 16th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import { Client } from 'spp-client'
  2.  
  3. const client = new Client({
  4. username: 'alice@red.ilpdemo.org',
  5. password: 'secret'
  6. })
  7.  
  8. function pay () {
  9. const payment = client.payment({
  10. destination: 'bob@blue.ilpdemo.org',
  11. amount: '0.01',
  12. memo: 'Still love you!'
  13. })
  14.  
  15. return payment.send()
  16. }
  17.  
  18. setInterval(pay, 1500)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement