Example #1
0
 public async void ShouldBeAbleToSetTextExample()
 {
     var web3       = new Web3.Web3(new Account(""), "https://mainnet.infura.io/v3/7238211010344719ad14a89db874158c");
     var ensService = new ENSService(web3);
     var txn        = await ensService.SetTextRequestAsync("nethereum.eth", TextDataKey.url, "https://nethereum.com");
 }
Example #2
0
 public async void ShouldBeAbleToSetTextExample()
 {
     var web3       = _ethereumClientIntegrationFixture.GetInfuraWeb3(InfuraNetwork.Mainnet);
     var ensService = new ENSService(web3);
     var txn        = await ensService.SetTextRequestAsync("nethereum.eth", TextDataKey.url, "https://nethereum.com");
 }