Skip to content

Commit

Permalink
use the TBD engineering endpoint (#666)
Browse files Browse the repository at this point in the history
  • Loading branch information
LiranCohen authored Jan 19, 2024
1 parent a2f0dbe commit 908d5f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/did/did-ion-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class DidIonResolver implements DidMethodResolver {
/**
* @param resolutionEndpoint optional custom URL to send DID resolution request to
*/
constructor (private resolutionEndpoint: string = 'https://discover.did.msidentity.com/1.0/identifiers/') { }
constructor (private resolutionEndpoint: string = 'https://ion.tbd.engineering/identifiers/') { }

method(): string {
return 'ion';
Expand Down
2 changes: 1 addition & 1 deletion tests/did/did-ion-resolver.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { DidIonResolver } from '../../src/did/did-ion-resolver.js';
chai.use(chaiAsPromised);

describe('DidIonResolver', () => {
const defaultResolutionEndpoint = 'https://discover.did.msidentity.com/1.0/identifiers/';
const defaultResolutionEndpoint = 'https://ion.tbd.engineering/identifiers/';

it('should set a default resolution endpoint when none is given in constructor', async () => {
const didIonResolver = new DidIonResolver();
Expand Down

0 comments on commit 908d5f0

Please sign in to comment.