-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2-4_send-aggregate-bonded-transaction_transfer_and_cosign.ts
370 lines (345 loc) · 12.9 KB
/
2-4_send-aggregate-bonded-transaction_transfer_and_cosign.ts
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
import { firstValueFrom } from "rxjs";
import {
Account,
Address,
AggregateTransaction,
CosignatureSignedTransaction,
CosignatureTransaction,
Deadline,
HashLockTransaction,
Mosaic,
PlainMessage,
RepositoryFactoryHttp,
TransferTransaction,
UInt64,
} from "symbol-sdk";
import * as dotenv from "dotenv";
dotenv.config();
(async () => {
const nodeUrl = "https://sym-test-03.opening-line.jp:3001";
const repositoryFactoryHttp = new RepositoryFactoryHttp(nodeUrl);
// Get network info
const networkType = await firstValueFrom(
repositoryFactoryHttp.getNetworkType()
);
const epochAdjustment = await firstValueFrom(
repositoryFactoryHttp.getEpochAdjustment()
);
const generationHash = await firstValueFrom(
repositoryFactoryHttp.getGenerationHash()
);
const networkCurrencies = await firstValueFrom(
repositoryFactoryHttp.getCurrencies()
);
const networkCurrency = networkCurrencies.currency;
const networkCurrencyMosaicId = networkCurrency.mosaicId!;
const networkCurrencyDivisibility = networkCurrency.divisibility;
console.log({
networkType,
epochAdjustment,
generationHash,
networkCurrencyMosaicId,
networkCurrencyDivisibility,
});
console.log(networkCurrencyMosaicId.toHex());
// Sender account info
const senderRawPrivateKey = process.env.SYMBOL_TESTNET_PRIVATE_KEY!;
const senderRawAddress = process.env.SYMBOL_TESTNET_ADDRESS!;
const senderAccount = Account.createFromPrivateKey(
senderRawPrivateKey,
networkType
);
if (senderAccount.address.plain() !== senderRawAddress) {
throw Error("senderAccount does not match senderRawAddress");
}
// Multisig account info
const multisigRawPrivateKey =
process.env.SYMBOL_TESTNET_MULTISIG_PRIVATE_KEY!;
const multisigRawAddress = process.env.SYMBOL_TESTNET_MULTISIG_ADDRESS!;
const multisigAccount = Account.createFromPrivateKey(
multisigRawPrivateKey,
networkType
);
if (multisigAccount.address.plain() !== multisigRawAddress) {
throw Error("multisigAccount does not match multisigRawAddress");
}
// Cosigner1 account info
const cosigner1RawPrivateKey =
process.env.SYMBOL_TESTNET_COSIGNER1_PRIVATE_KEY!;
const cosigner1RawAddress = process.env.SYMBOL_TESTNET_COSIGNER1_ADDRESS!;
const cosigner1Account = Account.createFromPrivateKey(
cosigner1RawPrivateKey,
networkType
);
if (cosigner1Account.address.plain() !== cosigner1RawAddress) {
throw Error("cosigner1Account does not match cosigner1RawAddress");
}
// Cosigner2 account info
const cosigner2RawPrivateKey =
process.env.SYMBOL_TESTNET_COSIGNER2_PRIVATE_KEY!;
const cosigner2RawAddress = process.env.SYMBOL_TESTNET_COSIGNER2_ADDRESS!;
const cosigner2Account = Account.createFromPrivateKey(
cosigner2RawPrivateKey,
networkType
);
if (cosigner2Account.address.plain() !== cosigner2RawAddress) {
throw Error("cosigner2Account does not match cosigner2RawAddress");
}
// Cosigner3 account info
const cosigner3RawPrivateKey =
process.env.SYMBOL_TESTNET_COSIGNER3_PRIVATE_KEY!;
const cosigner3RawAddress = process.env.SYMBOL_TESTNET_COSIGNER3_ADDRESS!;
const cosigner3Account = Account.createFromPrivateKey(
cosigner3RawPrivateKey,
networkType
);
if (cosigner3Account.address.plain() !== cosigner3RawAddress) {
throw Error("cosigner3Account does not match cosigner3RawAddress");
}
// Transaction info
const deadline = Deadline.create(epochAdjustment); // デフォルトは2時間後
const recipientRawAddress = "TARDV42KTAIZEF64EQT4NXT7K55DHWBEFIXVJQY";
const recipientAddress = Address.createFromRawAddress(recipientRawAddress);
const relativeAmount = 1; // 1[XYM]送信 = 1*10^divisibility[μXYM]送信
const absoluteAmount =
relativeAmount * parseInt("1" + "0".repeat(networkCurrencyDivisibility)); // networkCurrencyDivisibility = 6 => 1[XYM] = 10^6[μXYM]
const absoluteAmountUInt64 = UInt64.fromUint(absoluteAmount);
const mosaic = new Mosaic(networkCurrencyMosaicId, absoluteAmountUInt64);
const mosaics = [mosaic];
const rawMessage = "Hello, Symbol!";
const plainMessage = PlainMessage.create(rawMessage); // 平文メッセージ
const feeMultiplier = 100; // トランザクション手数料に影響する。現時点ではデフォルトのノードは手数料倍率が100で、多くのノードがこれ以下の数値を指定しており、100を指定しておけば素早く承認される傾向。
// Create 1st inner transaction
const innerTransaction1 = TransferTransaction.create(
deadline,
recipientAddress,
mosaics,
plainMessage,
networkType,
undefined,
undefined,
senderAccount.publicAccount
).toAggregate(senderAccount.publicAccount);
// // Create 2nd inner transaction
// const innerTransaction2 = TransferTransaction.create(
// deadline,
// recipientAddress,
// mosaics,
// PlainMessage.create("I will be a multisig account."),
// networkType,
// undefined,
// undefined,
// multisigAccount.publicAccount
// );
// Create 3rd inner transaction
const innerTransaction3 = TransferTransaction.create(
deadline,
recipientAddress,
mosaics,
PlainMessage.create("I will be a cosigner1 account."),
networkType,
undefined,
undefined,
cosigner1Account.publicAccount
);
// Create 4th inner transaction
const innerTransaction4 = TransferTransaction.create(
deadline,
recipientAddress,
mosaics,
PlainMessage.create("I will be a cosigner2 account."),
networkType,
undefined,
undefined,
cosigner2Account.publicAccount
);
// Create 5th inner transaction
const innerTransaction5 = TransferTransaction.create(
deadline,
recipientAddress,
mosaics,
PlainMessage.create("I will be a cosigner3 account."),
networkType,
undefined,
undefined,
cosigner3Account.publicAccount
);
// Create aggregate bonded transaction ... max inner transactions = 100 transactions
const aggregateBondedTransaction = AggregateTransaction.createBonded(
deadline,
[
innerTransaction1,
// innerTransaction2,
innerTransaction3,
innerTransaction4,
innerTransaction5,
],
networkType,
[],
undefined,
undefined,
senderAccount.publicAccount
).setMaxFeeForAggregate(feeMultiplier, 4);
// (4 = cosignature's count = multisig + cosigner1 + cosigner2 + cosigner3)
// 3 = cosignature's count = cosigner1 + cosigner2 + cosigner3
// Sign transaction by sender(= the account to announce this transaction)
const signedAggregateBondedTransaction = senderAccount.sign(
aggregateBondedTransaction,
generationHash
);
// Get aggregate bonded transaction hash
const aggregateBondedTransactionHash = signedAggregateBondedTransaction.hash;
// Need to lock collateral above 10[XYM] to prevent spam aggregate bonded transactions
const hashLockTransaction = HashLockTransaction.create(
deadline,
new Mosaic(networkCurrencyMosaicId, UInt64.fromUint(10000000)),
UInt64.fromUint(240),
signedAggregateBondedTransaction,
networkType,
UInt64.fromUint(2000000)
).setMaxFee(feeMultiplier);
// Sign hash lock transaction by sender(= the account to announce this transaction)
const signedHashLockTransaction = senderAccount.sign(
hashLockTransaction,
generationHash
);
const hashLockTransactionHash = signedHashLockTransaction.hash;
// Start monitoring of transaction status with websocket
const listener = repositoryFactoryHttp.createListener();
await listener.open();
listener.newBlock().subscribe((block) => {
console.log("New blok");
console.dir({ block }, { depth: null });
});
listener.status(senderAccount.address).subscribe((status) => {
console.dir({ status }, { depth: null });
listener.close();
console.log("Transaction status error");
});
listener
.aggregateBondedAdded(senderAccount.address)
.subscribe((announcedAggregateBondedTransaction) => {
console.dir({ announcedAggregateBondedTransaction }, { depth: null });
console.log("Aggregate bonded transaction announced");
// Cosign and announce cosignature(1/4)
const cosignedTransactionByMultisig =
CosignatureTransaction.signTransactionPayload(
multisigAccount,
signedAggregateBondedTransaction.payload,
generationHash
);
const cosignatureByMultisig = new CosignatureSignedTransaction(
cosignedTransactionByMultisig.parentHash,
cosignedTransactionByMultisig.signature,
cosignedTransactionByMultisig.signerPublicKey
);
const transactionRepository =
repositoryFactoryHttp.createTransactionRepository();
transactionRepository
.announceAggregateBondedCosignature(cosignatureByMultisig)
.subscribe((transactionAnnounceResponse) => {
console.dir(transactionAnnounceResponse, { depth: null });
});
// Cosign and announce cosignature(2/4)
const cosignedTransactionByCosigner1 =
CosignatureTransaction.signTransactionPayload(
cosigner1Account,
signedAggregateBondedTransaction.payload,
generationHash
);
const cosignatureByCosigner1 = new CosignatureSignedTransaction(
cosignedTransactionByCosigner1.parentHash,
cosignedTransactionByCosigner1.signature,
cosignedTransactionByCosigner1.signerPublicKey
);
transactionRepository
.announceAggregateBondedCosignature(cosignatureByCosigner1)
.subscribe((transactionAnnounceResponse) => {
console.dir(transactionAnnounceResponse, { depth: null });
});
// Cosign and announce cosignature(3/4)
const cosignedTransactionByCosigner2 =
CosignatureTransaction.signTransactionPayload(
cosigner2Account,
signedAggregateBondedTransaction.payload,
generationHash
);
const cosignatureByCosigner2 = new CosignatureSignedTransaction(
cosignedTransactionByCosigner2.parentHash,
cosignedTransactionByCosigner2.signature,
cosignedTransactionByCosigner2.signerPublicKey
);
transactionRepository
.announceAggregateBondedCosignature(cosignatureByCosigner2)
.subscribe((transactionAnnounceResponse) => {
console.dir(transactionAnnounceResponse, { depth: null });
});
// Cosign and announce cosignature(4/4)
const cosignedTransactionByCosigner3 =
CosignatureTransaction.signTransactionPayload(
cosigner3Account,
signedAggregateBondedTransaction.payload,
generationHash
);
const cosignatureByCosigner3 = new CosignatureSignedTransaction(
cosignedTransactionByCosigner3.parentHash,
cosignedTransactionByCosigner3.signature,
cosignedTransactionByCosigner3.signerPublicKey
);
transactionRepository
.announceAggregateBondedCosignature(cosignatureByCosigner3)
.subscribe((transactionAnnounceResponse) => {
console.dir(transactionAnnounceResponse, { depth: null });
});
});
listener
.cosignatureAdded(senderAccount.address)
.subscribe((cosignedAggregateBondedTransaction) => {
console.dir({ cosignedAggregateBondedTransaction }, { depth: null });
console.log("Aggregate bonded transaction cosigned");
});
listener
.unconfirmedAdded(senderAccount.address)
.subscribe((unconfirmedTransaction) => {
console.dir({ unconfirmedTransaction }, { depth: null });
console.log("Transaction unconfirmed");
});
listener
.confirmed(senderAccount.address)
.subscribe((confirmedTransaction) => {
console.dir({ confirmedTransaction }, { depth: null });
if (
confirmedTransaction.transactionInfo?.hash === hashLockTransactionHash
) {
console.log("Hash lock transaction confirmed");
console.log(
`https://testnet.symbol.fyi/transactions/${confirmedTransaction.transactionInfo?.hash}`
);
// 2nd. Announce aggregate bonded transaction after hash lock transaction confirmed
const transactionRepository =
repositoryFactoryHttp.createTransactionRepository();
transactionRepository
.announceAggregateBonded(signedAggregateBondedTransaction)
.subscribe((transactionAnnounceResponse) => {
console.dir({ transactionAnnounceResponse }, { depth: null });
});
}
if (
confirmedTransaction.transactionInfo?.hash ===
aggregateBondedTransactionHash
) {
listener.close();
console.log("Transaction confirmed");
console.log(
`https://testnet.symbol.fyi/transactions/${confirmedTransaction.transactionInfo?.hash}`
);
}
});
// 1st. Announce hash lock transaction
const transactionRepository =
repositoryFactoryHttp.createTransactionRepository();
const transactionAnnounceResponse = await firstValueFrom(
transactionRepository.announce(signedHashLockTransaction)
);
console.dir({ transactionAnnounceResponse }, { depth: null });
})();