-
Notifications
You must be signed in to change notification settings - Fork 1
/
escrow.js
266 lines (248 loc) · 5.57 KB
/
escrow.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
const { createLockingTx, createUnlockingTx } = require('./chain-util')
const moment = require('moment')
const debug = require('debug')('ilp-plugin-chain:escrow')
const assert = require('assert')
const ESCROW_CONTRACT_SOURCE =
`contract InterledgerTransfer(source: Program,
destination_key: PublicKey,
condition: Hash,
expires_at: Time) locks value {
clause fulfill(fulfillment: String, sig: Signature) {
verify before(expires_at)
verify size(fulfillment) == 32
verify sha256(fulfillment) == condition
verify checkTxSig(destination_key, sig)
unlock value
}
clause reject(sig: Signature) {
verify checkTxSig(destination_key, sig)
lock value with source
}
clause timeout() {
verify after(expires_at)
lock value with source
}
}`
const FULFILL_CLAUSE = '0000000000000000'
const REJECT_CLAUSE = '0100000000000000'
const TIMEOUT_CLAUSE = '0200000000000000'
async function create ({
client,
signer,
sourceAccountId,
sourceReceiver,
destinationPubkey,
amount,
assetId,
expiresAt,
condition,
transactionData,
utxoData
}) {
debug(`create from ${sourceAccountId} to key ${destinationPubkey} for ${amount} of asset ${assetId}, condition: ${condition}, expiresAt: ${expiresAt}`)
const compiled = await client.ivy.compile({
contract: ESCROW_CONTRACT_SOURCE,
args: [{
string: sourceReceiver.controlProgram
}, {
string: destinationPubkey
}, {
string: condition
}, {
integer: expiresAt.valueOf()
}]
})
const controlProgram = compiled.program
const actions = [{
type: 'spendFromAccount',
accountId: sourceAccountId,
amount,
assetId
}, {
type: 'controlWithReceiver',
amount,
assetId,
receiver: {
controlProgram,
expiresAt: moment(expiresAt).toISOString()
},
referenceData: Object.assign({
sourceReceiver: sourceReceiver
}, utxoData)
}]
const utxo = await createLockingTx({
client,
signer,
actions,
transactionData
})
return utxo
}
async function verify ({
client,
sourceReceiver,
destinationPubkey,
amount,
assetId,
expiresAt,
condition,
utxo
}) {
let compiled
try {
compiled = await client.ivy.compile({
contract: ESCROW_CONTRACT_SOURCE,
args: [{
string: sourceReceiver.controlProgram
}, {
string: destinationPubkey
}, {
string: condition
}, {
integer: expiresAt.valueOf()
}]
})
} catch (err) {
debug('error reconstructing escrow contract', err)
throw err
}
const controlProgram = compiled.program
debug('recompiled contract', controlProgram)
assert(utxo.controlProgram === controlProgram, 'escrow contract is not an interledger transfer or has the wrong parameters. actual: ' + utxo.controlProgram + ' expected: ' + controlProgram)
assert(moment().isBefore(expiresAt), 'escrow has already expired')
debug('verified that control program matches what we expect')
// TODO do we need to check the expiry of the control program?
}
async function fulfill ({
client,
signer,
fulfillment,
escrowUtxo,
destinationKey,
destinationReceiver,
expiresAt
}) {
const actions = [{
type: 'spendUnspentOutput',
outputId: escrowUtxo.id
}, {
type: 'controlWithReceiver',
amount: escrowUtxo.amount,
assetId: escrowUtxo.assetId,
receiver: destinationReceiver
}]
const witness = [{
type: 'data',
value: fulfillment
}, {
type: 'raw_tx_signature',
keys: [
destinationKey
],
quorum: 1,
signatures: []
}, {
type: 'data',
value: FULFILL_CLAUSE
}]
const maxtimes = [
moment(expiresAt).toDate()
]
const mintimes = []
const tx = await createUnlockingTx({
client,
signer,
actions,
witness,
mintimes,
maxtimes
})
return tx
}
async function reject ({
client,
signer,
escrowUtxo,
destinationKey,
utxoData,
inputData,
transactionData
}) {
const actions = [{
type: 'spendUnspentOutput',
outputId: escrowUtxo.id,
referenceData: inputData
}, {
type: 'controlWithReceiver',
amount: escrowUtxo.amount,
assetId: escrowUtxo.assetId,
receiver: escrowUtxo.referenceData.sourceReceiver,
referenceData: utxoData
}]
const witness = [{
type: 'raw_tx_signature',
keys: [
destinationKey
],
quorum: 1,
signatures: []
}, {
type: 'data',
value: REJECT_CLAUSE
}]
const maxtimes = []
const mintimes = []
const tx = await createUnlockingTx({
client,
signer,
actions,
witness,
mintimes,
maxtimes,
transactionData
})
return tx
}
async function timeout ({
client,
signer,
escrowUtxo,
globalData
}) {
const actions = [{
type: 'spendUnspentOutput',
outputId: escrowUtxo.id
}, {
type: 'controlWithReceiver',
amount: escrowUtxo.amount,
assetId: escrowUtxo.assetId,
receiver: escrowUtxo.referenceData.sourceReceiver,
referenceData: globalData
}]
const witness = [{
type: 'data',
value: TIMEOUT_CLAUSE
}]
const maxtimes = []
const mintimes = [
new Date(escrowUtxo.referenceData.expiresAt)
]
const tx = await createUnlockingTx({
client,
signer,
actions,
witness,
mintimes,
maxtimes,
globalData
})
return tx
}
exports.create = create
exports.fulfill = fulfill
exports.reject = reject
exports.timeout = timeout
exports.verify = verify
exports.FULFILL_CLAUSE = FULFILL_CLAUSE
exports.REJECT_CLAUSE = REJECT_CLAUSE
exports.TIMEOUT_CLAUSE = TIMEOUT_CLAUSE