示例#1
0
        /// <summary>
        /// Transactions can be identified by root hash of the transaction merkle tree (this) or by its position in the block transactions merkle tree.
        /// Every transaction hash is unique for the whole chain. Collision could in theory happen, chances are 67148E-63%.
        /// See also <see cref="Eth1.Api.GetTransactionByBlockNumberAndIndex" />.
        /// </summary>
        /// <param name="blockHash">Desired block hash.</param>
        /// <param name="index">The index of the <see cref="Transaction" /> in a <see cref="Block" /></param>
        /// <returns>The <see cref="Transaction" /> (if it exists).</returns>
        public async Task <Transaction> GetTransactionByBlockHashAndIndex(String blockHash, int index)
        {
            string jsonResponse = await _in3.SendRpc(EthGetTransactionByBlockHashAndIndex,
                                                     new object[] { blockHash, BlockParameter.AsString(index) });

            return(RpcHandler.From <Transaction>(jsonResponse));
        }
示例#2
0
文件: Api.cs 项目: iosifgogolos/in3
        /// <summary>
        /// Decryot an encrypted private key.
        /// </summary>
        /// <param name="pk">Private key.</param>
        /// <param name="passphrase">Passphrase whose <paramref name="pk" />.</param>
        /// <returns>Decrypted key.</returns>
        public async Task <string> DecryptKey(string pk, string passphrase)
        {
            Dictionary <string, object> res = JsonSerializer.Deserialize <Dictionary <string, object> >(pk);
            string jsonResponse             = await in3.SendRpc(CryptoDecryptKey, new object[] { res, passphrase });

            return(RpcHandler.From <string>(jsonResponse));
        }
示例#3
0
        /// <summary>
        /// Transactions can be identified by root hash of the transaction merkle tree (this) or by its position in the block transactions merkle tree.
        /// Every transaction hash is unique for the whole chain. Collision could in theory happen, chances are 67148E-63%.
        /// </summary>
        /// <param name="blockNumber">Block number or <see cref="BlockParameter.Latest" /> or <see cref="BlockParameter.Earliest" />.</param>
        /// <param name="index">The index of the <see cref="Transaction" /> in a <see cref="Block" /></param>
        /// <returns>The <see cref="Transaction" /> (if it exists).</returns>
        public async Task <Transaction> GetTransactionByBlockNumberAndIndex(BigInteger blockNumber, int index)
        {
            string jsonResponse = await _in3.SendRpc(EthGetTransactionByBlockNumberAndIndex,
                                                     new object[] { BlockParameter.AsString(blockNumber), BlockParameter.AsString(index) });

            return(RpcHandler.From <Transaction>(jsonResponse));
        }
示例#4
0
        /// <summary>
        /// ABI decoder. Used to parse rpc responses from the EVM.
        /// Based on the Solidity specification <see href="https://solidity.readthedocs.io/en/v0.5.3/abi-spec.html" />.
        /// </summary>
        /// <param name="signature">Function signature i.e. <i>>(address,string,uint256)</i> or <i>>getBalance(uint256):uint256</i>. In case of the latter, the function signature will be ignored and only the return types will be parsed.</param>
        /// <param name="encodedData">Abi encoded values. Usually the string returned from a rpc to the EVM.</param>
        /// <returns>The decoded argugments for the function call given the encded data.</returns>
        public async Task <object[]> AbiDecode(string signature, string encodedData)
        {
            string jsonResponse = await _in3.SendRpc(In3AbiDecode, new object[] {
                signature, encodedData
            });

            // This is ugly, unsemantic and error prone and SHOULD be changed.
            JsonElement result = (JsonElement)RpcHandler.From <object>(jsonResponse);

            if (result.ValueKind == JsonValueKind.String)
            {
                string singleResult = result.GetString();
                return(new[] { singleResult });
            }

            IEnumerator <JsonElement> arr = result.EnumerateArray();

            object[] arrayResult = new object[result.GetArrayLength()];
            int      i           = 0;

            while (arr.MoveNext())
            {
                arrayResult[i] = arr.Current.ValueKind switch
                {
                    JsonValueKind.String => arr.Current.GetString(),
                    JsonValueKind.Number => arr.Current.GetUInt32(),
                    JsonValueKind.False or JsonValueKind.True => arr.Current.GetBoolean(),
                    _ => arrayResult[i]
                };
                i++;
            }

            return(arrayResult);
        }
