Skip to content

Commit b28dd92

Browse files
TzKT API: add GetRegisterConstants
1 parent 850a6e5 commit b28dd92

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tzkt/api/operations.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,9 @@ func (tzkt *API) GetReveals(filters map[string]string) (operations []Operation,
6565
err = tzkt.json("/v1/operations/reveals", filters, &operations)
6666
return
6767
}
68+
69+
// GetRegisterConstants -
70+
func (tzkt *API) GetRegisterConstants(filters map[string]string) (operations []Operation, err error) {
71+
err = tzkt.json("/v1/operations/register_constants", filters, &operations)
72+
return
73+
}

0 commit comments

Comments
 (0)