Exemple #1
0
        /// <summary>
        /// Gets the required amount of TTL to create a Treatail Asset
        /// </summary>
        /// <returns>Cost of creating an asset</returns>
        public BigInteger GetAssetCreateCost()
        {
            var response = _api.TestInvokeScript(_contractScriptHash, "getassetcreatecost", new object[] { 0 });

            return((BigInteger)response.result);
        }