From 0929f39aa27871594f1c0941f0a8b230a35f2a84 Mon Sep 17 00:00:00 2001 From: Kaique Nunes Date: Wed, 12 Jun 2024 09:05:50 -0300 Subject: [PATCH] fix(message): use "space create" instead "space register" --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index d4607d0..a02dedb 100644 --- a/index.js +++ b/index.js @@ -367,7 +367,7 @@ export async function createDelegation(audienceDID, opts) { const client = await getClient() if (client.currentSpace() == null) { - throw new Error('no current space, use `w3 space register` to create one.') + throw new Error('no current space, use `w3 space create` to create one.') } const audience = DID.parse(audienceDID)