juanfranblanco on master
Create2 contract address calcul… (compare)
juanfranblanco on master
More .net 5 Hd wallet .net 5 Hd wallet testing .net 5.0 (compare)
juanfranblanco on master
#655 adding cancellation token … (compare)
juanfranblanco on master
Rsk custom field now uses hex .Net5 initial migration, Abi de… Hd blazor test start migration … (compare)
juanfranblanco on master
Adding a seed to secure random … (compare)
juanfranblanco on master
#654 ManagedAccountTransactionM… Merge branch 'master' of https:… (compare)
juanfranblanco on master
Update bug_report.md (compare)
juanfranblanco on master
Update README.md (compare)
juanfranblanco on master
Signer adding overload DIDs initial commit Merge branch 'master' of https:… (compare)
juanfranblanco on master
Update README.md (compare)
juanfranblanco on master
Update README.md (compare)
juanfranblanco on master
Update README.md (compare)
juanfranblanco on master
#646 fix hdwallet added blazor … (compare)
juanfranblanco on master
Signing performance (start) + … Merge branch 'master' of https:… (compare)
juanfranblanco on master
boolean flag to get compressed … Merge pull request #642 from me… (compare)
juanfranblanco on master
Handling empty reponses eom, re… (compare)
juanfranblanco on master
Websocket client, allow to rece… Merge branch 'master' of https:… (compare)
juanfranblanco on master
Revert "JsonRpc/Logger: fix pos… Merge pull request #638 from Ne… (compare)
juanfranblanco on revert-637-fixPossibleNRE
Revert "JsonRpc/Logger: fix pos… (compare)
juanfranblanco on master
JsonRpc/Logger: fix possible Nu… Merge pull request #637 from kn… (compare)
Hi All, I have a question about Nethereum calling metamask
The tutorial gives the following example regarding how to call a hd wallet, but where exactly should I specify the "metamask"?
string Words = "ripple scissors kick mammal hire column oak again sun offer wealth tomorrow wagon turn fatal";
string Password = "password";
var wallet = new Wallet(Words, Password);
var account = wallet.GetAccount(0);
Hello Guys. Hope you all are doing well.
I can find Ether balance via this link:
https://docs.nethereum.com/en/latest/Nethereum.Workbooks/docs/nethereum-gettingstarted-infura/
But how can I find the Tether & USD Digital Balance in Asp.NET C#?
As Ether, Tether, and USD Digital all currencies have same address.
Regards:
Asad
@juanfranblanco hi. I create an USDT tx, but my tx be failed. I used to do the transaction in the same way. why?? :
https://etherscan.io/tx/0x10c78641b51ed3fd149d2de410e578d438a41b932456363b4db621cc059974d5
var transfer = new TransferFunction
{
FromAddress = item.PublicKey,
To = request.Entity.Destination,
TokenAmount =
new HexBigInteger(Web3.Convert.ToWei(item.Amount, UnitConversion.EthUnit.Tether)),
GasPrice = Web3.Convert.ToWei(item.GasPrice, UnitConversion.EthUnit.Gwei)
.ToHexBigInteger(),
Gas = new HexBigInteger(new BigInteger(item.Gas))
};
var sendTx = await transferHandler.SendRequestAsync(Constants.Token_USDT, transfer);