From 7ca7d87f717167532d7b468423198b2641d3f7d2 Mon Sep 17 00:00:00 2001 From: sandeepdabade Date: Mon, 26 Apr 2021 17:03:08 -0700 Subject: [PATCH] Update README.md const client = connect(accountName, workspaceName, vaultId, credentials, options) 1) accountName is not used at all. So needs to be removed altogether. 2) workspaceName should be replaced with workspaceURL instead. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05f6b1d6..4842ccec 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ To get started create a skyflow client in one of the following ways ```javascript import {connect} from 'skyflow-node'; -const client = connect(accountName, workspaceName, vaultId, credentials, options) +const client = connect(workspaceURL, vaultId, credentials, options) // credentials is your service account json file which can be downloaded from skyflow studio //options are optional parameters ```