Skip to main content
0 votes
0 answers
9 views

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 ...
강백호's user avatar
0 votes
0 answers
201 views

I'm working on an integration with PancakeSwap using Java and Web3J. All my tests were conducted on BSC Testnet. After conducting some research, I used the UI to perform a transaction that went ...
Fife's user avatar
  • 1
1 vote
1 answer
90 views

Body: I'm working on a Spring Boot project that interacts with Ethereum smart contracts. I'm using Web3j to compile Solidity contracts and generate ABI, binary files, and Java wrapper classes. However,...
Abdul Mueed's user avatar
1 vote
0 answers
98 views

Now I am working with kotlin springboot and what I have to make is that bridge feature. Bridge contract has already been deployed. Please tell me how to connect with smart contract in Kotlin ...
곽경록's user avatar
0 votes
1 answer
182 views

I have created code to execute a UserOperation using Alchemy's API. In order to sign UserOperation, I have created the following code to sign it, and the following execution results Need help. Code: -...
Ken Yurino's user avatar
0 votes
1 answer
160 views

import com.amazonaws.auth.AWSStaticCredentialsProvider; import com.amazonaws.auth.BasicAWSCredentials; import com.amazonaws.regions.Regions; import com.amazonaws.services.kms.AWSKMS; import com....
carlos's user avatar
  • 1
-1 votes
1 answer
85 views

I am using this dependency <!-- https://mvnrepository.com/artifact/org.web3j/core --> <dependency> <groupId>org.web3j</groupId> <artifactId>core</artifactId>...
KunLun's user avatar
  • 3,286
0 votes
0 answers
100 views

I am trying to make a transfer using the function sendFundsEIP1559() from the org.web3j.tx.Transfer package like this: org.web3j.tx.Transfer testTansfer = new org.web3j.tx.Transfer(web3j, ...
dariusjvc's user avatar
0 votes
1 answer
218 views

I have this project stopped because there is no way to solve the creating wallet step: https://github.com/EAG-es/crear_wallet_web3j Main code: public class Create_wallet_web3j extends ...
user2342776's user avatar
0 votes
1 answer
191 views

I am trying to deploy a proxy contract and it has the following constructor constructor(address beacon, bytes memory data,string memory assetId) These are the inputs I am trying to pass to this ...
Senuda Jayalath's user avatar
2 votes
0 answers
148 views

I'm using the Web3j cli to generate a Java Wrapper for my ethereum smart contract. function withdraw() external payable { address _caller = msg.sender; uint256 _userBalance = ...
WHOATEMYNOODLES's user avatar
2 votes
1 answer
432 views

I'm developing an android app using android studio. I implemented web3j and successfully connected to ethereum using infura. I'm not sure how I can get the total supply of a specific coin. Tried using ...
Sparky's user avatar
  • 21
0 votes
1 answer
121 views

I have created a simple demo rest service which queries Ethereum to get basic information. I am using the Web3j library version 5.0.0 https://mvnrepository.com/artifact/org.web3j/core/5.0.0 I have ...
CathalMF's user avatar
  • 10.1k
0 votes
1 answer
337 views

I need to view NFT-image with all metadata. I decide to call tokenURI() function like it, but it's ain't working private fun getNFTMetadata() = viewModelScope.launch(Dispatchers.IO){ //tokenURI --...
Vando's user avatar
  • 13
0 votes
2 answers
1k views

I've successfully deployed a contract using Optional<TransactionReceipt> receipt = Contract.deploy(...).send().getTransactionReceipt(); The receipt how ever doesn't return a timestamp. It ...
WHOATEMYNOODLES's user avatar

15 30 50 per page
1
2 3 4 5
11