You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: TonLibDotNet/Extensions/TonClientCellsGramsExtensions.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ amount of Grams.
22
22
/// <summary>
23
23
/// Load 'coins' amount as 'long' value.
24
24
/// </summary>
25
-
/// <remarks>It's safe to load coins into 'long' while total TON supply is unchanged (5*10^18), details are in https://t.me/tondev/122940.</remarks>
25
+
/// <remarks>It's safe to load coins into 'long' while total TON supply is unchanged (5*10^18), details are in <see href="https://t.me/tondev/122940"/>.</remarks>
26
26
/// <exception cref="InvalidOperationException">When actual stored value is larger than 'long' (it's not amount of TON coins in that case).</exception>
27
27
/// <seealso href="https://t.me/tondev/122940">Explanation (in RUS) why 120bits are used to store 63bits-max values.</seealso>
28
28
publicstaticlongLoadCoins(thisSliceslice)
@@ -47,7 +47,7 @@ public static long LoadCoins(this Slice slice)
47
47
/// <summary>
48
48
/// Load 'coins' amount as 'ulong' value. Use this if you prefer 'ulong' over 'long' in your app.
49
49
/// </summary>
50
-
/// <remarks>It's safe to load coins into 'long' while total TON supply is unchanged (5*10^18), details are in https://t.me/tondev/122940.</remarks>
50
+
/// <remarks>It's safe to load coins into 'long' while total TON supply is unchanged (5*10^18), details are in <see href="https://t.me/tondev/122940"/>.</remarks>
51
51
/// <exception cref="InvalidOperationException">When actual stored value is larger than 'ulong' (it's not amount of TON coins in that case).</exception>
52
52
/// <seealso href="https://t.me/tondev/122940">Explanation (in RUS) why 120bits are used to store 63bits-max values.</seealso>
53
53
publicstaticulongLoadCoinsToULong(thisSliceslice)
@@ -65,7 +65,7 @@ public static ulong LoadCoinsToULong(this Slice slice)
65
65
/// <summary>
66
66
/// Load 'coins' amount as 'BigInteger' value.
67
67
/// </summary>
68
-
/// <remarks>TON supply (5*10^18) fits into 'long' value (details are in https://t.me/tondev/122940), so this function may be used to load other (jetton?) amounts.</remarks>
68
+
/// <remarks>TON supply (5*10^18) fits into 'long' value (details are in <see href="https://t.me/tondev/122940"/>), so this function may be used to load other (jetton?) amounts.</remarks>
@@ -86,7 +86,7 @@ public static BigInteger LoadCoinsToBigInt(this Slice slice)
86
86
/// <summary>
87
87
/// Store 'coins' amount given by 'long' value (negative values are not allowed).
88
88
/// </summary>
89
-
/// <remarks>It's safe to store coins as 'long' while total TON supply is unchanged (5*10^18), details are in https://t.me/tondev/122940.</remarks>
89
+
/// <remarks>It's safe to store coins as 'long' while total TON supply is unchanged (5*10^18), details are in <see href="https://t.me/tondev/122940"/>.</remarks>
90
90
/// <exception cref="ArgumentOutOfRangeException">When 'value' is negative.</exception>
91
91
/// <seealso href="https://t.me/tondev/122940">Explanation (in RUS) why 120bits are used to store 63bits-max values.</seealso>
@@ -109,7 +109,7 @@ public static CellBuilder StoreCoins(this CellBuilder builder, long value)
109
109
/// <summary>
110
110
/// Store 'coins' amount given by 'ulong' value. Use this if you prefer 'ulong' over 'long' in your app.
111
111
/// </summary>
112
-
/// <remarks>It's safe to store coins as 'long' while total TON supply is unchanged (5*10^18), details are in https://t.me/tondev/122940.</remarks>
112
+
/// <remarks>It's safe to store coins as 'long' while total TON supply is unchanged (5*10^18), details are in <see href="https://t.me/tondev/122940"/>.</remarks>
113
113
/// <seealso href="https://t.me/tondev/122940">Explanation (in RUS) why 120bits are used to store 63bits-max values.</seealso>
0 commit comments