示例#5
0
        /// <summary>
        /// Retrieve the of uncle of a block for the given <paramref name="blockNumber" /> and a position. Uncle blocks are valid blocks and are mined in a genuine manner, but get rejected from the main blockchain.
        /// </summary>
        /// <param name="blockNumber">Block number or <see cref="BlockParameter.Latest" /> or <see cref="BlockParameter.Earliest" />.</param>
        /// <param name="position">Position of the block.</param>
        /// <returns>The uncle block.</returns>
        public async Task <Block> GetUncleByBlockNumberAndIndex(BigInteger blockNumber, int position)
        {
            string jsonResponse = await _in3.SendRpc(EthGetUncleByBlockNumberAndIndex,
                                                     new object[] { BlockParameter.AsString(blockNumber), DataTypeConverter.BigIntToPrefixedHex(position) });

            return(RpcHandler.From <TransactionBlock>(jsonResponse));
        }
示例#6
0
        public void From_ErrorString()
        {
            string nonCompliantJsonRpc =
                "{\"id\":0,\"jsonrpc\":\"2.0\",\"error\":{\"code\":-1,\"message\":\"The Stack is empty\"}}";

            Assert.Throws <RpcException>(() => RpcHandler.From <string>(nonCompliantJsonRpc));
        }
示例#7
0
        public void From_ErrorObject()
        {
            string nonCompliantJsonRpc =
                "{\"id\":1,\"error\":\"getaddrinfo ENOTFOUND ipfs.iotlayer-deploy\",\"jsonrpc\":\"2.0\"}";

            Assert.Throws <RpcException>(() => RpcHandler.From <string>(nonCompliantJsonRpc));
        }
示例#8
0
        /// <summary>
        /// Stored value in designed position at a given <paramref name="address" />. Storage can be used to store a smart contract state, constructor or just any data.
        /// Each contract consists of a EVM bytecode handling the execution and a storage to save the state of the contract.
        /// </summary>
        /// <param name="address">Ethereum account address.</param>
        /// <param name="position">Position index, 0x0 up to 100.</param>
        /// <param name="blockNumber">Block number or <see cref="BlockParameter.Latest" /> or <see cref="BlockParameter.Earliest" />.</param>
        /// <returns>Stored value in designed position.</returns>
        public async Task <string> GetStorageAt(string address, BigInteger position, BigInteger blockNumber)
        {
            string jsonResponse = await _in3.SendRpc(EthGetStorageAt, new object[] {
                address, DataTypeConverter.BigIntToPrefixedHex(position), BlockParameter.AsString(blockNumber)
            });

            return(RpcHandler.From <string>(jsonResponse));
        }
示例#9
0
        /// <summary>
        /// ABI encoder. Used to serialize a rpc to the EVM.
        /// Based on the Solidity specification <see href="https://solidity.readthedocs.io/en/v0.5.3/abi-spec.html" />.
        /// Note: Parameters refers to the list of variables in a method declaration.
        /// Arguments are the actual values that are passed in when the method is invoked.
        /// When you invoke a method, the arguments used must match the declaration's parameters in type and order.
        /// </summary>
        /// <param name="signature">Function signature, with parameters. i.e. <i>>getBalance(uint256):uint256</i>, can contain the return types but will be ignored.</param>
        /// <param name="args">Function parameters, in the same order as in passed on to <b>signature</b>.</param>
        /// <returns>The encoded data.</returns>
        public async Task <string> AbiEncode(string signature, object[] args)
        {
            string jsonResponse = await _in3.SendRpc(In3AbiEncode, new object[] {
                signature, args
            });

            return(RpcHandler.From <string>(jsonResponse));
        }
示例#10
0
        /// <summary>
        /// Signs and sends the assigned transaction. The <see cref="Signer" /> used to sign the transaction is the one set by <see cref="IN3.Signer" />.
        /// Transactions change the state of an account, just the balance, or additionally, the storage and the code.
        /// Every transaction has a cost, gas, paid in Wei. The transaction gas is calculated over estimated gas times the gas cost, plus an additional miner fee, if the sender wants to be sure that the transaction will be mined in the latest block.
        /// See <see cref="Eth1.Api.SendTransactionAndWait"/> to wait for the <see cref="TransactionReceipt"/> in the same call.
        /// </summary>
        /// <param name="tx">All information needed to perform a transaction.</param>
        /// <returns>Transaction hash, used to get the receipt and check if the transaction was mined.</returns>
        /// <example>
        ///   <code>
        ///    SimpleWallet wallet = (SimpleWallet) client.Signer;
        ///    TransactionRequest tx = new TransactionRequest();
        ///    tx.From = wallet.AddRawKey(pk);;
        ///    tx.To = "0x3940256B93c4BE0B1d5931A6A036608c25706B0c";
        ///    tx.Gas = 21000;
        ///    tx.Value = 100000000;
        ///    client.Eth1.SendTransaction(tx);
        ///   </code>
        /// </example>
        public async Task <string> SendTransaction(TransactionRequest tx)
        {
            ValidateTransaction(tx);
            tx = _in3.Signer.PrepareTransaction(tx);

            string jsonResponse = await _in3.SendRpc(EthSendTransaction, new object[] { await MapTransactionToRpc(tx) });

            return(RpcHandler.From <string>(jsonResponse));
        }
