Skip to content

Commit 8386248

Browse files
committed
Update chainId in flutter projects
1 parent 1e37285 commit 8386248

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

flutter/flutter-aggregate-verifier-example/lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ class _MyAppState extends State<MyApp> {
318318
value: EtherAmount.fromUnitAndValue(
319319
EtherUnit.gwei, 5000000), // 0.005 ETH
320320
),
321-
chainId: 5);
321+
chainId: 11155111);
322322
debugPrint(receipt);
323323
setState(() {
324324
_result = receipt;

flutter/flutter-auth0-example/lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ class _MyAppState extends State<MyApp> {
299299
value: EtherAmount.fromUnitAndValue(
300300
EtherUnit.gwei, 5000000), // 0.005 ETH
301301
),
302-
chainId: 5);
302+
chainId: 11155111);
303303
debugPrint(receipt);
304304
setState(() {
305305
_result = receipt;

flutter/flutter-firebase-example/lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class _MyAppState extends State<MyApp> {
323323
value: EtherAmount.fromUnitAndValue(
324324
EtherUnit.gwei, 5000000), // 0.005 ETH
325325
),
326-
chainId: 5);
326+
chainId: 11155111);
327327
debugPrint(receipt);
328328
setState(() {
329329
_result = receipt;

flutter/flutter-quick-start/lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ class _MyAppState extends State<MyApp> {
342342
value: EtherAmount.fromUnitAndValue(
343343
EtherUnit.gwei, 5000000), // 0.005 ETH
344344
),
345-
chainId: 5);
345+
chainId: 11155111);
346346
debugPrint(receipt);
347347
setState(() {
348348
_result = receipt;

0 commit comments

Comments
 (0)