2019-05-08 23:33:19 +00:00
|
|
|
(ns status-im.ethereum.decode
|
2019-05-22 15:00:34 +00:00
|
|
|
(:require [status-im.ethereum.abi-spec :as abi-spec]))
|
2019-05-08 23:33:19 +00:00
|
|
|
|
|
|
|
(defn uint
|
|
|
|
[hex]
|
|
|
|
(first (abi-spec/decode hex ["uint"])))
|
2019-05-20 08:02:56 +00:00
|
|
|
|
|
|
|
(defn string
|
|
|
|
[hex]
|
|
|
|
(first (abi-spec/decode hex ["string"])))
|