示例#11
0
        public void From_String()
        {
            string nonCompliantJsonRpc =
                "{\"jsonrpc\":\"2.0\",\"result\":\"0x7d2b7500\",\"id\":1}";

            string result = RpcHandler.From <string>(nonCompliantJsonRpc);

            Assert.That(result, Is.EqualTo("0x7d2b7500"));
        }
示例#12
0
        /// <summary>
        /// Calls a smart-contract method. Will be executed locally by Incubed's EVM or signed and sent over to save the state changes.
        /// Check https://ethereum.stackexchange.com/questions/3514/how-to-call-a-contract-method-using-the-eth-call-json-rpc-api for more.
        /// </summary>
        /// <param name="request">The transaction request to be processed.</param>
        /// <param name="blockNumber">Block number or <see cref="BlockParameter.Latest" /> or <see cref="BlockParameter.Earliest" />.</param>
        /// <returns>Ddecoded result. If only one return value is expected the Object will be returned, if not an array of objects will be the result.</returns>
        public async Task <object> Call(TransactionRequest request, BigInteger blockNumber)
        {
            string jsonResponse = await _in3.SendRpc(EthCall, new object[] { await MapTransactionToRpc(request), BlockParameter.AsString(blockNumber) });

            if (request.IsFunctionInvocation())
            {
                return(await AbiDecode(request.Function, RpcHandler.From <string>(jsonResponse)));
            }

            return(RpcHandler.From <object>(jsonResponse));
        }
示例#13
0
文件: Api.cs 项目: iosifgogolos/in3
        /// <summary>
        /// Returns the content associated with specified multihash on success OR <lang cref="Chain.Ipfs" /> on error.
        /// </summary>
        /// <param name="multihash">The multihash.</param>
        /// <returns>The content that was stored by <see cref="Ipfs.Api.Put(byte[])" /> or <see cref="Ipfs.Api.Put(string)" />.</returns>
        public async Task <byte[]> Get(string multihash)
        {
            if (multihash == null)
            {
                throw new ArgumentException();
            }

            string result = await in3.SendRpc(IpfsGet, new object[] { multihash, IpfsEncoding.Base64.Value });

            return(RpcHandler.From <byte[]>(result));
        }
示例#14
0
文件: Api.cs 项目: iosifgogolos/in3
        /// <summary>
        /// Stores content on ipfs. The content is encoded as base64 before storing.
        /// </summary>
        /// <param name="content">The content that will be stored via ipfs.</param>
        /// <returns>The multihash.</returns>
        public async Task <string> Put(byte[] content)
        {
            if (content == null)
            {
                throw new ArgumentException();
            }

            string encodedContent = Convert.ToBase64String(content);
            string result         = await in3.SendRpc(IpfsPut, new object[] { encodedContent });

            return(RpcHandler.From <string>(result));
        }
示例#15
0
        /// <summary>
        /// Blocks can be identified by sequential number in which it was mined, or root hash of the block merkle tree <see cref="Eth1.Api.GetBlockByHash" />.
        /// </summary>
        /// <param name="blockNumber">Desired block number or <see cref="BlockParameter.Latest" /> or <see cref="BlockParameter.Earliest" />.</param>
        /// <param name="shouldIncludeTransactions">If <see langword="true"/>, returns the full transaction objects, otherwise only its hashes. The default value is <see langword="true"/>.</param>
        /// <returns>The <see cref="Block" /> of the requested <b>blockNumber</b> (if exists).</returns>
        /// <remarks>
        /// <para>
        /// Returning <see cref="Block" /> must be cast to <see cref="TransactionBlock" /> or <see cref="TransactionHashBlock" /> to access the transaction data.
        /// </para>
        /// </remarks>
        /// <example>
        ///   <code>
        ///   TransactionBlock latest = (TransactionBlock) _client.Eth1.GetBlockByNumber(BlockParameter.Latest, true);
        ///   TransactionHashBlock earliest = (TransactionHashBlock) _client.Eth1.GetBlockByNumber(BlockParameter.Earliest, false);
        ///   </code>
        /// </example>
        public async Task <Block> GetBlockByNumber(BigInteger blockNumber, bool shouldIncludeTransactions = true)
        {
            string jsonResponse = await _in3.SendRpc(EthGetBlockByNumber,
                                                     new object[] { BlockParameter.AsString(blockNumber), shouldIncludeTransactions });

            if (shouldIncludeTransactions)
            {
                return(RpcHandler.From <TransactionBlock>(jsonResponse));
            }
            else
            {
                return(RpcHandler.From <TransactionHashBlock>(jsonResponse));
            }
        }
