Skip to content

Commit

Permalink
added name attribute to the mint operation
Browse files Browse the repository at this point in the history
  • Loading branch information
H34D committed Jul 25, 2022
1 parent a2ead93 commit 943f187
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/common/rest/contracts-mint/index.ts
Expand Up @@ -24,14 +24,22 @@ 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',
default: '0x8ba2D360323e3cA85b94c6F7720B70aAc8D37a7a',
dataType: 'string',
},
{
key: 3,
key: 4,
name: 'signature',
description: 'The signature of the Users wallet',
required: 'yes',
Expand Down

0 comments on commit 943f187

Please sign in to comment.