Add transactions for payment channels

This commit is contained in:
Ben Sharafian
2017-02-17 15:45:32 +01:00
committed by wilsonianb
parent af687a6aed
commit a574e1158a
48 changed files with 1035 additions and 1 deletions

View File

@@ -36,6 +36,21 @@ module.exports = {
normal: require('./prepare-escrow-cancellation'),
memos: require('./prepare-escrow-cancellation-memos')
},
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'),