-
Notifications
You must be signed in to change notification settings - Fork 2
/
transactions.go
470 lines (414 loc) · 14.1 KB
/
transactions.go
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
package tx
import (
"errors"
"fmt"
"math/big"
"strconv"
"github.com/availproject/avail-go-sdk/src/sdk"
"github.com/availproject/avail-go-sdk/src/sdk/types"
"github.com/vedhavyas/go-subkey/v2"
)
type WaitFor int
const (
BlockInclusion WaitFor = iota + 1
BlockFinalization
)
func (w WaitFor) String() string {
return [...]string{"BlockInclusion", "BlockFinalization"}[w-1]
}
// EnumIndex - Creating common behavior - give the type a EnumIndex function
func (w WaitFor) EnumIndex() int {
return int(w)
}
// SubmitData submits data to the chain
func SubmitData(api *sdk.SubstrateAPI, seed string, AppID int, data string, WaitForInclusion sdk.WaitFor) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
err := sdk.NewExtrinsicWatch(api, "DataAvailability.submit_data", keyringPair, BlockHashCh2, txHashCh2, AppID, WaitForInclusion, sdk.NewBytes([]byte(data)))
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func CreateApplicationKey(api *sdk.SubstrateAPI, seed string, data string, WaitForInclusion sdk.WaitFor) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
err := sdk.NewExtrinsicWatch(api, "DataAvailability.create_application_key", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, sdk.NewBytes([]byte("22222")))
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func SetApplicationKey(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, oldKey string, newKey string) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
call, err := sdk.NewCall(api, "DataAvailability.set_application_key", sdk.NewBytes([]byte(oldKey)), sdk.NewBytes([]byte(newKey)))
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
}
err = sdk.NewExtrinsicWatch(api, "Sudo.sudo", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, call)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
fmt.Println("Transaction submitted successfully")
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func SetSubmitDataFeeModifier(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, modifier sdk.DispatchFeeModifier) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
call, err := sdk.NewCall(api, "DataAvailability.set_submit_data_fee_modifier", modifier)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
}
err = sdk.NewExtrinsicWatch(api, "Sudo.sudo", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, call)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
fmt.Println("Transaction submitted successfully")
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func SubmitBlockLength(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, rows uint32, cols uint32) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
call, err := sdk.NewCall(api, "DataAvailability.submit_block_length_proposal", sdk.NewU32(rows), sdk.NewU32(cols))
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
}
err = sdk.NewExtrinsicWatch(api, "Sudo.sudo", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, call)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func Bond(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, amount int64, Payee sdk.Payee) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
bondAmount := sdk.ConvertToBondAmount(amount)
newBondAmount := new(big.Int)
newBondAmount.Set(bondAmount)
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
bondAmountUCompact := types.NewUCompact(newBondAmount)
go func() {
err = sdk.NewExtrinsicWatch(api, "Staking.bond", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, bondAmountUCompact, sdk.NewU8(Payee.EnumIndex()))
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func BondExtra(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, amount int64) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
bondAmount := sdk.ConvertToBondAmount(amount)
newBondAmount := new(big.Int)
newBondAmount.Set(bondAmount)
bondAmountUCompact := types.NewUCompact(newBondAmount)
go func() {
err = sdk.NewExtrinsicWatch(api, "Staking.bond_extra", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, bondAmountUCompact)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func Chill(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
err = sdk.NewExtrinsicWatch(api, "Staking.chill", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func ChillOther(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, stash string) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
fmt.Println(keyringPair)
_, pubkeyBytes, _ := subkey.SS58Decode(stash)
hexString := subkey.EncodeHex(pubkeyBytes)
fmt.Println(hexString)
dest, err := sdk.NewMultiAddressFromHexAccountID(hexString)
if err != nil {
return types.Hash{}, types.Hash{}, err
}
fmt.Println(dest)
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
err = sdk.NewExtrinsicWatch(api, "Staking.chill_other", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, dest.AsID)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func Nominate(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, stash []string) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
var dest []types.MultiAddress
for _, v := range stash {
_, pubkeyBytes, _ := subkey.SS58Decode(v)
hexString := subkey.EncodeHex(pubkeyBytes)
d, err := sdk.NewMultiAddressFromHexAccountID(hexString)
if err != nil {
return types.Hash{}, types.Hash{}, err
}
dest = append(dest, d)
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
err = sdk.NewExtrinsicWatch(api, "Staking.nominate", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, dest)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func Unbond(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, amount types.UCompact) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
err = sdk.NewExtrinsicWatch(api, "Staking.unbond", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, amount)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func Validate(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, commissionNum int) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
commissionStr, err := commissionNumberToPerbill(commissionNum)
if err != nil {
fmt.Errorf("failed to convert commission to Perbill: %v", err)
}
commission, err := strconv.ParseUint(commissionStr, 10, 64)
if err != nil {
fmt.Errorf("failed to parse commission string: %v", err)
}
// Define the ValidatorPrefs struct manually
type ValidatorPrefs struct {
Commission types.UCompact
Blocked bool
}
// Create the validator preferences struct
prefs := ValidatorPrefs{
Commission: types.NewUCompactFromUInt(commission),
Blocked: false,
}
go func() {
err = sdk.NewExtrinsicWatch(api, "Staking.validate", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, prefs)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func commissionNumberToPerbill(value int) (string, error) {
if value < 0 || value > 100 {
return "", errors.New("Commission is limited to the following range: 0 - 100. It cannot be less than 0 or more than 100.")
}
commission := strconv.Itoa(value) + "0000000"
// For some reason 0 commission is not defined as "0" but as "1".
if commission == "00000000" {
commission = "1"
}
return commission, nil
}
func TransferKeepAlive(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, dest string, amount types.UCompact) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
_, pubkeyBytes, _ := subkey.SS58Decode(dest)
hexString := subkey.EncodeHex(pubkeyBytes)
destAddr, err := sdk.NewMultiAddressFromHexAccountID(hexString)
if err != nil {
return types.Hash{}, types.Hash{}, err
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
err = sdk.NewExtrinsicWatch(api, "Balances.transfer_keep_alive", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, destAddr, amount)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
fmt.Println("Transaction submitted successfully")
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func TransferAllowDeath(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, dest string, amount types.UCompact) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
_, pubkeyBytes, _ := subkey.SS58Decode(dest)
hexString := subkey.EncodeHex(pubkeyBytes)
destAddr, err := sdk.NewMultiAddressFromHexAccountID(hexString)
if err != nil {
return types.Hash{}, types.Hash{}, err
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
err = sdk.NewExtrinsicWatch(api, "Balances.transfer_allow_death", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, destAddr, amount)
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
fmt.Println("Transaction submitted successfully")
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}
func TransferAll(api *sdk.SubstrateAPI, seed string, WaitForInclusion sdk.WaitFor, dest string) (types.Hash, types.Hash, error) {
keyringPair, err := sdk.KeyringFromSeed(seed)
if err != nil {
panic(fmt.Sprintf("cannot create KeyPair:%v", err))
}
_, pubkeyBytes, _ := subkey.SS58Decode(dest)
hexString := subkey.EncodeHex(pubkeyBytes)
destAddr, err := sdk.NewMultiAddressFromHexAccountID(hexString)
if err != nil {
return types.Hash{}, types.Hash{}, err
}
BlockHashCh2 := make(chan types.Hash)
txHashCh2 := make(chan types.Hash)
go func() {
err = sdk.NewExtrinsicWatch(api, "Balances.transfer_all", keyringPair, BlockHashCh2, txHashCh2, 0, WaitForInclusion, destAddr, sdk.NewU8(1)) //KeepAlive:yes, change to 0 for no
if err != nil {
fmt.Printf("cannot create extrinsic: %v", err)
close(BlockHashCh2)
close(txHashCh2)
return
}
fmt.Println("Transaction submitted successfully")
}()
blockHash := <-BlockHashCh2
txHash := <-txHashCh2
return blockHash, txHash, nil
}