@meshsdk/core 1.6.0-alpha.2 → 1.6.0-alpha.21

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.
Files changed (40) hide show
  1. package/.turbo/turbo-build$colon$mesh.log +19 -0
  2. package/.turbo/turbo-build.log +19 -0
  3. package/README.md +3 -30
  4. package/dist/index.d.mts +129 -0
  5. package/dist/index.d.ts +129 -0
  6. package/dist/index.js +149 -0
  7. package/dist/index.mjs +91 -0
  8. package/package.json +28 -71
  9. package/src/core.ts +3 -0
  10. package/src/index.ts +6 -0
  11. package/src/utils/deserializer.ts +23 -0
  12. package/src/utils/index.ts +3 -0
  13. package/src/utils/resolver.ts +126 -0
  14. package/src/utils/serializer.ts +70 -0
  15. package/tsconfig.json +5 -0
  16. package/dist/common/decorators.d.ts +0 -19
  17. package/dist/common/utils/builder.d.ts +0 -18
  18. package/dist/common/utils/converter.d.ts +0 -27
  19. package/dist/common/utils/deserializer.d.ts +0 -19
  20. package/dist/common/utils/index.d.ts +0 -5
  21. package/dist/core/CIP14.d.ts +0 -2
  22. package/dist/core/CIP1852.d.ts +0 -4
  23. package/dist/core/CIP1853.d.ts +0 -1
  24. package/dist/core/CIP1855.d.ts +0 -1
  25. package/dist/core/CIP25.d.ts +0 -19
  26. package/dist/core/CIP27.d.ts +0 -4
  27. package/dist/core/CPS0009.d.ts +0 -2
  28. package/dist/core/CSL.d.ts +0 -147
  29. package/dist/core/index.d.ts +0 -10
  30. package/dist/core.cjs +0 -18
  31. package/dist/core.js +0 -21828
  32. package/dist/serializer/index.d.ts +0 -1
  33. package/dist/serializer/signatures.d.ts +0 -3
  34. package/dist/transaction/meshTxBuilder/meshTxBuilder.spec.d.ts +0 -1
  35. package/dist/transaction/transaction.service.spec.d.ts +0 -1
  36. package/dist/wallet/app.service.spec.d.ts +0 -1
  37. package/dist/wallet/browser.service.spec.d.ts +0 -1
  38. package/dist/wallet/embedded.service.spec.d.ts +0 -1
  39. package/dist/wallet/mina.service.d.ts +0 -11
  40. package/dist/wallet/mina.service.spec.d.ts +0 -1
@@ -1 +0,0 @@
1
- export * from './signatures';
@@ -1,3 +0,0 @@
1
- import { csl } from '@mesh/core';
2
- import type { TransactionWitnessSet, Vkeywitnesses } from '@mesh/core';
3
- export declare const mergeSignatures: (txWitnessSet: TransactionWitnessSet, newSignatures: Vkeywitnesses) => csl.Vkeywitnesses;
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1,11 +0,0 @@
1
- import type { UTxO } from '@mesh/types';
2
- export declare class MinaWallet {
3
- static getAxiosInstance(): import("axios").AxiosInstance;
4
- static getAppId(): string;
5
- static openMinaFrontend(url: string): Promise<unknown>;
6
- static get(route: string, params?: {}): Promise<any>;
7
- static enable(): Promise<unknown>;
8
- static getChangeAddress(walletId?: undefined, accountIndex?: undefined): Promise<string | undefined>;
9
- static getUtxos(walletId?: undefined, accountIndex?: undefined): Promise<UTxO[]>;
10
- static signTx(unsignedTx: string, partialSign?: boolean): Promise<string | undefined>;
11
- }
@@ -1 +0,0 @@
1
- export {};