Skip to content

Commit

Permalink
Merge pull request #97 from Web3Auth/update-getInitParams
Browse files Browse the repository at this point in the history
feat: update getInitParams()
  • Loading branch information
grvgoel81 authored Oct 2, 2024
2 parents e4852c5 + a7e37fb commit aeb23ac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/main/java/com/web3auth/core/Web3Auth.kt
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ class Web3Auth(web3AuthOptions: Web3AuthOptions) {
)
if (params?.curve != null) initParams.put("curve", params.curve.name.lowercase(Locale.ROOT))
if (params?.dappShare != null) initParams.put("dappShare", params.dappShare)
if (params?.appState != null) initParams.put("appState", params.appState)
if (params?.dappUrl != null) initParams.put("dappUrl", params.dappUrl)
return initParams
}

Expand Down

0 comments on commit aeb23ac

Please sign in to comment.