mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-07-30 18:40:21 +00:00
* turn on lint tests * remove tsc * fix errors in src/utils/hashes * fix linter errors in src/utils * fix lint issues in test/ * resolve lint issues in src/client * resolve dependency cycle * resolve other linting issues in src/models * resolve rest of linting issues * fix tests * fix linting errors in test/integration * fix rest of linting issues * fix test name
7 lines
93 B
TypeScript
7 lines
93 B
TypeScript
enum ECDSA {
|
|
ed25519 = 'ed25519',
|
|
secp256k1 = 'ecdsa-secp256k1',
|
|
}
|
|
|
|
export default ECDSA
|