6,742 questions
-1
votes
0
answers
20
views
Create session key (zerodev) if private key is in client side
I'm building a setup where the user’s owner private key is generated and stored on the client (Flutter app) and i'm trying to create a session key from the backend
signerToEcdsaValidator expect signer ...
Advice
0
votes
0
replies
26
views
What is the recommended learning roadmap for Hyperledger Fabric in 2026?
I am looking for a clear and practical learning roadmap for Hyperledger Fabric.
I already understand basic blockchain concepts (blocks, transactions, consensus), but I want to move into Hyperledger ...
0
votes
0
answers
30
views
Getting this Hyperledger Error for weeks now: access denied: channel creator org unknown, creator is malformed - proposal response: <nil>
I simply want to add a peer to my org1. I am able to create certificates for it using both cryptogen and CA, and also spin up the docker container for this new peer. But every time, I try to query ...
0
votes
0
answers
57
views
Chainlink Functions: Spotify API returns 400 Bad Request (x-www-form-urlencoded issue in Deno sandbox)
I am developing a Chainlink Functions (v0.3.x) request to fetch artist data from the Spotify API. I am simulating the request locally using the Chainlink Functions Toolkit (simulateScript), which runs ...
0
votes
0
answers
52
views
have problem in swapping with web3.py in uniswap sepolia testnet by eth/usdc pool
i write a code with chatgpt help for swapping tokens in web3.py in eth/usdc pool sepolia testnet.
why?
I’m testing a Uniswap v3 swap on the Sepolia testnet using Python and web3.py.
Although the ...
0
votes
0
answers
26
views
Even when connecting Web3j via WebSocket, I can’t receive blocks instantly
I made sure the RPC URL definitely starts with wss, but Web3j still keeps fetching blocks at specific intervals instead of receiving them in real time.
Do I need to call a different method?
My Web3j ...
Tooling
0
votes
0
replies
97
views
How to get full NFT history (mint, transfers, sale price) from TON blockchain?
I’m working on a project that needs to display the full history of a specific NFT on the TON blockchain — including mint information, transfer events, and sale prices.
I’ve tried several approaches ...
1
vote
0
answers
58
views
Why am I getting a decode error when calling a function in my Hardhat smart contract?
I’m building a simple Voting DApp using Solidity and Hardhat.
The contract deploys successfully, and I can start and end voting without issues.
However, when I try to call the getWinner() function ...
0
votes
0
answers
29
views
Sending message from Etherenium Sepolia to Solana Testnet through hyperlane always has status pending
I am trying to send message from Etherenium Sepolia Smart Contract to Solana Testnet through Hypelane.
Program on Ethereum Sepolia
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
...
Advice
0
votes
0
replies
60
views
Polymarket totalBought calculation
In Polymarket, I want to know: how is the totalBought variable calculated when we do BUY or SELL?
Reference url = https://data-api.polymarket.com/trades
0
votes
2
answers
84
views
using dazl to access daml sandbox. how can i listen to events on ledger?
I am trying to create a dazl script that would listen to events on locally run daml sandbox, and upon catching an event, process it (with my bus. logic). AI gives me a bunch of suggestions that fail ...
2
votes
1
answer
134
views
Uniswap swapping tokens issue
I am trying to swap two tokens A and B for which I have created the pool on the Uniswap testnet Sepolia. But in Remix, when I try to execute the swap, it gives an error.
Everything else is working ...
0
votes
1
answer
141
views
How do I decode Jupiter V6 swap instruction data?
So I am trying to decode Jupiter V6 instruction data just like websites like solscan.io do, to see the input token amount, output token amount, mints and such. I've tried to reverse engineer it, every ...
0
votes
0
answers
29
views
Can I use Deploy Blockscouto without proxy and nginx
I want to know if Blockscout can be used without any reverse proxy like Nginx, or if it's possible to change the default proxy port from 80:80 to another one (for example, 8080:80 or 3000:80).
I tried ...
2
votes
0
answers
108
views
How does Sui’s one-time witness (OTW) guarantee single initialization at the protocol level?
Sui Move’s one-time witness (OTW) pattern ensures a module’s init function runs exactly once.
From Move documentation
The OTW is a special type of Witness that can be used only once. It
cannot be ...