-
Notifications
You must be signed in to change notification settings - Fork 13
/
safe_deposit.go
89 lines (77 loc) · 2.63 KB
/
safe_deposit.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
package mixin
import (
"context"
"fmt"
"time"
"github.com/shopspring/decimal"
)
type (
SafeDepositEntry struct {
EntryID string `json:"entry_id,omitempty"`
Members []string `json:"members,omitempty"`
Threshold int `json:"threshold,omitempty"`
ChainID string `json:"chain_id,omitempty"`
Destination string `json:"destination,omitempty"`
Tag string `json:"tag,omitempty"`
Signature string `json:"signature,omitempty"`
}
SafeDeposit struct {
DepositID string `json:"deposit_id,omitempty"`
Destination string `json:"destination,omitempty"`
Tag string `json:"tag,omitempty"`
ChainID string `json:"chain_id,omitempty"`
AssetID string `json:"asset_id,omitempty"`
AssetKey string `json:"chain_key,omitempty"`
Amount decimal.Decimal `json:"amount,omitempty"`
TransactionHash string `json:"transaction_hash,omitempty"`
OutputIndex uint64 `json:"output_index,omitempty"`
BlockHash string `json:"block_hash,omitempty"`
Confirmations uint64 `json:"confirmations,omitempty"`
Threshold uint64 `json:"threshold,omitempty"`
CreatedAt time.Time `json:"created_at,omitempty"`
UpdatedAt time.Time `json:"updated_at,omitempty"`
}
)
func (c *Client) SafeCreateDepositEntries(ctx context.Context, receivers []string, threshold int, chain string) ([]*SafeDepositEntry, error) {
if len(receivers) == 0 {
receivers = []string{c.ClientID}
}
if threshold < 1 {
threshold = 1
} else if threshold > len(receivers) {
return nil, fmt.Errorf("invalid threshold %d, expect [1 %d)", threshold, len(receivers))
}
paras := map[string]interface{}{
"receivers": receivers,
"threshold": threshold,
"chain_id": chain,
}
var entries []*SafeDepositEntry
if err := c.Post(ctx, "/safe/deposit/entries", paras, &entries); err != nil {
return nil, err
}
return entries, nil
}
func (c *Client) SafeListDeposits(ctx context.Context, entry *SafeDepositEntry, asset string, offset time.Time, limit int) ([]*SafeDeposit, error) {
paras := map[string]string{
"chain_id": entry.ChainID,
"limit": fmt.Sprint(limit),
}
if !offset.IsZero() {
paras["offset"] = offset.Format(time.RFC3339Nano)
}
if entry.Destination != "" {
paras["destination"] = entry.Destination
if entry.Tag != "" {
paras["tag"] = entry.Tag
}
}
if asset != "" {
paras["asset"] = asset
}
var deposits []*SafeDeposit
if err := c.Get(ctx, "/safe/deposits", paras, &deposits); err != nil {
return nil, err
}
return deposits, nil
}