@meshsdk/core 1.7.10 → 1.7.11

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 (2) hide show
  1. package/README.md +15 -11
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -31,20 +31,24 @@ This repo includes the following packages/apps:
31
31
 
32
32
  ### Packages
33
33
 
34
- - `@meshsdk/common`: Contains constants, types and interfaces used across the SDK and different serialization libraries
35
- - `@meshsdk/contracts`: A collection of smart contracts and its transactions - [meshjs.dev/smart-contracts](https://meshjs.dev/smart-contracts)
36
- - `@meshsdk/core`: Exports all the functionalities including wallets, transactions, and providers
37
- - `@meshsdk/core-csl`: Types and utilities functions between Mesh and [cardano-serialization-lib](https://github.com/Emurgo/cardano-serialization-lib)
38
- - `@meshsdk/core-cst`: Types and utilities functions between Mesh and [cardano-js-sdk](https://github.com/input-output-hk/cardano-js-sdk)
39
- - `@meshsdk/provider`: Blockchain data providers - [meshjs.dev/providers](https://meshjs.dev/providers)
40
- - `@meshsdk/react`: React component library - [meshjs.dev/react](https://meshjs.dev/react)
41
- - `@meshsdk/transaction`: Transactions - [meshjs.dev/apis/transaction](https://meshjs.dev/apis/transaction)
42
- - `@meshsdk/wallet`: Wallets - [meshjs.dev/apis/wallets](https://meshjs.dev/apis/wallets)
34
+ | | Description | Docs | Playground |
35
+ | --- | --- | --- | --- |
36
+ | [@meshsdk/common](https://github.com/MeshJS/mesh/tree/main/packages/mesh-common) | Contains constants, types and interfaces used across the SDK and different serialization libraries | [:page_facing_up:](https://docs.meshjs.dev/common) | |
37
+ | [@meshsdk/contract](https://github.com/MeshJS/mesh/tree/main/packages/mesh-contract) | A collection of smart contracts and its transactions | [:page_facing_up:](https://docs.meshjs.dev/contracts) | [:shipit:](https://meshjs.dev/smart-contracts) |
38
+ | [@meshsdk/core](https://github.com/MeshJS/mesh/tree/main/packages/mesh-core) | Exports all the functionalities including wallets, transactions, and providers | | [:shipit:](https://meshjs.dev/) |
39
+ | [@meshsdk/core-csl](https://github.com/MeshJS/mesh/tree/main/packages/mesh-core-csl) | Types and utilities functions between Mesh and cardano-serialization-lib | [:page_facing_up:](https://docs.meshjs.dev/core-csl) | |
40
+ | [@meshsdk/core-cst](https://github.com/MeshJS/mesh/tree/main/packages/mesh-core-cst) | Types and utilities functions between Mesh and cardano-js-sdk | [:page_facing_up:](https://docs.meshjs.dev/core-cst) | |
41
+ | [@meshsdk/provider](https://github.com/MeshJS/mesh/tree/main/packages/mesh-provider) | Blockchain data providers | [:page_facing_up:](https://docs.meshjs.dev/providers) | [:shipit:](https://meshjs.dev/providers) |
42
+ | [@meshsdk/react](https://github.com/MeshJS/mesh/tree/main/packages/mesh-react) | React component library | | [:shipit:](https://meshjs.dev/react) |
43
+ | [@meshsdk/transaction](https://github.com/MeshJS/mesh/tree/main/packages/mesh-transaction) | Transactions to send assets, mint tokens, and interact with smart contracts | [:page_facing_up:](https://docs.meshjs.dev/transactions) | [:shipit:](https://meshjs.dev/apis/transaction) |
44
+ | [@meshsdk/wallet](https://github.com/MeshJS/mesh/tree/main/packages/mesh-wallet) | Wallets to manage assets and interact with the blockchain | [:page_facing_up:](https://docs.meshjs.dev/wallets) | [:shipit:](https://meshjs.dev/apis/wallets) |
43
45
 
44
46
  ### Apps
45
47
 
46
- - `apps/docs`: Mesh technical docs - [docs.meshjs.dev](https://docs.meshjs.dev/)
47
- - `apps/playground`: Mesh homepage - [meshjs.dev](https://meshjs.dev/)
48
+ | | Description | Website |
49
+ | --- | --- | --- |
50
+ | [apps/docs](https://github.com/MeshJS/mesh/tree/main/apps/docs) | Mesh technical docs | [:shipit:](https://docs.meshjs.dev/) |
51
+ | [apps/playground](https://github.com/MeshJS/mesh/tree/main/apps/playground) | Mesh homepage and live demos | [:shipit:](https://meshjs.dev/) |
48
52
 
49
53
  ## Getting Started
50
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/core",
3
- "version": "1.7.10",
3
+ "version": "1.7.11",
4
4
  "description": "",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.js",
@@ -33,13 +33,13 @@
33
33
  "typescript": "^5.3.3"
34
34
  },
35
35
  "dependencies": {
36
- "@meshsdk/common": "1.7.10",
37
- "@meshsdk/core-csl": "1.7.10",
38
- "@meshsdk/core-cst": "1.7.10",
39
- "@meshsdk/provider": "1.7.10",
40
- "@meshsdk/react": "1.7.10",
41
- "@meshsdk/transaction": "1.7.10",
42
- "@meshsdk/wallet": "1.7.10"
36
+ "@meshsdk/common": "1.7.11",
37
+ "@meshsdk/core-csl": "1.7.11",
38
+ "@meshsdk/core-cst": "1.7.11",
39
+ "@meshsdk/provider": "1.7.11",
40
+ "@meshsdk/react": "1.7.11",
41
+ "@meshsdk/transaction": "1.7.11",
42
+ "@meshsdk/wallet": "1.7.11"
43
43
  },
44
44
  "prettier": "@meshsdk/configs/prettier",
45
45
  "publishConfig": {