-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03_asset_reg_minting.ts
148 lines (137 loc) · 3.59 KB
/
03_asset_reg_minting.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
// the package for hex-bytes transform
import {
hexToBytes
} from 'hada'
import {
crypto
} from '@iroha2/crypto-target-node'
import {
KeyPair
} from '@iroha2/crypto-core'
import {
setCrypto
} from '@iroha2/client'
import {
Client
} from '@iroha2/client'
import {
NewAssetDefinition,
AssetDefinitionId,
AssetValueType,
DomainId,
EvaluatesToRegistrableBox,
Expression,
IdentifiableBox,
Instruction,
MapNameValue,
Metadata,
Mintable,
RegisterBox,
Value,
EvaluatesToIdBox,
EvaluatesToValue,
IdBox,
AssetId,
AccountId,
MintBox,
} from '@iroha2/data-model'
setCrypto(crypto)
function generateKeyPair(params: {
publicKeyMultihash: string
privateKey: {
digestFunction: string
payload: string
}
}): KeyPair {
const multihashBytes = Uint8Array.from(
hexToBytes(params.publicKeyMultihash),
)
const multihash = crypto.createMultihashFromBytes(multihashBytes)
const publicKey = crypto.createPublicKeyFromMultihash(multihash)
const privateKey = crypto.createPrivateKeyFromJsKey(params.privateKey)
const keyPair = crypto.createKeyPairFromKeys(publicKey, privateKey)
// don't forget to "free" created structures
for (const x of [publicKey, privateKey, multihash]) {
x.free()
}
return keyPair
}
const kp = generateKeyPair({
publicKeyMultihash: 'ed0120e555d194e8822da35ac541ce9eec8b45058f4d294d9426ef97ba92698766f7d3',
privateKey: {
digestFunction: 'ed25519',
payload: 'de757bcb79f4c63e8fa0795edc26f86dfdba189b846e903d0b732bb644607720e555d194e8822da35ac541ce9eec8b45058f4d294d9426ef97ba92698766f7d3',
},
})
const client = new Client({
torii: {
// Both URLs are optional in case you only need one of them,
// e.g. only the telemetry endpoints
apiURL: 'http://127.0.0.1:8080',
telemetryURL: 'http://127.0.0.1:8081',
},
accountId: AccountId({
// Account name
name: 'alice',
// The domain where this account is registered
domain_id: DomainId({
name: 'wonderland',
}),
}),
// A key pair, needed for transactions and queries
keyPair: kp,
})
const newTimeAsset = NewAssetDefinition({
value_type: AssetValueType('Quantity'),
id: AssetDefinitionId({
name: 'time',
domain_id: DomainId({ name: 'looking_glass' }),
}),
metadata: Metadata({ map: MapNameValue(new Map()) }),
mintable: Mintable('Not'), // If only we could mint more time.
})
const register = Instruction(
'Register',
RegisterBox({
object: EvaluatesToRegistrableBox({
expression: Expression(
'Raw',
Value(
'Identifiable',
IdentifiableBox('NewAssetDefinition', newTimeAsset),
),
),
}),
}),
)
const mint = Instruction(
'Mint',
MintBox({
object: EvaluatesToValue({
expression: Expression('Raw', Value('U32', 42)),
}),
destination_id: EvaluatesToIdBox({
expression: Expression(
'Raw',
Value(
'Id',
IdBox(
'AssetId',
AssetId({
account_id: AccountId({
name: 'alice',
domain_id: DomainId({
name: 'wonderland',
}),
}),
definition_id: AssetDefinitionId({
name: 'time',
domain_id: DomainId({ name: 'looking_glass' }),
}),
}),
),
),
),
}),
}),
)