-
Notifications
You must be signed in to change notification settings - Fork 1
/
905_bonded_multisig_sample.html
131 lines (112 loc) · 3.96 KB
/
905_bonded_multisig_sample.html
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="nem2-sdk-0.13.1.js"></script>
<script>$(function() {
const nem = require("/node_modules/nem2-sdk");
const rxjs = require("/node_modules/rxjs/operators");
const NODE = 'https://catapult-test.opening-line.jp:3001';
const GENERATION_HASH = "453052FDC4EB23BF0D7280C103F7797133A633B68A81986165B76FCE248AB235";
const transactionHttp = new nem.TransactionHttp(NODE);
const alice = nem.Account.generateNewAccount(nem.NetworkType.MIJIN_TEST);
const bob = nem.Account.generateNewAccount(nem.NetworkType.MIJIN_TEST);
console.log("alice");
console.log(alice.address);
console.log(alice.publicKey);
console.log("bob");
console.log(bob.publicKey);
console.log(bob);
const wsEndpoint = NODE.replace('https', 'wss');
const listener = new nem.Listener(wsEndpoint, WebSocket);
var hasBuilt = false;
listener.open().then(() => {
listener
.unconfirmedAdded(alice.address)
.subscribe(
function(_){
console.log("--unconfirmed transaction(alice)--");
console.log(_);
},
err => console.error(err));
listener
.confirmed(alice.address)
.subscribe(
function(_){
console.log("==confirmed transaction(alice)==");
if(!hasBuilt){
console.log("start sample program.");
buildMultisigAccount();
hasBuilt = true;
}
},
err => console.error(err));
//aliceの中にbobの署名が必要なtxを探す
listener
.aggregateBondedAdded(alice.address)
.pipe(
rxjs.filter((_) => {
return !_.signedByAccount(bob.publicAccount)
}),
rxjs.map(_ => bob.signCosignatureTransaction(nem.CosignatureTransaction.create(_))),
rxjs.mergeMap(_ => transactionHttp.announceAggregateBondedCosignature(_))
)
.subscribe(_ =>{
console.log(">>Bob cosign in Alice partial transaction<<");
}, err => console.error(err));
});
function buildMultisigAccount(){
//マルチシグ化
const multisigTx = nem.ModifyMultisigAccountTransaction.create(
nem.Deadline.create(),
1,1,
[
new nem.MultisigCosignatoryModification(
nem.MultisigCosignatoryModificationType.Add, bob,
)
],
nem.NetworkType.MIJIN_TEST
);
const aggregateTx = nem.AggregateTransaction.createBonded(
nem.Deadline.create(),
[
multisigTx.toAggregate(alice.publicAccount),
],
nem.NetworkType.MIJIN_TEST
);
const signedTx = alice.sign(aggregateTx, GENERATION_HASH);
console.log(signedTx);
const lockTx = nem.HashLockTransaction.create(
nem.Deadline.create(),
nem.NetworkCurrencyMosaic.createRelative(10),
nem.UInt64.fromUint(480),
signedTx,
nem.NetworkType.MIJIN_TEST);
const lockSignedTx = alice.sign(lockTx, GENERATION_HASH);
transactionHttp
.announce(lockSignedTx)
.subscribe(x => {
}, err => console.error(err));
//ロックが承認されたらトランザクションを投げる
listener
.confirmed(alice.address)
.pipe(
rxjs.filter((tx) => tx.transactionInfo !== undefined && tx.transactionInfo.hash === lockSignedTx.hash),
rxjs.mergeMap(ignored => transactionHttp.announceAggregateBonded(signedTx))
)
.subscribe(_ => {
$('#items2-ctrl ul').append('<li><a target="_blank" href="' + NODE + '/transaction/' + signedTx.hash + '/status">' + signedTx.hash + '</a></li>');
$('#items3-ctrl ul').append('<li><a target="_blank" href="' + NODE + '/transaction/' + signedTx.hash + '">' + signedTx.hash + '</a></li>');
},
err => console.error(err)
);
}
})</script>
</head>
<body>
<h1>sample</h1>
<h3>state確認</h3><div id="items2-ctrl"><ul></ul></div>
<h3>confirmed確認</h3><div id="items3-ctrl"><ul></ul></div>
</body>
</html>