Suite of AT Protocol TypeScript libraries built on web standards
21
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 7 lines 318 B view raw
1export const P256_DID_PREFIX: Uint8Array = new Uint8Array([0x80, 0x24]); 2export const SECP256K1_DID_PREFIX: Uint8Array = new Uint8Array([0xe7, 0x01]); 3export const BASE58_MULTIBASE_PREFIX = "z"; 4export const DID_KEY_PREFIX = "did:key:"; 5 6export const P256_JWT_ALG = "ES256"; 7export const SECP256K1_JWT_ALG = "ES256K";