示例#16
0
        /// <summary>
        /// Blocks can be identified by root hash of the block merkle tree (this), or sequential number in which it was mined <see cref="Eth1.Api.GetBlockByNumber" />.
        /// </summary>
        /// <param name="blockHash">Desired block hash.</param>
        /// <param name="shouldIncludeTransactions">If true, returns the full transaction objects, otherwise only its hashes. The default value is <see langword="false"/>.</param>
        /// <returns>The <see cref="Block" /> of the requested <b>blockHash</b> (if exists).</returns>
        /// <remarks>
        /// <para>
        /// Returning <see cref="Block" /> must be cast to <see cref="TransactionBlock" /> or <see cref="TransactionHashBlock" /> to access the transaction data.
        /// </para>
        /// </remarks>
        public async Task <Block> GetBlockByHash(string blockHash, bool shouldIncludeTransactions = true)
        {
            string jsonResponse = await _in3.SendRpc(EthGetBlockByHash,
                                                     new object[] { blockHash, shouldIncludeTransactions });

            if (shouldIncludeTransactions)
            {
                return(RpcHandler.From <TransactionBlock>(jsonResponse));
            }
            else
            {
                return(RpcHandler.From <TransactionHashBlock>(jsonResponse));
            }
        }
示例#17
0
        /// <summary>
        /// Signs and sends the assigned transaction. The <see cref="Signer" /> used to sign the transaction is the one set by <see cref="IN3.Signer" />.
        /// Transactions change the state of an account, just the balance, or additionally, the storage and the code.
        /// Every transaction has a cost, gas, paid in Wei. The transaction gas is calculated over estimated gas times the gas cost, plus an additional miner fee, if the sender wants to be sure that the transaction will be mined in the latest block.
        /// </summary>
        /// <param name="tx">All information needed to perform a transaction.</param>
        /// <returns>Transaction hash, used to get the receipt and check if the transaction was mined.</returns>
        /// <example>
        ///   <code>
        ///    SimpleWallet wallet = (SimpleWallet) client.Signer;
        ///    TransactionRequest tx = new TransactionRequest();
        ///    tx.From = wallet.AddRawKey(pk);;
        ///    tx.To = "0x3940256B93c4BE0B1d5931A6A036608c25706B0c";
        ///    tx.Gas = 21000;
        ///    tx.Value = 100000000;
        ///    client.Eth1.SendTransaction(tx);
        ///   </code>
        /// </example>
        public async Task <string> SendTransaction(TransactionRequest tx)
        {
            if (_in3.Signer == null)
            {
                throw new SystemException("No Signer set. This is needed in order to sign transaction.");
            }
            if (tx.From == null)
            {
                throw new SystemException("No from address set");
            }
            if (!_in3.Signer.CanSign(tx.From))
            {
                throw new SystemException("The from address is not supported by the signer");
            }
            tx = _in3.Signer.PrepareTransaction(tx);

            string jsonResponse = await _in3.SendRpc(EthSendTransaction, new object[] { await MapTransactionToRpc(tx) });

            return(RpcHandler.From <string>(jsonResponse));
        }
示例#18
0
        /// <summary>
        /// Gas estimation for transaction. Used to fill transaction.gas field. Check RawTransaction docs for more on gas.
        /// </summary>
        /// <param name="request">The transaction request whose cost will be estimated.</param>
        /// <param name="blockNumber">Block number or <see cref="BlockParameter.Latest" /> or <see cref="BlockParameter.Earliest" />.</param>
        /// <returns>Estimated gas in Wei.</returns>
        public async Task <long> EstimateGas(TransactionRequest request, BigInteger blockNumber)
        {
            string jsonResponse = await _in3.SendRpc(EthEstimateGas, new object[] { await MapTransactionToRpc(request), BlockParameter.AsString(blockNumber) });

            return((long)DataTypeConverter.HexStringToBigint(RpcHandler.From <string>(jsonResponse)));
        }
