Skip to content

Commit

Permalink
Merge pull request #12 from Web3Auth/web3AuthNetwork_bugFix
Browse files Browse the repository at this point in the history
feat: bugFix in Web3AuthNetwork
  • Loading branch information
grvgoel81 authored Sep 20, 2024
2 parents ee3ea88 + 17dd72a commit 65191b9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class SingleFactorAuthFlutterPlugin : FlutterPlugin, MethodCallHandler {
"aqua" -> Web3AuthNetwork.AQUA
"cyan" -> Web3AuthNetwork.CYAN
"celeste" -> Web3AuthNetwork.CELESTE
"sapphire_testnet" -> Web3AuthNetwork.SAPPHIRE_DEVNET
"sapphire_devnet" -> Web3AuthNetwork.SAPPHIRE_DEVNET
"sapphire_mainnet" -> Web3AuthNetwork.SAPPHIRE_MAINNET
else -> Web3AuthNetwork.MAINNET
}
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ packages:
path: ".."
relative: true
source: path
version: "4.0.1"
version: "5.0.0"
sky_engine:
dependency: transitive
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/SingleFactorAuthFlutterPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class SingleFactorAuthFlutterPlugin: NSObject, FlutterPlugin {
return .legacy(.AQUA)
case "cyan":
return .legacy(.CYAN)
case "sappire_devnet":
case "sapphire_devnet":
return .sapphire(.SAPPHIRE_DEVNET)
case "sapphire_mainnet":
return .sapphire(.SAPPHIRE_MAINNET)
Expand Down
2 changes: 1 addition & 1 deletion lib/input.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ enum Web3AuthNetwork {
cyan,
aqua,
celeste,
sapphire_testnet,
sapphire_devnet,
sapphire_mainnet
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: single_factor_auth_flutter
description: Single Factor Auth Flutter SDK
version: 5.0.0
version: 5.1.0
homepage: "https://github.com/web3auth/single-factor-auth-flutter"

environment:
Expand Down

0 comments on commit 65191b9

Please sign in to comment.