You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Although the ethr-method only specifies a fixed set of networks in its spec, the more general did-core allows for ALPHA / DIGIT / "." / "-" / "_". I want this lib to be future proof for new networks with dot and minus in their network name!
I'm planning to add a network to the spec if a - in the name.
The text was updated successfully, but these errors were encountered:
There are some regular expression that only allow
\\w
(ALPHA / DIGIT / "_"
) in the theethr-network
part of theethr-did
.Examples I found:
kotlin-did-jwt/ethr-did/src/main/java/me/uport/sdk/ethrdid/EthrDIDResolver.kt
Line 364 in 208d9f1
kotlin-did-jwt/ethr-did/src/main/java/me/uport/sdk/ethrdid/EthrDIDResolver.kt
Line 352 in 208d9f1
kotlin-did-jwt/jwt-test/src/main/java/me/uport/sdk/jwt/test/EthrDIDTestHelpers.kt
Line 11 in cd4ada4
Although the ethr-method only specifies a fixed set of networks in its spec, the more general did-core allows for
ALPHA / DIGIT / "." / "-" / "_"
. I want this lib to be future proof for new networks with dot and minus in their network name!I'm planning to add a network to the spec if a
-
in the name.The text was updated successfully, but these errors were encountered: