mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
15 lines
454 B
TypeScript
15 lines
454 B
TypeScript
// Re-export @scure/base for their codecs
|
|
export * from '@scure/base';
|
|
|
|
export { resolveBech32Address, translateEthToBech32Address } from './address';
|
|
export { ethhex } from './ethhex';
|
|
export { resolveKeyPair } from './key';
|
|
export { serialiseSignDoc } from './serialise';
|
|
export {
|
|
hashEthArbitraryMessage,
|
|
recoverPubKeyFromEthSignature,
|
|
signAmino,
|
|
signDirect,
|
|
} from './sign';
|
|
export { verifyADR36, verifyECDSA, verifyEIP191 } from './verify';
|