Latest changes

This commit is contained in:
benjaminramey
2021-11-02 22:28:33 -05:00
parent 7d95201a76
commit 1f4cf2366d

View File

@@ -0,0 +1,14 @@
(ns coinbaseapi
(:require [clj-http.client :as client])
(:require [cheshire.core :as json]))
(def apiBase "https://api.coinbase.com/v2/")
(defn build-headers
"Builds the headers based on the message we're passing and the API key"
[body]
(set [
:CB-ACCESS-KEY ""
:CB-ACCESS-SIGN ""
:CB-ACCESS-TIMESTAMP
]))