From 687d9b55c0d891922b49cc44466a2e5ba1830a0c Mon Sep 17 00:00:00 2001 From: Zane Starr Date: Tue, 28 Sep 2021 19:18:39 -0700 Subject: [PATCH] chore: fix typo and lint --- specs/Standards/MultiToken/Core.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/specs/Standards/MultiToken/Core.md b/specs/Standards/MultiToken/Core.md index 21f7b9510..90da347a1 100644 --- a/specs/Standards/MultiToken/Core.md +++ b/specs/Standards/MultiToken/Core.md @@ -4,7 +4,7 @@ Version `1.0.0` ## Summary -A standard interface for a multi token standard that supports fungible, semi-fungible, and tokens of any type, allowing for ownership, transfer, and batch transfer of tokens regardless of specific type. +A standard interface for a multi token standard that supports fungible, semi-fungible,non-fungible, and tokens of any type, allowing for ownership, transfer, and batch transfer of tokens regardless of specific type. ## Motivation @@ -231,6 +231,7 @@ function mt_batch_transfer_call( // Returns the tokens with the given `token_ids` or `null` if no such token. function mt_tokens(token_ids: string[]) (Token | null)[] + // Returns the balance of an account for the given `token_id`. // The balance though wrapped in quotes and treated like a string, // the number will be stored as an unsigned integer with 128 bits.