mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 20:25:48 +00:00
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
submit: require('./submit'),
|
|
ledger: require('./ledger'),
|
|
ledgerNotFound: require('./ledger-not-found'),
|
|
ledgerWithoutCloseTime: require('./ledger-without-close-time'),
|
|
subscribe: require('./subscribe'),
|
|
unsubscribe: require('./unsubscribe'),
|
|
account_info: {
|
|
normal: require('./account-info'),
|
|
notfound: require('./account-info-not-found')
|
|
},
|
|
account_offers: require('./account-offers'),
|
|
account_tx: require('./account-tx'),
|
|
book_offers: require('./book-offers'),
|
|
server_info: require('./server-info'),
|
|
ripple_path_find: {
|
|
generate: require('./ripple-path-find'),
|
|
sendUSD: require('./ripple-path-find-send-usd'),
|
|
XrpToXrp: require('./ripple-path-find-xrp-to-xrp')
|
|
},
|
|
tx: {
|
|
Payment: require('./tx/payment.json'),
|
|
AccountSet: require('./tx/account-set.json'),
|
|
OfferCreate: require('./tx/offer-create.json'),
|
|
OfferCancel: require('./tx/offer-cancel.json'),
|
|
TrustSet: require('./tx/trust-set.json'),
|
|
NotFound: require('./tx/not-found.json'),
|
|
NoLedgerIndex: require('./tx/no-ledger-index.json'),
|
|
NoLedgerFound: require('./tx/no-ledger-found.json'),
|
|
LedgerWithoutTime: require('./tx/ledger-without-time.json')
|
|
}
|
|
};
|