Skip to content

Commit 7d68227

Browse files
committed
Recipe classes renamed
1 parent 1d10dbf commit 7d68227

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

TonLibDotNet/Recipes/RootDnsRecipes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/// Based on <see href="https://github.com/ton-blockchain/TEPs/blob/master/text/0081-dns-standard.md">TEP 81: TON DNS Standard</see>
55
/// and <see href="https://github.com/ton-blockchain/dns-contract">TON DNS Contracts</see>.
66
/// </remarks>
7-
public partial class RootDnsRecipes : Tep81Recipes
7+
public partial class RootDnsRecipes : Tep81DNS
88
{
99
/// <summary>
1010
/// .ton Root Collection - parent for all .TON DNS NFTs.

TonLibDotNet/Recipes/TelemintRecipes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace TonLibDotNet.Recipes
1111
/// Based on <see href="https://github.com/ton-blockchain/TEPs/blob/master/text/0081-dns-standard.md">TEP 81: TON DNS Standard</see>
1212
/// and <see href="https://github.com/TelegramMessenger/telemint">Telemint (Telegram usernames and numbers) Contracts</see>.
1313
/// </remarks>
14-
public abstract class TelemintRecipes : Tep81Recipes
14+
public abstract class TelemintRecipes : Tep81DNS
1515
{
1616
/// <summary>
1717
/// Collection address (parent for all item NFTs).
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace TonLibDotNet.Recipes
1212
/// Based on <see href="https://github.com/ton-blockchain/TEPs/blob/master/text/0074-jettons-standard.md">TEP 74: Fungible tokens (Jettons) standard</see>
1313
/// and <see href="https://github.com/ton-blockchain/token-contract/">Tokens Smart Contracts</see>.
1414
/// </remarks>
15-
public partial class Tep74Recipes
15+
public partial class Tep74Jettons
1616
{
1717
public decimal DefaultAmount { get; set; } = 0.1M;
1818

@@ -28,7 +28,7 @@ public partial class Tep74Recipes
2828
/// </summary>
2929
private const int OPBurn = 0x595f07bc;
3030

31-
public static readonly Tep74Recipes Instance = new();
31+
public static readonly Tep74Jettons Instance = new();
3232

3333
/// <summary>
3434
/// Executes 'get_wallet_address' method on Jetton Minter contract, returns jetton address for specified owner (user) wallet address.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace TonLibDotNet.Recipes
55
/// <remarks>
66
/// Based on <see href="https://github.com/ton-blockchain/TEPs/blob/master/text/0081-dns-standard.md">TEP 81: TON DNS Standard</see>.
77
/// </remarks>
8-
public class Tep81Recipes
8+
public class Tep81DNS
99
{
1010
/// <remarks>
1111
/// TL-B: <code>dns_smc_address#9fd3 smc_addr:MsgAddressInt flags:(## 8) { flags &lt;= 1 } cap_list:flags . 0?SmcCapList = DNSRecord</code>

TonLibDotNet/TonRecipes.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ public static class TonRecipes
3838
/// Based on <see href="https://github.com/ton-blockchain/TEPs/blob/master/text/0074-jettons-standard.md">TEP 74: Fungible tokens (Jettons) standard</see>
3939
/// and <see href="https://github.com/ton-blockchain/token-contract/">Tokens Smart Contracts</see>.
4040
/// </remarks>
41-
public static Tep74Recipes Jettons { get; } = Tep74Recipes.Instance;
41+
public static Tep74Jettons Jettons { get; } = Tep74Jettons.Instance;
4242
}
4343
}

0 commit comments

Comments
 (0)