diff --git a/docs/coinbase-pro-clj.core.html b/docs/coinbase-pro-clj.core.html
index 7df1458..e56a398 100644
--- a/docs/coinbase-pro-clj.core.html
+++ b/docs/coinbase-pro-clj.core.html
@@ -4,7 +4,7 @@
{:url
:key ; optional
:secret ; optional
- :passphrase ; optional}
+ :passphrase} ; optional
key
, secret
, and passphrase
are only required if the request is authenticated. These values can be created in the API settings of your Coinbase Pro account. Remember not to store these values in an online repository as this will give others access to your account. You could use something like environ to store these values locally outside of your code.
@@ -25,7 +25,7 @@
:on-connect ; optional
:on-receive ; optional
:on-close ; optional
- :on-error ; optional}
+ :on-error} ; optional
key
, secret
, and passphrase
are only required if you want an authenticated feed. See the Coinbase Pro API docs for details on authenticated feeds.
channels
is a vector of channel names (strings) . If no channels are passed, the “heartbeat” channel is subscribed to.
@@ -94,7 +94,7 @@
:channels ; optional
:key ; optional
:secret ; optional
- :passphrase ; optional}
+ :passphrase} ; optional
key
, secret
, and passphrase
are only required if you want an authenticated feed. See the Coinbase Pro API docs for details on authenticated feeds.
channels
is a vector of channel names (strings). If no channels are passed, the “heartbeat” channel is subscribed to.
diff --git a/docs/index.html b/docs/index.html
index 32925df..1ab79cd 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -4,7 +4,7 @@
{:url
:key ; optional
:secret ; optional
- :passphrase ; optional}
+ :passphrase} ; optional
key
, secret
, and passphrase
are only required if the request is authenticated. These values can be created in the API settings of your Coinbase Pro account. Remember not to store these values in an online repository as this will give others access to your account. You could use something like environ to store these values locally outside of your code.
diff --git a/src/coinbase_pro_clj/core.clj b/src/coinbase_pro_clj/core.clj
index 2dd8db3..ea8f017 100644
--- a/src/coinbase_pro_clj/core.clj
+++ b/src/coinbase_pro_clj/core.clj
@@ -4,7 +4,7 @@
{:url
:key ; optional
:secret ; optional
- :passphrase ; optional}
+ :passphrase} ; optional
```
- `key`, `secret`, and `passphrase` are only required if the request is authenticated. These values can be created in the [API settings](https://pro.coinbase.com/profile/api) of your Coinbase Pro account.
**Remember not to store these values in an online repository as this will give others access to your account. You could use something like [environ](https://github.com/weavejester/environ)
@@ -398,7 +398,7 @@ Opts must contain either `:order_id` or `:product_id`.
:channels ; optional
:key ; optional
:secret ; optional
- :passphrase ; optional}
+ :passphrase} ; optional
```
- `key`, `secret`, and `passphrase` are only required if you want an authenticated feed. See the Coinbase Pro API docs for details on authenticated feeds.
- `channels` is a vector of channel names (strings). If no channels are passed, the \"heartbeat\" channel is subscribed to.
@@ -457,7 +457,7 @@ Opts must contain either `:order_id` or `:product_id`.
:on-connect ; optional
:on-receive ; optional
:on-close ; optional
- :on-error ; optional}
+ :on-error} ; optional
```
- `key`, `secret`, and `passphrase` are only required if you want an authenticated feed. See the Coinbase Pro API docs for details on authenticated feeds.
- `channels` is a vector of channel names (strings) . If no channels are passed, the \"heartbeat\" channel is subscribed to.