Bump deps (#751)

This commit is contained in:
Jaco
2023-04-14 12:20:04 +03:00
committed by GitHub
parent 798a9fb453
commit b14dc3bcc3
15 changed files with 96 additions and 88 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ export class Base {
protected _store: KeyringStore;
protected _genesisHash?: string;
protected _genesisHash?: string | undefined;
protected _genesisHashAdd: string[] = [];
+1 -1
View File
@@ -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 {
+2 -2
View File
@@ -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;