status-react/src/status_im/ethereum/decode.cljs

11 lines
215 B
Clojure

(ns status-im.ethereum.decode
(:require [status-im.ethereum.abi-spec :as abi-spec]))
(defn uint
[hex]
(first (abi-spec/decode hex ["uint"])))
(defn string
[hex]
(first (abi-spec/decode hex ["string"])))