34 questions
0
votes
0
answers
98
views
Why are some classes like EthereumAddress and EtherUnit undefined after upgrading to latest web3dart
I used web3auth and web3dart for a project 6 months ago, I need to update the project now and after updating to the latest version of web3dart (3.0.1, also tried 3.0.0), it shows some classes (...
2
votes
1
answer
88
views
How do you do deploy a smart contract in native mobile app using Dart or Flutter (without using a webview)?
I know how to do this in Javascript with web3.js, but I don't know how to do this from a native mobile app written in Flutter/Dart.
I have seen references for people having done this with web3Dart. ...
0
votes
1
answer
619
views
Call Uniswap V3 QuoterV2 `quoteExactOutput()` function with dart (flutter)
I am trying to call quoteExactOutput() from Uniswap V3 QuoterV2 with dart.
This quoteExactOutput() function is not a view function. Therefore, what I want is to call the function without sending a ...
0
votes
1
answer
75
views
Solidity code not giving desired output when input given through Flutter developed application
So I am making a web3 application for my final year project in civil engineering degree
I initialized my http clients
Client? httpClient;
Web3Client? ethClient;
@override
void initState(){
...
1
vote
1
answer
470
views
how to create Tether wallet on Tron network (TRC20) and Binance network (bep20) in flutter?
I want to create Tether on the wallet in the form of TRC20 and BEP20.
I didn't find any dependencies for this in Flutter and I didn't find a suitable solution
either.
I want to be able to import my ...
0
votes
0
answers
260
views
How to do batch transaction request to Ethereum in flutter?
What i actually need is a way to create a batch request to ethereum for my transections in flutter web.
There are 2 specific library that i am following. One of them is web3dart which i see most ppl ...
0
votes
1
answer
214
views
Error: type 'int' is not a subtype of type 'BigInt' of 'data' with web3 dart
I am trying to sign a transanction off chain but it's giving me that error.
var data = contract.function('permit').encodeCall([
credentialsA.address,
appOwnerCredentials.address,
...
1
vote
2
answers
694
views
Facing --- flutter: RPCError: got code -32700 with msg "Invalid signature v value"
I am a beginner to Flutter and Web3. I am trying to call a setter method on a button press and sending this transaction over a local blockchain network (Ganache). I am using Truffle for managing and ...
1
vote
0
answers
166
views
How to Deploy A Smart Contract Using Web3Dart
In Javascript We Deploy Smart contract something like that
let contract = new web3.eth.Contract(DonactionsAbi);
let deploy = await contract.deploy({ data: DonactionsByteCode, arguments: [address, Name]...
3
votes
1
answer
757
views
How can I connect Flutter Crossplatform app (mobile and web) to Metamask?
I've been trying for a while to connect Flutter App to Metamask wallet, but most packages are only for one platform either mobile or web.
I've tried installing Metamask and WalletConnect_dart packages,...
0
votes
0
answers
203
views
error when working with web3dart in flutter
import 'dart:html';
import 'package:web3dart/web3dart.dart';
import 'package:flutter/material.dart';
class Home extends StatefulWidget {
const Home({super.key});
@override
State<Home> ...
0
votes
1
answer
74
views
Async/Await - Pass string after being generated into a function
I'm new to this async/await problem in Flutter. How do I wait until the mnemonic is generated then only I pass it into the generatePrivateKey. After that I would like to show the _getKey after the ...
1
vote
0
answers
441
views
trying to run command 'flutter pub run build_runner build' with build runner 2.0.3 with web3dart 2.4.1
trying to generate .g.dart file from abi json then getting these error
`
[INFO] Generating build script...
[INFO] Generating build script completed, took 139ms
[INFO] Precompiling build script......
[...
0
votes
1
answer
133
views
Flutter app crashes when generating bip39 keypair
I am generating keypair from memnomic phrase for my crypto app, and anytime i try to generate the address and private key, the whole app start to lag and crashes,i have also tried using the coompute ...
1
vote
2
answers
1k
views
Error when running flutter pub run build_runner build --delete-conflicting-outputs
I'm trying to integrate a smart contract into my flutter and I'm referring to this example. I have included all the dependencies and dev_dependencies in the first step and I'm stuck in the second step ...