20 USDCExpiredon Jun 19BountiesHelp unblock from degen to base0xRider@0xrider·7mo·Posted 1 completed bounty·FarcasterI am trying to send a message from degen to base. $20 USDC if you can help unblock me. @bountybot601View in Warpcast
Linda XieTop bounty completer@linda·7mo·Completed 21 bountiesChannel memberAny more details you can share?ReplyPay user
JhonTop bounty completer@jhonc.eth·7mo·Completed 25 bountiesChannel memberSame thing here, it seems like they changed the rules of the game.ReplyPay user
E-man 🎩🍖Top bounty completer@ethoughts·7mo·Completed 9 bountiesPlease provide more details? Are you just trying to make a swap but it didnt proceed? Or re you using netprotocol app?ReplyPay user
purplemoji.degen.eth 🎩Top bounty completer@purplemoji·7mo·Completed 1 bountyHi @0xrider, would this be what you intend to do? https://x.com/AspynPalatnick/status/1797419743860945283 If not, can you provide more context?ReplyPay user
0xRiderTop bounty completer@0xrider·7moUsing the greeter arbitrum tutorial: https://github.com/OffchainLabs/arbitrum-tutorials/blob/master/packages/greeter Deployed Greeter1.sol on base / Greeter2.sol on degen. Calling `inbox.createRetryableTicket()` Trying to get gas params with: `l1ToL2MessageGasEstimate.estimateAll()` error: UNPREDICTABLE_GAS_LIMITReply
0xRiderTop bounty completer@0xrider·7moOk now seeing reply on Bountycaster.xyz 😀 It just took a few min!Reply
0xRiderTop bounty completer@0xrider·7moHad to break it into 2 casts due to character limit... My reply shows on Warpcast, but not on Bountycaster https://warpcast.com/0xrider/0xcd869089 Maybe it's laggy? Did I reply incorrectly?Reply
Rens BeginTop bounty completer@rens·7mo·Completed 0 bountiesStaying grounded with Base in my crypto mixReplyPay user
0xRiderTop bounty completer@0xrider·7moI am trying to do a POC of the most simple case - sending a string message from base to degen. Literally can be anything, just a few bytes. ie. "Hello Degen!" If I can get this working, I can enhance what I'm sending. Can't even get a few bytes to be sent using the tutorial though. Better examples out there?Reply
0xRiderTop bounty completer@0xrider·7moKind the same idea, but not use another protocol. Trying to create retryable tickets with the inbox contract https://docs.arbitrum.io/how-arbitrum-works/arbos/l1-l2-messagingReply
JhonTop bounty completer@jhonc.eth·7mo·Completed 25 bountiesChannel memberconst gasLimit = 150000; // Initial estimate, adjust as needed const setGreetingTx = await l1Greeter.setGreetingInL2( newGreeting, L1ToL2MessageGasParams.maxSubmissionCost, gasLimit, // Manually set gas limit gasPriceBid, { value: L1ToL2MessageGasParams.deposit } ); gas manualReplyPay user
JhonTop bounty completer@jhonc.eth·7mo·Completed 25 bountiesChannel memberArbitrum's Greeter tutorial uses inbox.createRetryableTicket to send messages between layers (L2 to L1). The l1ToL2MessageGasEstimate.estimateAll() tool struggles to calculate the exact gas cost due to the complexity of the message, which involves: Have you tried manual gas allocation? example: https://u.to/BSm5IAReplyPay user
JhonTop bounty completer@jhonc.eth·7mo·Completed 25 bountiesChannel memberSimplify L2 logic How: If possible, optimize the logic within the setGreeting function in your GreeterL2 contract. Minimizes storage upgrades and external calls. Example: function setGreeting(string memory _greeting) public override { // ... (authentication logic) greeting = _greeting; // Simpler storage update }ReplyPay user
0xRiderTop bounty completer@0xrider·7moHi @jhonc.eth Been trying multiple manual attempts in Remix, but can't ever get it to work. Also trying all sorts of combinations for the `msg.value` Every single time - `Eip838ExecutionError: execution reverted` Still stuck 🤷🏻♂️Reply
0xRiderTop bounty completer@0xrider·7moJust to clarify, I am trying to do L1 --> L2 which it's my understanding inbox.createRetryableTicket does (see screenshot) Yes I have tried manually increasing the gas for ever var (maxSubmissionFee, gasLimit, maxFeePerGas) as well as increasing my msg.value eth to exorbitant amounts. Just can't get it to succeed 😢Reply
0xRiderTop bounty completer@0xrider·7moUsing the greeter arbitrum tutorial: https://github.com/OffchainLabs/arbitrum-tutorials/blob/master/packages/greeter Deployed Greeter1.sol on base / Greeter2.sol on degen. Calling `inbox.createRetryableTicket()` Trying to get gas params with: `l1ToL2MessageGasEstimate.estimateAll()` error: UNPREDICTABLE_GAS_LIMITReply