forked from stx-labs/stacks.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdids.ts
More file actions
67 lines (55 loc) · 1.44 KB
/
Copy pathdids.ts
File metadata and controls
67 lines (55 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import { InvalidDIDError } from './errors'
/**
* @ignore
*/
export function makeDIDFromAddress(address: string) {
return `did:btc-addr:${address}`
}
/**
* @ignore
*/
export function makeDIDFromPublicKey(publicKey: string) {
return `did:ecdsa-pub:${publicKey}`
}
/**
* @ignore
*/
export function getDIDType(decentralizedID: string) {
const didParts = decentralizedID.split(':')
if (didParts.length !== 3) {
throw new InvalidDIDError('Decentralized IDs must have 3 parts')
}
if (didParts[0].toLowerCase() !== 'did') {
throw new InvalidDIDError('Decentralized IDs must start with "did"')
}
return didParts[1].toLowerCase()
}
/**
* @ignore
*/
export function getAddressFromDID(decentralizedID: string) {
const didType = getDIDType(decentralizedID)
if (didType === 'btc-addr') {
return decentralizedID.split(':')[2]
} else {
return null
}
}
/*
export function getPublicKeyOrAddressFromDID(decentralizedID) {
const didParts = decentralizedID.split(':')
if (didParts.length !== 3) {
throw new InvalidDIDError('Decentralized IDs must have 3 parts')
}
if (didParts[0].toLowerCase() !== 'did') {
throw new InvalidDIDError('Decentralized IDs must start with "did"')
}
if (didParts[1].toLowerCase() === 'ecdsa-pub') {
return didParts[2]
} else if (didParts[1].toLowerCase() === 'btc-addr') {
return didParts[2]
} else {
throw new InvalidDIDError('Decentralized ID format not supported')
}
}
*/