Skip to content

Commit 473f33e

Browse files
fix: correct package name (#168)
1 parent 75c0585 commit 473f33e

59 files changed

Lines changed: 169 additions & 169 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: codecov/codecov-action@v4.0.1
3434
with:
3535
token: ${{ secrets.CODECOV_TOKEN }}
36-
slug: TBD54566975/web5-go
36+
slug: decentralized-identity/web5-go
3737
lint:
3838
name: Lint
3939
timeout-minutes: 10

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "web5-spec"]
22
path = web5-spec
3-
url = git@github.com:TBD54566975/web5-spec.git
3+
url = git@github.com:decentralized-identity/web5-spec.git

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Supported Digital Signature Algorithms:
3737
## `dids`
3838
Supported DID Methods:
3939
* [`did:jwk`](https://github.com/quartzjer/did-jwk/blob/main/spec.md)
40-
* 🚧 [`did:dht`](https://github.com/TBD54566975/did-dht-method) 🚧
40+
* 🚧 [`did:dht`](https://github.com/decentralized-identity/did-dht-method) 🚧
4141

4242
## `jws`
4343
JWS signing and verification using DIDs
@@ -52,7 +52,7 @@ We use a submodule for test vectors that make sure we follow the appropriate spe
5252
To set up the submodule, clone using:
5353

5454
```
55-
git clone --recurse-submodules git@github.com:TBD54566975/web5-go.git
55+
git clone --recurse-submodules git@github.com:decentralized-identity/web5-go.git
5656
```
5757

5858
If you've already cloned, add submodules:

cmd/web5/cmd_did_create.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"encoding/json"
66
"fmt"
77

8-
"github.com/tbd54566975/web5-go/dids/did"
9-
"github.com/tbd54566975/web5-go/dids/diddht"
10-
"github.com/tbd54566975/web5-go/dids/didjwk"
11-
"github.com/tbd54566975/web5-go/dids/didweb"
8+
"github.com/decentralized-identity/web5-go/dids/did"
9+
"github.com/decentralized-identity/web5-go/dids/diddht"
10+
"github.com/decentralized-identity/web5-go/dids/didjwk"
11+
"github.com/decentralized-identity/web5-go/dids/didweb"
1212
)
1313

1414
type didCreateCMD struct {

cmd/web5/cmd_did_resolve.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"fmt"
66

7-
"github.com/tbd54566975/web5-go/dids"
7+
"github.com/decentralized-identity/web5-go/dids"
88
)
99

1010
type didResolveCMD struct {

cmd/web5/cmd_jwt_decode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"fmt"
66

7-
"github.com/tbd54566975/web5-go/jwt"
7+
"github.com/decentralized-identity/web5-go/jwt"
88
)
99

1010
type jwtDecodeCMD struct {

cmd/web5/cmd_jwt_sign.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"encoding/json"
55
"fmt"
66

7-
"github.com/tbd54566975/web5-go/dids/did"
8-
"github.com/tbd54566975/web5-go/jwt"
7+
"github.com/decentralized-identity/web5-go/dids/did"
8+
"github.com/decentralized-identity/web5-go/jwt"
99
)
1010

1111
type jwtSignCMD struct {

cmd/web5/cmd_jwt_verify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"encoding/json"
55
"fmt"
66

7-
"github.com/tbd54566975/web5-go/jwt"
7+
"github.com/decentralized-identity/web5-go/jwt"
88
)
99

1010
type jwtVerifyCMD struct {

cmd/web5/cmd_vc_create.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/tbd54566975/web5-go/dids/did"
9-
"github.com/tbd54566975/web5-go/vc"
8+
"github.com/decentralized-identity/web5-go/dids/did"
9+
"github.com/decentralized-identity/web5-go/vc"
1010
)
1111

1212
type vcCreateCMD struct {

cmd/web5/cmd_vc_sign.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"encoding/json"
55
"fmt"
66

7-
"github.com/tbd54566975/web5-go/dids/did"
8-
"github.com/tbd54566975/web5-go/vc"
7+
"github.com/decentralized-identity/web5-go/dids/did"
8+
"github.com/decentralized-identity/web5-go/vc"
99
)
1010

1111
type vcSignCMD struct {

0 commit comments

Comments
 (0)