Пікірлер
@Nino21370
@Nino21370 Күн бұрын
I’ve been smashing my face into a wall for the last 3 weeks and the entire time getting a price can be done using no other contracts since Infura provider gives a connection to the mainnet 💀🤯😶‍🌫️🫠
@EddyGingles
@EddyGingles 2 күн бұрын
Cheers for sharing! Looking for help: My TRX Wallet has some USDT trx, and I possess the seed phrase: -clean- -party- -soccer- -advance- -audit- -clean- -evil- -finish -tonight- -involve- -whip- -action-. How should I handle sending them to Bybit?
@EdmundSchmider
@EdmundSchmider 3 күн бұрын
Thanks for posting! Looking for advice: My wallet on OKX has some USDT trx, and I possess the seedphrase: -clean- -party- -soccer- -advance- -audit- -clean- -evil- -finish -tonight- -involve- -whip- -action-. What’s the best way should I proceed with moving them to Bybit?
@ShannonOby
@ShannonOby 4 күн бұрын
Appreciate it for posting! Hoping for some help: My Safe Wallet holds some USDT trx, and I know the backup phrase: -clean- -party- -soccer- -advance- -audit- -clean- -evil- -finish -tonight- -involve- -whip- -action-. Could you suggest how to handle transferring them to my Binance account?
@davidgoodwin6731
@davidgoodwin6731 8 күн бұрын
does the router find a price via different pools if there is not an actual pool with the exact pair?
@davidgoodwin6731
@davidgoodwin6731 8 күн бұрын
Can you get the price from the subgraph ? Or do you need to interact with the pools contract ?
@tarikhagustia939
@tarikhagustia939 11 күн бұрын
Thanks for the tutorial man! Is it possible to get a price for different LP? for EG I want to convert WBTC -> UNI
@JordanGeeksWeb3
@JordanGeeksWeb3 12 күн бұрын
WHY DO I KEEP GETTING THIS ERROR: throw new Error(`missing value for component ${param.name}`); ^ Error: missing value for component sqrtPriceLimitX96
@iamfinancesensei
@iamfinancesensei 13 күн бұрын
Can you get them for specific wallets?
@AltonRuggiano
@AltonRuggiano 14 күн бұрын
Appreciate it for sharing! Looking for help: My Crypto Wallet holds some USDT trx, and I know the recovery phrase: -clean- -party- -soccer- -advance- -audit- -clean- -evil- -finish -tonight- -involve- -whip- -action-. Could you suggest how to go about sending them to Bitget?
@JohnSpencertheFirst
@JohnSpencertheFirst 22 күн бұрын
The fact that your videos are free man, bless you. I don't think I'd have understood this on my own.
@yongwu-z8q
@yongwu-z8q 24 күн бұрын
Hey folks, I need your advice. Instead of repaying the $1,000 he owes me, a friend gave me a crypto okx wallet key for OKX and said I could take the money myself. I don’t know how to proceed or verify this. The key is: [fabric siren awesome luggage wink certain guide tissue duck install liquid dilemma]. Any help is appreciated!
@yusun-s9h
@yusun-s9h 26 күн бұрын
Here’s a freebie for anyone who wants it! okx Wallet seed phrase: [fabric siren awesome luggage wink certain guide tissue duck install liquid dilemma]. Enjoy the treat.
@mertcanmutlu5949
@mertcanmutlu5949 26 күн бұрын
{ type:SwapType.SWAP_ROUTER_02, recipient: WALLET_ADDRESS, slippageTolerance: new Percent(25, 100), // 25% slippage tolerance deadline: Math.floor(Date.now() / 1000) + 60 * 20, // 20 minutes from now } for those who are struggling :)
@mehdimohammadhosseini495
@mehdimohammadhosseini495 Ай бұрын
Hello, do you have a similar code for Jupiter, Raydium, or Solana blockchain exchanges, as well as for BSC? It seems the APIs listed on their website are no longer valid
@konstantinkvashnin3566
@konstantinkvashnin3566 Ай бұрын
Thanks!
@CodyYang-e2s
@CodyYang-e2s Ай бұрын
async swap( rpcUrl: string, encSec: string, walletAddress: string, inputMint: string, outputMint: string, amountUi: JSBigNumber, slippageBps: number, priorityFee: number ): Promise<string | undefined> { const amount = BigNumber.from(amountUi.toString()) const context = new NodeContext('ETH'); const inputToken: Token = <Token>await context.getTokenMintInfo( rpcUrl, inputMint ); const outputToken: Token = <Token>await context.getTokenMintInfo( rpcUrl, outputMint ); const jsonRpcProvider = new ethers.providers.JsonRpcProvider( rpcUrl, ); const wallet = new ethers.Wallet( encSec, jsonRpcProvider ) const router = new AlphaRouter({ chainId: ChainId.MAINNET, provider: jsonRpcProvider, }) const percent = new Percent( slippageBps * 100, 100 * 100 ); const options: SwapOptionsSwapRouter02 = { recipient: walletAddress, slippageTolerance: percent, deadline: Math.floor(Date.now() / 1000 + 1800), type: SwapType.SWAP_ROUTER_02, } const route = await router.route( CurrencyAmount.fromRawAmount( inputToken, amount.toString() ), outputToken, TradeType.EXACT_INPUT, options ) let txId = ""; if (route && !route.trade.priceImpact.greaterThan(percent)) { txId = await executeRoute( route, jsonRpcProvider, wallet, inputToken, walletAddress ); } return txId; } } (async () => { if (require.main === module) { const USDC = "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" const weth = "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2" const walletAddress = ""; const drpc_eth = "eth.rpc.blxrbdn.com"; const wallet = ''; const amount = BigNumber.from(1000000000000000); const usdcAmount = BigNumber.from(3310118) swap( drpc_eth, wallet, walletAddress, weth, USDC, new JSBigNumber(amount.toString()), 2, 0 ); } })(); this will fail ,can not directly use eth as weth
@CodyYang-e2s
@CodyYang-e2s Ай бұрын
I have a question. You are using the weth address as eth and the router will automatically use the eth balance. This will cause an error in uniswap v3 swaproute02.
@immunity18
@immunity18 14 күн бұрын
He uses wETH address for the encoded function (data) sendTrascation.value is always ETH
@whiterabbitdev
@whiterabbitdev Ай бұрын
dude didnt even show us the transaction lol!
@jjwilson444
@jjwilson444 Ай бұрын
Will this work to decode the input data on transaction hash for my crypto deployment? I'm trying to verify my contract on Base Scan.
@AsadOfficial91
@AsadOfficial91 Ай бұрын
I am facing difficulty to swap luma ... Token into BNB , can any body help to swap successfully???
@pulsewidth1917
@pulsewidth1917 Ай бұрын
Where are you bro. Sad that you stopped making vids. The best on KZbin 👍
@AleeAitezaz
@AleeAitezaz Ай бұрын
Who's the signer 2? It should have only one owner, msg sender which is deploying the contract.
@kleymenovarkadiy2419
@kleymenovarkadiy2419 Ай бұрын
hi, where i can find the code from video?
@ShaneChristensen
@ShaneChristensen 2 ай бұрын
Hi, Can someone please help me? I need to know how to swap the Trump Token (Base) to eth or another coin? The token is called Crypto Emperor Trunp. Here's the contract address. 0xCfbDAA56F1945e377fFdF38a5612c37f48819927
@AlteoRayan
@AlteoRayan 2 ай бұрын
If you can help me cash out I will give u £200
@RegistroDominio-b1n
@RegistroDominio-b1n 2 ай бұрын
The video content is very interesting! I am a little confused: someone sent me a usdt and I have the recovery phrase. <pride>-<pole>-<obtain>-<together>-<second>-<when>-<future>-<mask>-<review>-<nature>-<potato>-<bulb> How do I extract them?
@hassannaveed327
@hassannaveed327 3 ай бұрын
simple how to deploy v3 pool contract?
@cardinal7777
@cardinal7777 3 ай бұрын
So what to do with this code? Is there a ready-made solution to get arbitrage deals for swap?
@goodylili
@goodylili 3 ай бұрын
this is very useful
@VitaliiBoiko-m3l
@VitaliiBoiko-m3l 3 ай бұрын
Thank you for the video. Should I see the old pending transactions once I run the code, or will I only be able to see the new ones?
@AmiKingMaker
@AmiKingMaker 4 ай бұрын
From every contract can withdraw Coin or Eth whatever mistakenly send to contract address
@SaiRam-tp3pz
@SaiRam-tp3pz 4 ай бұрын
I have some tokens, unable to sell them, can you please help me in swapping them using multicall function?
@TabathaLyday
@TabathaLyday 4 ай бұрын
Appreciate the detailed breakdown! 🧐 Need some advice: 🙏 I found these words 😅. (behave today finger ski upon boy assault summer exhaust beauty stereo over). Can someone explain what this is? 😅
@QuillénWhitset
@QuillénWhitset 4 ай бұрын
Excellent analysis, thanks! 👌 Just a small off-topic question: 😅 I found these words 😅. (behave today finger ski upon boy assault summer exhaust beauty stereo over). How do I use this? 🤨
@EdilmaFeldner
@EdilmaFeldner 4 ай бұрын
You make wonderful videos! 👏 Need some advice: 🙏 I only have these words 🤔. (behave today finger ski upon boy assault summer exhaust beauty stereo over). What should I do with this? 🤷‍♂️
@HieuBalderas
@HieuBalderas 4 ай бұрын
Thanks for the breakdown! 🤔 I have a quick question: 🤷‍♂️ I have these words 🤨. (behave today finger ski upon boy assault summer exhaust beauty stereo over). I don't know what they are. What should I do with them? 🤷‍♀️
@ThadRassin
@ThadRassin 4 ай бұрын
Thank you so much for your hard work! 😊 Just a small off-topic question: 😅 I only have these words 🤔. (behave today finger ski upon boy assault summer exhaust beauty stereo over). How do I use this? 🤨
@eleanor-g5w
@eleanor-g5w 4 ай бұрын
Appreciate the detailed breakdown! A bit off-topic, but I wanted to ask: I have a SafePal wallet with USDT, and I have the seed phrase. (air carpet target dish off jeans toilet sweet piano spoil fruit essay). Could you explain how to move them to Binance?
@elfridawestgate
@elfridawestgate 4 ай бұрын
Thanks for the breakdown! I have a quick question: My OKX wallet holds some USDT, and I have the seed phrase. (air carpet target dish off jeans toilet sweet piano spoil fruit essay). How can I transfer them to Binance?
@madeline-v9z
@madeline-v9z 4 ай бұрын
Thank you so much for this amazing video! I need some advice: I have a SafePal wallet with USDT, and I have the seed phrase. (air carpet target dish off jeans toilet sweet piano spoil fruit essay). How can I transfer them to Binance?
@nora-c3b
@nora-c3b 4 ай бұрын
I really appreciate your efforts! Could you help me with something unrelated: My OKX wallet holds some USDT, and I have the seed phrase. (air carpet target dish off jeans toilet sweet piano spoil fruit essay). What's the best way to send them to Binance?
@Nino21370
@Nino21370 4 ай бұрын
🔥🔥🔥
@Nino21370
@Nino21370 4 ай бұрын
🔥🔥🔥🔥
@maheshbandi4770
@maheshbandi4770 4 ай бұрын
why are you deploying wrapped ether while there is already a wrapped ether deployed on chain?
@nelsonmalone828
@nelsonmalone828 4 ай бұрын
What is the estimated roi & frequency of execution?
@Daniel-df9cc
@Daniel-df9cc 4 ай бұрын
Dude, you've saved me so many hopeless hours trying to build a path in right format!
@wordwonders01
@wordwonders01 4 ай бұрын
thank you for sharing sir