Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.02 KB

README.rst

File metadata and controls

36 lines (27 loc) · 1.02 KB

Python Ripple API and transaction management

Settings

  • RIPPLE_ACCOUNT - account that acts as 'manager' and monitors incoming transactions
  • RIPPLE_SECRET - secret for 'manager' account
  • RIPPLE_API_DATA[0]['RIPPLE_API_URL']
  • RIPPLE_API_DATA[0]['RIPPLE_API_USER']
  • RIPPLE_API_DATA[0]['RIPPLE_API_PASSWORD']

Example Config:

RIPPLE_API_DATA = [
        {
    'RIPPLE_API_URL': 'http://s_west.ripple.com:51234',
    'RIPPLE_API_USER': '',
    'RIPPLE_API_PASSWORD': '',
}
]  # You can specify multiple servers and ripple_api app will try them in order if one of servers
#    returns error

Signals

  • ripple_api.signals.transaction_status_changed = Signal(providing_args=["old_status"]) - sent when existing Transaction's status is changed
  • default django's post_save signal is useful to get new Transactions