-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathAssetDescriptor.cs
77 lines (69 loc) · 2.66 KB
/
AssetDescriptor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Copyright (C) 2015-2025 The Neo Project.
//
// AssetDescriptor.cs file belongs to the neo project and is free
// software distributed under the MIT software license, see the
// accompanying file LICENSE in the main directory of the
// repository or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.
using Neo.Extensions;
using Neo.Persistence;
using Neo.SmartContract;
using Neo.SmartContract.Native;
using Neo.VM;
using System;
namespace Neo.Wallets
{
/// <summary>
/// Represents the descriptor of an asset.
/// </summary>
public class AssetDescriptor
{
/// <summary>
/// The id of the asset.
/// </summary>
public UInt160 AssetId { get; }
/// <summary>
/// The name of the asset.
/// </summary>
public string AssetName { get; }
/// <summary>
/// The symbol of the asset.
/// </summary>
public string Symbol { get; }
/// <summary>
/// The number of decimal places of the token.
/// </summary>
public byte Decimals { get; }
/// <summary>
/// Initializes a new instance of the <see cref="AssetDescriptor"/> class.
/// </summary>
/// <param name="snapshot">The snapshot used to read data.</param>
/// <param name="settings">The <see cref="ProtocolSettings"/> used by the <see cref="ApplicationEngine"/>.</param>
/// <param name="asset_id">The id of the asset.</param>
public AssetDescriptor(DataCache snapshot, ProtocolSettings settings, UInt160 asset_id)
{
var contract = NativeContract.ContractManagement.GetContract(snapshot, asset_id);
if (contract is null) throw new ArgumentException(null, nameof(asset_id));
byte[] script;
using (ScriptBuilder sb = new())
{
sb.EmitDynamicCall(asset_id, "decimals", CallFlags.ReadOnly);
sb.EmitDynamicCall(asset_id, "symbol", CallFlags.ReadOnly);
script = sb.ToArray();
}
using ApplicationEngine engine = ApplicationEngine.Run(script, snapshot, settings: settings, gas: 0_30000000L);
if (engine.State != VMState.HALT) throw new ArgumentException(null, nameof(asset_id));
AssetId = asset_id;
AssetName = contract.Manifest.Name;
Symbol = engine.ResultStack.Pop().GetString();
Decimals = (byte)engine.ResultStack.Pop().GetInteger();
}
public override string ToString()
{
return AssetName;
}
}
}