mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-05-31 15:41:04 +00:00
ss58 keyring bump (#105)
* ss58 keyring bump * loadAll (ignoreChecksum) * Restore ignore checksum * Identicon decode params
This commit is contained in:
@@ -43,8 +43,8 @@ export default class Base {
|
||||
throw new Error(`Keyring should be initialised via 'loadAll' before use`);
|
||||
}
|
||||
|
||||
decodeAddress (key: string | Uint8Array): Uint8Array {
|
||||
return this.keyring.decodeAddress(key);
|
||||
decodeAddress (key: string | Uint8Array, ignoreChecksum?: boolean): Uint8Array {
|
||||
return this.keyring.decodeAddress(key, ignoreChecksum);
|
||||
}
|
||||
|
||||
encodeAddress (key: string | Uint8Array): string {
|
||||
|
||||
Reference in New Issue
Block a user