-
Notifications
You must be signed in to change notification settings - Fork 22
/
market.go
84 lines (69 loc) · 2.28 KB
/
market.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
// Copyright (c) 2022 Gobalsky Labs Limited
//
// Use of this software is governed by the Business Source License included
// in the LICENSE.VEGA file and at https://www.mariadb.com/bsl11.
//
// Change Date: 18 months from the later of the date of the first publicly
// available Distribution of this version of the repository, and 25 June 2022.
//
// On the date above, in accordance with the Business Source License, use
// of this software will be governed by version 3 or later of the GNU General
// Public License.
package nullchain
import (
"errors"
"strings"
"code.vegaprotocol.io/vega/core/examples/nullchain/config"
"code.vegaprotocol.io/vega/core/types"
"code.vegaprotocol.io/vega/protos/vega"
)
var ErrMarketCreationFailed = errors.New("market creation failed")
func CreateMarketAny(w *Wallet, conn *Connection, proposer *Party, voters ...*Party) (*vega.Market, error) {
now, _ := conn.VegaTime()
txn, reference := MarketProposalTxn(now, proposer.pubkey)
err := w.SubmitTransaction(conn, proposer, txn)
if err != nil {
return nil, err
}
// Step foward until proposal is validated
if err := MoveByDuration(4 * config.BlockDuration); err != nil {
return nil, err
}
// Vote for the proposal
proposal, err := conn.GetProposalByReference(reference)
if err != nil {
return nil, err
}
txn = VoteTxn(proposal.Id, types.VoteValueYes)
for _, voter := range voters {
w.SubmitTransaction(conn, voter, txn)
}
// Move forward until enacted
if err := MoveByDuration(20 * config.BlockDuration); err != nil {
return nil, err
}
// Get the market
markets, err := conn.GetMarkets()
if err != nil {
return nil, err
}
if len(markets) == 0 {
return nil, ErrMarketCreationFailed
}
// Return the last market as that *should* be the newest one
return markets[len(markets)-1], nil
}
func SettleMarket(w *Wallet, conn *Connection, oracle *Party) error {
terminationTxn := OracleTxn("trading.termination", "true")
err := w.SubmitTransaction(conn, oracle, terminationTxn)
if err != nil {
return err
}
settlementTxn := OracleTxn(strings.Join([]string{"prices", config.NormalAsset, "value"}, "."), "1000")
err = w.SubmitTransaction(conn, oracle, settlementTxn)
if err != nil {
return err
}
// Move time so that it is processed
return MoveByDuration(10 * config.BlockDuration)
}