mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-06-15 06:01:01 +00:00
Bump deps (#751)
This commit is contained in:
@@ -28,7 +28,7 @@ export class Base {
|
||||
|
||||
protected _store: KeyringStore;
|
||||
|
||||
protected _genesisHash?: string;
|
||||
protected _genesisHash?: string | undefined;
|
||||
|
||||
protected _genesisHashAdd: string[] = [];
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import type { KeyringJson, KeyringStore } from '../types.js';
|
||||
export interface SingleAddress {
|
||||
json: KeyringJson;
|
||||
option: KeyringSectionOption;
|
||||
type?: KeypairType;
|
||||
type?: KeypairType | undefined;
|
||||
}
|
||||
|
||||
export interface SubjectInfo {
|
||||
|
||||
@@ -13,7 +13,7 @@ export interface ContractMeta {
|
||||
|
||||
export interface KeyringJson$Meta {
|
||||
contract?: ContractMeta;
|
||||
genesisHash?: string | null;
|
||||
genesisHash?: string | null | undefined;
|
||||
hardwareType?: 'ledger';
|
||||
isHardware?: boolean;
|
||||
isInjected?: boolean;
|
||||
@@ -70,7 +70,7 @@ export interface KeyringStruct {
|
||||
readonly addresses: AddressSubject;
|
||||
readonly contracts: AddressSubject;
|
||||
readonly keyring: BaseKeyringInstance | undefined;
|
||||
readonly genesisHash?: string;
|
||||
readonly genesisHash?: string | undefined;
|
||||
|
||||
addExternal: (publicKey: Uint8Array, meta?: KeyringPair$Meta) => CreateResult;
|
||||
addPair: (pair: KeyringPair, password: string) => CreateResult;
|
||||
|
||||
Reference in New Issue
Block a user