From 943f1871df165d79547cc46a4d72b17402dbb4a3 Mon Sep 17 00:00:00 2001 From: Sebastian Gerske <13647606+H34D@users.noreply.github.com> Date: Mon, 25 Jul 2022 14:30:23 +0200 Subject: [PATCH] added name attribute to the mint operation --- src/common/rest/contracts-mint/index.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/common/rest/contracts-mint/index.ts b/src/common/rest/contracts-mint/index.ts index 3f64b7f4..c0180ae0 100644 --- a/src/common/rest/contracts-mint/index.ts +++ b/src/common/rest/contracts-mint/index.ts @@ -24,6 +24,14 @@ const parameters: Parameter[] = [ }, { key: 2, + name: 'name', + description: 'The name of the Soul Bound Identity', + required: 'yes', + default: 'MyName', + dataType: 'string', + }, + { + key: 3, name: 'address', description: 'The receiver address of the Soul Bound Token', required: 'yes', @@ -31,7 +39,7 @@ const parameters: Parameter[] = [ dataType: 'string', }, { - key: 3, + key: 4, name: 'signature', description: 'The signature of the Users wallet', required: 'yes',