mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-19 11:45:49 +00:00
109 lines
3.9 KiB
JavaScript
109 lines
3.9 KiB
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
prepareOrder: {
|
|
buy: require('./prepare-order'),
|
|
sell: require('./prepare-order-sell'),
|
|
expiration: require('./prepare-order-expiration')
|
|
},
|
|
prepareOrderCancellation: {
|
|
simple: require('./prepare-order-cancellation'),
|
|
withMemos: require('./prepare-order-cancellation-memos')
|
|
},
|
|
preparePayment: {
|
|
normal: require('./prepare-payment'),
|
|
minAmountXRP: require('./prepare-payment-min-xrp'),
|
|
minAmount: require('./prepare-payment-min'),
|
|
wrongAddress: require('./prepare-payment-wrong-address'),
|
|
wrongAmount: require('./prepare-payment-wrong-amount'),
|
|
wrongPartial: require('./prepare-payment-wrong-partial'),
|
|
allOptions: require('./prepare-payment-all-options'),
|
|
noCounterparty: require('./prepare-payment-no-counterparty')
|
|
},
|
|
prepareSettings: {
|
|
domain: require('./prepare-settings'),
|
|
noSignerEntries: require('./prepare-settings-no-signer-entries'),
|
|
signers: {
|
|
normal: require('./prepare-settings-signers'),
|
|
noThreshold: require('./prepare-settings-signers-no-threshold'),
|
|
noWeights: require('./prepare-settings-signers-no-weights')
|
|
}
|
|
},
|
|
prepareEscrowCreation: {
|
|
normal: require('./prepare-escrow-creation'),
|
|
full: require('./prepare-escrow-creation-full')
|
|
},
|
|
prepareEscrowExecution: {
|
|
normal: require('./prepare-escrow-execution'),
|
|
simple: require('./prepare-escrow-execution-simple'),
|
|
noCondition: require('./prepare-escrow-execution-no-condition'),
|
|
noFulfillment: require('./prepare-escrow-execution-no-fulfillment')
|
|
},
|
|
prepareEscrowCancellation: {
|
|
normal: require('./prepare-escrow-cancellation'),
|
|
memos: require('./prepare-escrow-cancellation-memos')
|
|
},
|
|
prepareCheckCreate: {
|
|
normal: require('./prepare-check-create'),
|
|
full: require('./prepare-check-create-full')
|
|
},
|
|
prepareCheckCash: {
|
|
amount: require('./prepare-check-cash-amount'),
|
|
deliverMin: require('./prepare-check-cash-delivermin')
|
|
},
|
|
prepareCheckCancel: {
|
|
normal: require('./prepare-check-cancel')
|
|
},
|
|
preparePaymentChannelCreate: {
|
|
normal: require('./prepare-payment-channel-create'),
|
|
full: require('./prepare-payment-channel-create-full')
|
|
},
|
|
preparePaymentChannelFund: {
|
|
normal: require('./prepare-payment-channel-fund'),
|
|
full: require('./prepare-payment-channel-fund-full')
|
|
},
|
|
preparePaymentChannelClaim: {
|
|
normal: require('./prepare-payment-channel-claim'),
|
|
full: require('./prepare-payment-channel-claim-full'),
|
|
close: require('./prepare-payment-channel-claim-close'),
|
|
renew: require('./prepare-payment-channel-claim-renew'),
|
|
noSignature: require('./prepare-payment-channel-claim-no-signature')
|
|
},
|
|
prepareTrustline: {
|
|
simple: require('./prepare-trustline-simple'),
|
|
complex: require('./prepare-trustline'),
|
|
frozen: require('./prepare-trustline-frozen.json')
|
|
},
|
|
sign: {
|
|
normal: require('./sign'),
|
|
ticket: require('./sign-ticket'),
|
|
escrow: require('./sign-escrow.json'),
|
|
signAs: require('./sign-as')
|
|
},
|
|
signPaymentChannelClaim: require('./sign-payment-channel-claim'),
|
|
getPaths: {
|
|
normal: require('./getpaths/normal'),
|
|
UsdToUsd: require('./getpaths/usd2usd'),
|
|
XrpToXrp: require('./getpaths/xrp2xrp'),
|
|
XrpToXrpNotEnough: require('./getpaths/xrp2xrp-not-enough'),
|
|
NotAcceptCurrency: require('./getpaths/not-accept-currency'),
|
|
NoPaths: require('./getpaths/no-paths'),
|
|
NoPathsSource: require('./getpaths/no-paths-source-amount'),
|
|
NoPathsWithCurrencies: require('./getpaths/no-paths-with-currencies'),
|
|
sendAll: require('./getpaths/send-all'),
|
|
invalid: require('./getpaths/invalid'),
|
|
issuer: require('./getpaths/issuer')
|
|
},
|
|
getOrderbook: {
|
|
normal: require('./get-orderbook'),
|
|
withXRP: require('./get-orderbook-with-xrp')
|
|
},
|
|
computeLedgerHash: {
|
|
header: require('./compute-ledger-hash'),
|
|
transactions: require('./compute-ledger-hash-transactions')
|
|
},
|
|
combine: {
|
|
setDomain: require('./combine.json')
|
|
}
|
|
};
|