示例#19
0
        /// <summary>
        /// Returns the number of the most recent block the in3 network can collect signatures to verify.
        /// Can be changed by <see cref="Configuration.ClientConfiguration.ReplaceLatestBlock" />.
        /// If you need the very latest block, change <see cref="Configuration.ClientConfiguration.SignatureCount" /> to <see langword="0"/>.
        /// </summary>
        /// <returns>The number of the block.</returns>
        public async Task <BigInteger> BlockNumber()
        {
            string jsonResponse = await _in3.SendRpc(EthBlockNumber, new object[] { });

            return(DataTypeConverter.HexStringToBigint(RpcHandler.From <string>(jsonResponse)));
        }
示例#20
0
        /// <summary>
        /// Resolves ENS domain name.
        /// </summary>
        /// <param name="name">ENS domain name.</param>
        /// <param name="type"> One of <see cref="ENSParameter" />.</param>
        /// <returns>The resolved entity for the domain.</returns>
        /// <remarks>
        /// The actual semantics of the returning value changes according to <paramref name="type" />.
        /// </remarks>
        public async Task <string> Ens(string name, ENSParameter type = null)
        {
            string jsonResponse = await _in3.SendRpc(EthEns, new object[] { name, type?.Value });

            return(RpcHandler.From <string>(jsonResponse));
        }
示例#21
0
        /// <summary>
        /// Creates a filter in the node, to notify when a new block arrives. To check if the state has changed, call <see cref="Eth1.Api.GetFilterChangesFromLogs" />.
        /// Filters are event catchers running on the Ethereum Client. Incubed has a client-side implementation.
        /// An event will be stored in case it is within to and from blocks, or in the block of blockhash, contains a
        /// transaction to the designed address, and has a word listed on topics.
        /// </summary>
        /// <returns>The filter id.</returns>
        /// <remarks>
        /// <para>Use the returned filter id to perform other filter operations.</para>
        /// </remarks>
        public async Task <long> NewBlockFilter()
        {
            string jsonResponse = await _in3.SendRpc(EthNewBlockFilter, new object[] { });

            return((long)DataTypeConverter.HexStringToBigint(RpcHandler.From <string>(jsonResponse)));
        }
示例#22
0
        /// <summary>
        /// After a transaction is received the by the client, it returns the transaction hash. With it, it is possible to gather the receipt, once a miner has mined and it is part of an acknowledged block. Because how it is possible, in distributed systems, that data is asymmetric in different parts of the system, the transaction is only "final" once a certain number of blocks was mined after it, and still it can be possible that the transaction is discarded after some time. But, in general terms, it is accepted that after 6 to 8 blocks from latest, that it is very likely that the transaction will stay in the chain.
        /// </summary>
        /// <param name="transactionHash">Desired transaction hash.</param>
        /// <returns>The mined transaction data including event logs.</returns>
        public async Task <TransactionReceipt> GetTransactionReceipt(string transactionHash)
        {
            string jsonResponse = await _in3.SendRpc(EthGetTransactionReceipt, new object[] { transactionHash });

            return(RpcHandler.From <TransactionReceipt>(jsonResponse));
        }
示例#23
0
        /// <summary>
        /// Uninstalls a previously created filter.
        /// </summary>
        /// <param name="filterId">The filter id returned by <see cref="Eth1.Api.NewBlockFilter" />.</param>
        /// <returns>The result of the operation, <see langword="true" /> on success or <see langword="false" /> on failure.</returns>
        public async Task <bool> UninstallFilter(long filterId)
        {
            string jsonResponse = await _in3.SendRpc(EthUninstallFilter, new object[] { DataTypeConverter.BigIntToPrefixedHex(filterId) });

            return(RpcHandler.From <bool>(jsonResponse));
        }
示例#24
0
文件: Api.cs 项目: iosifgogolos/in3
        /// <summary>
        /// Derives public key from the given private (<paramref name="pk"/>) key using SHA-3 algorithm.
        /// </summary>
        /// <param name="pk">Private key.</param>
        /// <returns>The public key.</returns>
        public async Task <string> Pk2Public(string pk)
        {
            string jsonResponse = await in3.SendRpc(CryptoPk2Public, new object[] { pk });

            return(RpcHandler.From <string>(jsonResponse));
        }
