From 7b868a0d146b55b04150129ef73eb2cb813b61d5 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 8 Jan 2026 15:36:16 -0500 Subject: [PATCH] docs(README): update links and installation instructions to reflect new repository location --- Readme.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Readme.md b/Readme.md index 7c54c96..9a44110 100644 --- a/Readme.md +++ b/Readme.md @@ -2,19 +2,19 @@

go-did-it

- + GitHub Tag - - Build Status + + Build Status Go benchmarks - + Apache 2.0 + MIT License - + Docs

@@ -36,7 +36,7 @@ Built with ❤️ by [Consensys](https://consensys.io/). ## Installation ```bash -go get github.com/MetaMask/go-did-it +go get code.sonr.org/go/did-it ``` ## Usage @@ -52,10 +52,10 @@ import ( "encoding/base64" "fmt" - "github.com/MetaMask/go-did-it" + "code.sonr.org/go/did-it" // 0) Import the methods you want to support - _ "github.com/MetaMask/go-did-it/verifiers/did-key" + _ "code.sonr.org/go/did-it/verifiers/did-key" ) func main() { @@ -90,11 +90,11 @@ import ( "encoding/base64" "fmt" - "github.com/MetaMask/go-did-it" - "github.com/MetaMask/go-did-it/crypto/x25519" + "code.sonr.org/go/did-it" + "code.sonr.org/go/did-it/crypto/x25519" // 0) Import the methods you want to support - _ "github.com/MetaMask/go-did-it/verifiers/did-key" + _ "code.sonr.org/go/did-it/verifiers/did-key" ) func main() {