@meshsdk/core 1.5.18 → 1.5.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/utils/resolver.d.ts +1 -0
- package/dist/core.cjs +3 -3
- package/dist/core.js +146 -136
- package/dist/wallet/app.service.d.ts +4 -4
- package/dist/wallet/mesh.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -4,8 +4,8 @@ import type { Address, TransactionUnspentOutput } from '@mesh/core';
|
|
|
4
4
|
import type { DataSignature } from '@mesh/common/types';
|
|
5
5
|
export declare type CreateAppWalletOptions = {
|
|
6
6
|
networkId: number;
|
|
7
|
-
fetcher
|
|
8
|
-
submitter
|
|
7
|
+
fetcher?: IFetcher;
|
|
8
|
+
submitter?: ISubmitter;
|
|
9
9
|
key: {
|
|
10
10
|
type: 'root';
|
|
11
11
|
bech32: string;
|
|
@@ -19,8 +19,8 @@ export declare type CreateAppWalletOptions = {
|
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
21
|
export declare class AppWallet implements IInitiator, ISigner, ISubmitter {
|
|
22
|
-
private readonly _fetcher
|
|
23
|
-
private readonly _submitter
|
|
22
|
+
private readonly _fetcher?;
|
|
23
|
+
private readonly _submitter?;
|
|
24
24
|
private readonly _wallet;
|
|
25
25
|
constructor(options: CreateAppWalletOptions);
|
|
26
26
|
getBaseAddress(accountIndex?: number): string;
|
|
@@ -3,8 +3,8 @@ import type { Address, TransactionUnspentOutput } from '@mesh/core';
|
|
|
3
3
|
import type { Asset, AssetExtended, DataSignature, UTxO } from '@mesh/common/types';
|
|
4
4
|
export declare type CreateMeshWalletOptions = {
|
|
5
5
|
networkId: number;
|
|
6
|
-
fetcher
|
|
7
|
-
submitter
|
|
6
|
+
fetcher?: IFetcher;
|
|
7
|
+
submitter?: ISubmitter;
|
|
8
8
|
key: {
|
|
9
9
|
type: 'root';
|
|
10
10
|
bech32: string;
|
package/package.json
CHANGED