-
Notifications
You must be signed in to change notification settings - Fork 6
/
key_hash.go
96 lines (84 loc) · 1.88 KB
/
key_hash.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
package ast
import (
"encoding/hex"
"strings"
"github.com/dipdup-net/go-lib/tools/base"
"github.com/dipdup-net/go-lib/tools/consts"
"github.com/dipdup-net/go-lib/tools/forge"
)
//
// KeyHash
//
// KeyHash -
type KeyHash struct {
Default
}
// NewKeyHash -
func NewKeyHash(depth int) *KeyHash {
return &KeyHash{
Default: NewDefault(consts.KEYHASH, 0, depth),
}
}
// ToMiguel -
func (k *KeyHash) ToMiguel() (*MiguelNode, error) {
name := k.GetTypeName()
value := k.Value.(string)
if k.ValueKind == valueKindBytes {
v, err := forge.UnforgeAddress(value)
if err != nil {
return nil, err
}
value = v
}
return &MiguelNode{
Prim: k.Prim,
Type: strings.ToLower(k.Prim),
Value: value,
Name: &name,
}, nil
}
// ToBaseNode -
func (k *KeyHash) ToBaseNode(optimized bool) (*base.Node, error) {
val := k.Value.(string)
if optimized {
value, err := forge.Address(val, true)
if err != nil {
return nil, err
}
s := hex.EncodeToString(value)
return toBaseNodeBytes(s), nil
}
return toBaseNodeString(val), nil
}
// ToJSONSchema -
func (k *KeyHash) ToJSONSchema() (*JSONSchema, error) {
return getStringJSONSchema(k.Default), nil
}
// Compare -
func (k *KeyHash) Compare(second Comparable) (int, error) {
secondItem, ok := second.(*KeyHash)
if !ok {
return 0, consts.ErrTypeIsNotComparable
}
return strings.Compare(k.Value.(string), secondItem.Value.(string)), nil
}
// Distinguish -
func (k *KeyHash) Distinguish(x Distinguishable) (*MiguelNode, error) {
second, ok := x.(*KeyHash)
if !ok {
return nil, nil
}
return k.Default.Distinguish(&second.Default)
}
// FromJSONSchema -
func (k *KeyHash) FromJSONSchema(data map[string]interface{}) error {
setOptimizedJSONSchema(&k.Default, data, forge.UnforgeAddress)
return nil
}
// FindByName -
func (k *KeyHash) FindByName(name string, isEntrypoint bool) Node {
if k.GetName() == name {
return k
}
return nil
}