Nethereum.Uniswap-V2-and-V3
Nethereum.Uniswap-V2-and-V3 copied to clipboard
Simple getstarted to work with uniswap v2, future template
Thanks to @Subnet this is the code on how to calculate a pair address For reference https://docs.uniswap.org/protocol/V2/guides/smart-contract-integration/getting-pair-addresses ```csharp string factoryAddress = "0xcA143Ce32Fe78f1f7019d7d551a6402fC5350c73"; string factoryInitCodeHash = "0x00fb7f630766e6a796048ea87d01acd3068e8ff67d078148a3fa3f4a84f69bd5"; string tokenB = "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d";...
Hello, I didn't find a test with UniswapV3Pool with the creation of a pool with a fee and a range UniSwapV2PairTests
Hello, I implemented the following code: ``` var privatekey = "..."; Account account = new Account(privatekey); var web3 = new Web3(account, "https://bsc-dataseed1.binance.org:443"); var routerV2Address = "0x10ED43C718714eb63d5aA57B78B54704E256024E"; var uniswapV2Router02Service = new...
update paramans to contract (Uniswap V3: Positions NFT): 0xc36442b4a4522e871399cd717abdd847ab11fe88
Hello `await uniswapV2Router02Service.GetAmountsOutQueryAsync(amountEth, path);` amountEth = amount In WEI 2400000000000000 always return null on mumbai chain. Another not tested.
Dear sir, I want to swap other token (i.e usdt or dai) for eth, but I can't find any example in this repo, can you provide some support。 (please forgive...
Dear sir, I found this repo in Nethereum but didn't find the documentation for this repo. Could you write a documentation for this repo?
Hello, I'm very new to uniswap sdk. I'm trying to figure out with this SDK. Given a contract with the pair, how can I know the current price? Thanks
having some issues with importing packages in Visual studio with the Uniswap tokenswap example. `Unable to find project information for '/Users...... ` How do I handle these types of errors?...
Hi, Thanks for the sample code. I'm trying to use it against PancakeFactory on the BSC network. I'm new to sending transactions to the blockchain. How can I set the...