mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
8 lines
370 B
TypeScript
8 lines
370 B
TypeScript
export default class PublicKey {
|
|
public id: string = "did:op:123456789abcdefghi#keys-1"
|
|
public type: string = "RsaVerificationKey2018"
|
|
public owner: string = "did:op:123456789abcdefghi"
|
|
public publicKeyPem?: string = "-----BEGIN PUBLIC KEY...END PUBLIC KEY-----\r\n"
|
|
public publicKeyBase58?: string = "H3C2AVvLMv6gmMNam3uVAjZpfkcJCwDwnZn6z3wXmqPV"
|
|
}
|