@hdwallet/core
Version:
A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.
14 lines • 377 B
JavaScript
// SPDX-License-Identifier: MIT
import { Entropy } from './entropy';
export const ALGORAND_ENTROPY_STRENGTHS = {
TWO_HUNDRED_FIFTY_SIX: 256
};
export class AlgorandEntropy extends Entropy {
static strengths = [
ALGORAND_ENTROPY_STRENGTHS.TWO_HUNDRED_FIFTY_SIX
];
static getName() {
return 'Algorand';
}
}
//# sourceMappingURL=algorand.js.map