-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeleg.go
355 lines (302 loc) · 9.17 KB
/
deleg.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
package main
import (
"fmt"
"math"
"os"
"strings"
"time"
"strconv"
"github.com/BurntSushi/toml"
m "github.com/ValidatorCenter/minter-go-sdk"
)
const tagVersion = ""
const PRC100 = 100 // 100%
var (
version string
conf Config
sdk []m.SDK
nodes []NodeData
accs []AccData
mina []MinAmntData
)
type Config struct {
Address string `toml:"address"`
Nodes [][]interface{} `toml:"nodes"`
Accounts [][]interface{} `toml:"accounts"`
CoinNet string `toml:"-"`
Timeout int `toml:"timeout"`
MinAmount [][]interface{} `toml:"min_amount"`
ChainNet string `toml:"chain"`
MaxGas int `toml:"max_gas"`
}
type NodeData struct {
PubKey string
Prc int
Coin string
Rule string
}
type AccData struct {
Rule string
Mntr m.SDK
}
type MinAmntData struct {
Rule string
Amnt int
}
func getMinString(bigStr string) string {
return fmt.Sprintf("%s...%s", bigStr[:6], bigStr[len(bigStr)-4:len(bigStr)])
}
// делегирование
func delegate() {
var err error
for iS, _ := range accs {
var valueBuy map[string]float32
valueBuy, _, err = accs[iS].Mntr.GetAddress(accs[iS].Mntr.AccAddress)
if err != nil {
fmt.Println("ERROR:", err.Error())
continue
}
minAmnt := 0
for iM, _ := range mina {
if accs[iS].Rule == mina[iM].Rule {
minAmnt = mina[iM].Amnt
}
}
valueBuy_f32 := valueBuy[conf.CoinNet]
fmt.Println("#################################")
fmt.Println("DELEGATE: ", valueBuy_f32)
// 1bip на прозапас
if valueBuy_f32 < float32(minAmnt+1) {
fmt.Printf("ERROR: Less than %d%s+1\n", minAmnt, conf.CoinNet)
continue // переходим к другой учетной записи
}
fullDelegCoin := float64(valueBuy_f32 - 1.0) // 1MNT на комиссию
// Цикл делегирования
for i, _ := range nodes {
if accs[iS].Rule == nodes[i].Rule {
if nodes[i].Coin == "" || nodes[i].Coin == conf.CoinNet {
// Страндартная монета BIP(MNT)
amnt_f64 := fullDelegCoin * float64(nodes[i].Prc) / 100 // в процентном соотношение
Gas, _ := accs[iS].Mntr.GetMinGas()
if Gas > int64(conf.MaxGas) {
// Если комиссия дофига, то ничего делать не будем
fmt.Println("Comission GAS >", conf.MaxGas)
continue
}
delegDt := m.TxDelegateData{
Coin: conf.CoinNet,
PubKey: nodes[i].PubKey,
Stake: float32(amnt_f64),
Payload: tagVersion,
GasCoin: conf.CoinNet,
GasPrice: Gas,
}
fmt.Println("TX: ", getMinString(accs[iS].Mntr.AccAddress), fmt.Sprintf("%d%%", nodes[i].Prc), "=>", getMinString(nodes[i].PubKey), "=", int64(amnt_f64), conf.CoinNet)
resHash, err := accs[iS].Mntr.TxDelegate(&delegDt)
if err != nil {
fmt.Println("ERROR:", err.Error())
} else {
fmt.Println("HASH TX:", resHash)
}
} else {
// Кастомная
amnt_f64 := fullDelegCoin * float64(nodes[i].Prc) / 100 // в процентном соотношение на какую сумму берём кастомных монет
amnt_i64 := math.Floor(amnt_f64) // в меньшую сторону
if amnt_i64 <= 0 {
fmt.Println("ERROR: Value to Sell =0")
continue // переходим к другой записи мастернод
}
Gas, _ := accs[iS].Mntr.GetMinGas()
if Gas > int64(conf.MaxGas) {
// Если комиссия дофига, то ничего делать не будем
fmt.Println("Comission GAS >", conf.MaxGas)
continue
}
sellDt := m.TxSellCoinData{
CoinToBuy: nodes[i].Coin,
CoinToSell: conf.CoinNet,
ValueToSell: float32(amnt_i64),
Payload: tagVersion,
GasCoin: conf.CoinNet,
GasPrice: Gas,
}
fmt.Println("TX: ", getMinString(accs[iS].Mntr.AccAddress), fmt.Sprintf("%d%s", int64(amnt_f64), conf.CoinNet), "=>", nodes[i].Coin)
resHash, err := accs[iS].Mntr.TxSellCoin(&sellDt)
if err != nil {
fmt.Println("ERROR:", err.Error())
continue // переходим к другой записи мастернод
} else {
fmt.Println("HASH TX:", resHash)
}
if nodes[i].PubKey == "" {
// просто закупка монеты кастомной
continue // переходим к другой записи мастернод
}
// SLEEP!
time.Sleep(time.Second * 10) // пауза 10сек, Nonce чтобы в блокчейна +1
var valDeleg2 map[string]float32
valDeleg2, _, err = accs[iS].Mntr.GetAddress(accs[iS].Mntr.AccAddress)
if err != nil {
fmt.Println("ERROR:", err.Error())
continue
}
valDeleg2_f32 := valDeleg2[nodes[i].Coin]
valDeleg2_i64 := math.Floor(float64(valDeleg2_f32)) // в меньшую сторону
if valDeleg2_i64 <= 0 {
fmt.Println("ERROR: Delegate =0")
continue // переходим к другой записи мастернод
}
Gas, _ = accs[iS].Mntr.GetMinGas()
if Gas > int64(conf.MaxGas) {
// Если комиссия дофига, то ничего делать не будем
fmt.Println("Comission GAS >", conf.MaxGas)
continue
}
delegDt := m.TxDelegateData{
Coin: nodes[i].Coin,
PubKey: nodes[i].PubKey,
Stake: float32(valDeleg2_i64),
Payload: tagVersion,
GasCoin: conf.CoinNet,
GasPrice: Gas,
}
fmt.Println("TX: ", getMinString(accs[iS].Mntr.AccAddress), fmt.Sprintf("%d%%", nodes[i].Prc), "=>", getMinString(nodes[i].PubKey), "=", valDeleg2_i64, nodes[i].Coin)
resHash2, err := accs[iS].Mntr.TxDelegate(&delegDt)
if err != nil {
fmt.Println("ERROR:", err.Error())
} else {
fmt.Println("HASH TX:", resHash2)
}
}
// SLEEP!
time.Sleep(time.Second * 10) // пауза 10сек, Nonce чтобы в блокчейна +1
}
}
}
}
func main() {
ConfFileName := "adlg.toml"
// проверяем есть ли входной параметр/аргумент
if len(os.Args) == 2 {
ConfFileName = os.Args[1]
}
fmt.Printf("TOML=%s\n", ConfFileName)
if _, err := toml.DecodeFile(ConfFileName, &conf); err != nil {
fmt.Println("ERROR: loading toml file:", err.Error())
return
} else {
fmt.Println("...data from toml file = loaded!")
}
MainChain := false
conf.CoinNet = "MNT"
if conf.ChainNet == "main" {
MainChain = true
conf.CoinNet = "BIP"
}
for _, d := range conf.Accounts {
var err error
acc1 := AccData{}
priv := ""
pblck := ""
ok := true
if priv, ok = d[0].(string); !ok {
fmt.Println("ERROR: loading toml file:", d[0], "not private wallet key")
return
}
if acc1.Rule, ok = d[1].(string); !ok {
fmt.Println("ERROR: loading toml file:", d[1], "not a number")
return
}
pblck, err = m.GetAddressPrivateKey(priv)
if err != nil {
fmt.Println("ERROR: convert PrivKey: ", err.Error())
return
}
acc1.Mntr = m.SDK{
MnAddress: conf.Address,
AccAddress: pblck,
AccPrivateKey: priv,
ChainMainnet: MainChain,
}
accs = append(accs, acc1)
}
for _, d := range conf.MinAmount {
var err error
min1 := MinAmntData{}
str1 := ""
ok := true
if str1, ok = d[0].(string); !ok {
fmt.Println("ERROR: loading toml file:", d[0], "not a number")
return
}
min1.Amnt, err = strconv.Atoi(str1)
if err != nil {
fmt.Println("ERROR: loading toml file:", str1, "not a number")
return
}
if min1.Rule, ok = d[1].(string); !ok {
fmt.Println("ERROR: loading toml file:", d[1], "not a rule")
return
}
mina = append(mina, min1)
}
for _, d := range conf.Nodes {
rul := ""
pubN := ""
prcInt := ""
coinX := ""
ok := true
if len(d) == 4 {
if coinX, ok = d[3].(string); !ok {
fmt.Println("ERROR: loading toml file:", d[3], "not a coin")
return
}
coinX = strings.ToUpper(coinX)
}
if rul, ok = d[0].(string); !ok {
fmt.Println("ERROR: loading toml file:", d[0], "not a rule")
return
}
if pubN, ok = d[1].(string); !ok {
if coinX == "" {
// нет пабликея и это не кастомная монета, значит - ошибка
fmt.Println("ERROR: loading toml file:", d[1], "not a masternode public key")
return
}
}
if prcInt, ok = d[2].(string); !ok {
fmt.Println("ERROR: loading toml file:", d[2], "not a number")
return
}
int1, err := strconv.Atoi(prcInt)
if err != nil {
fmt.Println("ERROR: loading toml file:", prcInt, "not a number")
return
}
n1 := NodeData{
Rule: rul,
PubKey: pubN,
Prc: int1,
Coin: coinX,
}
nodes = append(nodes, n1)
}
// Проверка на 100%
for iA, _ := range accs {
countPrc := 0
for iN, _ := range nodes {
if accs[iA].Rule == nodes[iN].Rule {
countPrc += nodes[iN].Prc
}
}
if countPrc > PRC100 {
fmt.Println("ERROR: amount of PRC in rule:", accs[iA].Rule, " >100%")
return
}
}
for { // бесконечный цикл
delegate()
fmt.Printf("Pause %dmin .... at this moment it is better to interrupt\n", conf.Timeout)
time.Sleep(time.Minute * time.Duration(conf.Timeout)) // пауза ~TimeOut~ мин
}
}