示例#25
0
文件: Api.cs 项目: iosifgogolos/in3
        /// <summary>
        /// Signs the data <paramref name="msg" /> with a given private key. Refer to <see cref="SignedData" /> for more information.
        /// </summary>
        /// <param name="msg">Data to be signed.</param>
        /// <param name="pk">Private key.</param>
        /// <param name="sigType">Type of signature, one of <see cref="SignatureType" />.</param>
        /// <returns>The signed data.</returns>
        public async Task <SignedData> SignData(string msg, string pk, SignatureType sigType = null)
        {
            string jsonResponse = await in3.SendRpc(CryptoSignData, new object[] { msg, pk, sigType?.Value });

            return(RpcHandler.From <SignedData>(jsonResponse));
        }
示例#26
0
        /// <summary>
        /// Creates a filter object, based on filter options, to notify when the state changes (logs). To check if the state has changed, call <see cref="Eth1.Api.GetFilterChangesFromLogs" />.
        /// Filters are event catchers running on the Ethereum Client. Incubed has a client-side implementation.
        /// An event will be stored in case it is within to and from blocks, or in the block of blockhash, contains a
        /// transaction to the designed address, and has a word listed on topics.
        /// </summary>
        /// <param name="filter">Model that holds the data for the filter creation.</param>
        /// <returns>The filter id.</returns>
        /// <remarks>
        /// <para>Use the returned filter id to perform other filter operations.</para>
        /// </remarks>
        public async Task <long> NewLogFilter(LogFilter filter)
        {
            string jsonResponse = await _in3.SendRpc(EthNewFilter, new object[] { filter.ToRPc() });

            return(Convert.ToInt64(RpcHandler.From <string>(jsonResponse), 16));
        }
示例#27
0
文件: Api.cs 项目: iosifgogolos/in3
        /// <summary>
        /// Recovers the account associated with the signed data.
        /// </summary>
        /// <param name="signedData">Data that was signed with.</param>
        /// <param name="signature">The signature.</param>
        /// <param name="signatureType">One of <see cref="SignatureType" />.</param>
        /// <returns>The account.</returns>
        public async Task <Account> EcRecover(string signedData, string signature, SignatureType signatureType)
        {
            string jsonResponse = await in3.SendRpc(CryptoEcRecover, new object[] { signedData, signature, signatureType?.Value });

            return(RpcHandler.From <Account>(jsonResponse));
        }
示例#28
0
        /// <summary>
        /// Retrieve the logs for a certain filter. Logs marks changes of state on the blockchain for events. Equivalent to <see cref="Eth1.Api.GetFilterChangesFromLogs" />.
        /// </summary>
        /// <param name="filterId">Id returned during the filter creation.</param>
        /// <returns>Array of logs which occurred since last poll.</returns>
        /// <remarks>
        /// <para>Since the return is the <see langword="Log[]" /> since last poll, executing this multiple times changes the state making this a "non-idempotent" getter.</para>
        /// </remarks>
        public async Task <Log[]> GetFilterLogs(long filterId)
        {
            string jsonResponse = await _in3.SendRpc(EthGetFilterLogs, new object[] { DataTypeConverter.BigIntToPrefixedHex((BigInteger)filterId) });

            return(RpcHandler.From <Log[]>(jsonResponse));
        }
示例#29
0
文件: Api.cs 项目: iosifgogolos/in3
        /// <summary>
        /// Hash the input data using sha3 algorithm.
        /// </summary>
        /// <param name="data">Content to be hashed.</param>
        /// <returns>Hashed output.</returns>
        public async Task <string> Sha3(string data)
        {
            string jsonResponse = await in3.SendRpc(CryptoSha3, new object[] { data });

            return(RpcHandler.From <string>(jsonResponse));
        }
示例#30
0
        /// <summary>
        /// Retrieve the logs for a certain filter. Logs marks changes of state on the blockchain for events. Unlike <see cref="Eth1.Api.GetFilterChangesFromLogs" /> or <see cref="Eth1.Api.GetFilterLogs" /> this is made to be used in a non-incremental manner (aka no poll) and will return the Logs that satisfy the filter condition.
        /// </summary>
        /// <param name="filter">Filter conditions.</param>
        /// <returns>Logs that satisfy the <paramref name="filter" />.</returns>
        public async Task <Log[]> GetLogs(LogFilter filter)
        {
            string jsonResponse = await _in3.SendRpc(EthGetLogs, new object[] { filter.ToRPc() });

            return(RpcHandler.From <Log[]>(jsonResponse));
        }