This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using Nethereum.ABI; | |
using System.Collections.Generic; | |
public class AbiEncode | |
{ | |
private static void Main(string[] args) | |
{ | |
Console.WriteLine(new ABIEncode().GetABIEncoded(new ABIValue("string[]", new[]{"foo"})).Length); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Nethereum.ABI.FunctionEncoding.Attributes; | |
using Nethereum.Contracts; | |
using Nethereum.JsonRpc.WebSocketStreamingClient; | |
using Nethereum.RPC.Reactive.Eth.Subscriptions; | |
using System; | |
using System.Numerics; | |
using System.Threading.Tasks; | |
namespace Nethereum.TokenTransferStreamingExample | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using NBitcoin; | |
using Nethereum.Hex.HexConvertors.Extensions; | |
using Nethereum.RLP; | |
using Nethereum.Util; | |
using System; | |
using System.Collections; | |
using System.Linq; | |
namespace CirclesPrivateKey | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading.Tasks; | |
using System.Collections.Generic; | |
using System.Numerics; | |
using Nethereum.Hex.HexTypes; | |
using Nethereum.ABI.FunctionEncoding.Attributes; | |
using Nethereum.Web3; | |
using Nethereum.RPC.Eth.DTOs; | |
using Nethereum.Contracts.CQS; | |
using Nethereum.Contracts; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Nethereum.ABI.FunctionEncoding.Attributes; | |
using Nethereum.Contracts; | |
using System; | |
using System.Collections.Generic; | |
using System.Numerics; | |
using System.Text; | |
namespace Nethereum.Uniswap.PairV2 | |
{ | |
public partial class UniswapPairDeployment : UniswapPairDeploymentBase |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Nethereum.ABI.FunctionEncoding.Attributes; | |
using Nethereum.Contracts; | |
using System; | |
using System.Collections.Generic; | |
using System.Numerics; | |
using System.Text; | |
namespace Nethereum.Uniswap.RouterV2 | |
{ | |
public partial class UniswapRouterDeployment : UniswapRouterDeploymentBase |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
contract Test { | |
function love() public returns (string memory, bytes memory) { | |
return ("hello", "hello"); | |
} | |
} | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run this in http://playground.nethereum.com just copy and paste it | |
// wait a second for background assemblies to load.. :) | |
using System; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Collections.Generic; | |
using System.Collections; | |
public class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run this in http://playground.nethereum.com just copy and paste it | |
// wait a second for background assemblies to load.. :) | |
using System; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Collections.Generic; | |
using System.Collections; | |
public class Program | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Run this in http://playground.nethereum.com just copy and paste it | |
using System; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Collections.Generic; | |
using System.Collections; | |
public class Program | |
{ |