From 5657a9c97467860f5502ae64066fcfd6308544e6 Mon Sep 17 00:00:00 2001 From: Daniel Rocha <68558152+danroc@users.noreply.github.com> Date: Fri, 13 Dec 2024 10:50:48 +0100 Subject: [PATCH] Rename `ticker` to `symbol` It should be closer to the terminology used by the Token API. --- SIPS/sip-29.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SIPS/sip-29.md b/SIPS/sip-29.md index 47205e6..b5de432 100644 --- a/SIPS/sip-29.md +++ b/SIPS/sip-29.md @@ -190,8 +190,8 @@ type FungibleAssetUnit = { // Human-friendly name of the asset unit. name: string; - // Ticker of the asset unit. - ticker: string; + // Ticker symbol of the asset unit. + symbol: string; // Number of decimals of the asset unit. decimals: number; @@ -202,8 +202,8 @@ type FungibleAssetMetadata = { // Human-friendly name of the asset. name: string; - // Ticker of the asset. - ticker: string; + // Ticker symbol of the asset's main unit. + symbol: string; // Whether the asset is native to the chain. native: boolean;