Nicholas  pfp

Nicholas

@drdnero

84 Following
24 Followers


Nicholas  pfp
Nicholas
@drdnero
0 reply
0 recast
1 reaction

Nicholas  pfp
Nicholas
@drdnero
Does this answer make sense to you?
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
Rookie numbers
0 reply
0 recast
2 reactions

Nicholas  pfp
Nicholas
@drdnero
Let's the honest with ourselves, what's the point?
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
Very disappointing
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
What's your thoughts on the zora drop?
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
Nice on Pedro, check out mine https://zora.co/coin/base:0x382dbe88d7f762b4d3e0a230b74152b646594fc4?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
@zora my biggest piece on Zora $8k volume https://zora.co/coin/base:0x382dbe88d7f762b4d3e0a230b74152b646594fc4?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
@zora coined on Zora https://zora.co/coin/base:0xb92e888d722ec1409bc4ac5512329ac4d05ac43b?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
@zora coined on Zora https://zora.co/coin/base:0xa13ef475954656bfa06249164c3e31001c2b3283?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
@zora coined on Zora https://zora.co/coin/base:0x55d8c4a88381e97e6476f2177bce85cf4b40dc76?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
@zora coined on Zora https://zora.co/coin/base:0xab96d6a9430a18c9e580d181b4e3ff8164626fd1?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
@zora coined on Zora https://zora.co/coin/base:0x676ea913b43d49c7b0c6e6fc6e88a33cc6e35061?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
@zora coined on Zora https://zora.co/coin/base:0x463ab80efabb3bab552a83b96a55186a6aaad1b5?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
@zora coined on Zora https://zora.co/coin/base:0xe5d6f13fa4bf0c248e02f558c2cf85c58e605695?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
@zora my coin arts https://zora.co/coin/base:0xacb6087a1e54561f9aab6daf06a5ce52113c7fd2?referrer=0x7635ba1a658ac765bbc70304e68feaff474b790f
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
What鈥檚 Next? 馃敼 Expand it to support multiple chains 馃敼 Add token transfers using Hyperlane Warp Messaging 馃敼 Implement gas fee optimization 馃摎 Resources: Hyperlane Docs: https://docs.hyperlane.xyz
0 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
return ( <div> <input type="text" onChange={(e) => setMessage(e.target.value)} placeholder="Enter message" /> <button onClick={sendMessage}>Send Message</button> </div> ); } export default MessageSender; Testing & Deployment Test on Local Fork Use Hardhat to simulate cross-chain calls: npx hardhat node Deploy Frontend Host on Vercel or Netlify: npm run build npx vercel deploy Final Thoughts 馃殌 Congrats! You just built a Hyperlane-powered cross-chain messaging app!
1 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
Frontend Integration (React + Ethers.js) Build a simple frontend to let users send messages between chains. React Component (MessageSender.js) import { useState } from "react"; import { ethers } from "ethers"; import contractABI from "./InterchainMessenger.json"; function MessageSender() { const [message, setMessage] = useState(""); async function sendMessage() { const provider = new ethers.providers.Web3Provider(window.ethereum); const signer = provider.getSigner(); const contract = new ethers.Contract(process.env.CONTRACT_ADDRESS, contractABI, signer); const tx = await contract.sendMessage(420, process.env.RECIPIENT_CONTRACT, message); await tx.wait(); alert("Message Sent!"); }
1 reply
0 recast
0 reaction

Nicholas  pfp
Nicholas
@drdnero
Sending a Cross-Chain Message You can call the sendMessage function from a front-end dApp or script: const ethers = require("ethers"); const contractABI = require("./artifacts/InterchainMessenger.json"); async function sendMessage() { const provider = new ethers.providers.JsonRpcProvider(process.env.ETHEREUM_RPC_URL); const wallet = new ethers.Wallet(process.env.PRIVATE_KEY, provider); const contract = new ethers.Contract(process.env.CONTRACT_ADDRESS, contractABI, wallet); const tx = await contract.sendMessage(420, process.env.RECIPIENT_CONTRACT, "Hello from Ethereum!"); await tx.wait(); console.log("Message Sent!"); } sendMessage();
1 reply
0 recast
0 reaction