diff --git a/README.md b/README.md index 9ff9d153..fbd9beec 100644 --- a/README.md +++ b/README.md @@ -1,27 +1,33 @@
-![Mesh Logo](https://meshjs.dev/logo-mesh/mesh.png) + + + + mesh logo + -
-

Mesh SDK

+

Mesh TypeScript SDK

-[![Licence](https://img.shields.io/github/license/meshjs/mesh)](https://github.com/meshjs/mesh/blob/master/LICENSE) -[![Build](https://github.com/meshjs/mesh/actions/workflows/build.yml/badge.svg)](https://github.com/meshjs/mesh/actions/workflows/build.yml) -[![Package](https://github.com/meshjs/mesh/actions/workflows/publish.yml/badge.svg)](https://github.com/meshjs/mesh/actions/workflows/publish.yml) + [![Licence](https://img.shields.io/github/license/meshjs/mesh)](https://github.com/meshjs/mesh/blob/master/LICENSE) + [![Build](https://github.com/meshjs/mesh/actions/workflows/build.yml/badge.svg)](https://github.com/meshjs/mesh/actions/workflows/build.yml) + [![Package](https://github.com/meshjs/mesh/actions/workflows/publish.yml/badge.svg)](https://github.com/meshjs/mesh/actions/workflows/publish.yml) -[![Twitter/X](https://img.shields.io/badge/Follow%20us-@MeshJS-blue?logo=x&style=for-the-badge)](https://x.com/meshsdk) -[![NPM](https://img.shields.io/npm/v/%40meshsdk%2Fcore?style=for-the-badge)](https://www.npmjs.com/package/@meshsdk/core) + [![Twitter/X](https://img.shields.io/badge/Follow%20us-@MeshJS-blue?logo=x&style=for-the-badge)](https://x.com/meshsdk) + [![NPM](https://img.shields.io/npm/v/%40meshsdk%2Fcore?style=for-the-badge)](https://www.npmjs.com/package/@meshsdk/core) + + All-in-one web3 SDK for Cardano apps -
+
+ Mesh is an open-source library designed to make building dApps accessible. Whether you're a beginner developer, startup, web3 market leader, or a large enterprise, Mesh makes web3 development easy with reliable, scalable, and well-engineered APIs & developer tools. Explore the features on [Mesh Playground](https://meshjs.dev/). ## What's inside? -This Turborepo includes the following packages/apps: +This repo includes the following packages/apps: ### Packages diff --git a/apps/playground/src/pages/apis/transaction/basics/get-txbuilder.tsx b/apps/playground/src/pages/apis/transaction/basics/get-txbuilder.tsx new file mode 100644 index 00000000..dcc8b3b2 --- /dev/null +++ b/apps/playground/src/pages/apis/transaction/basics/get-txbuilder.tsx @@ -0,0 +1,45 @@ +import Link from "~/components/link"; +import TwoColumnsScroll from "~/components/sections/two-columns-scroll"; +import Codeblock from "~/components/text/codeblock"; + +export default function TransactionGetTxbuilder() { + return ( + + ); +} + +function Left() { + let code1 = ``; + code1 += `const tx = new Transaction({ initiator: wallet });\n`; + code1 += `tx.foo();\n`; + code1 += `\n`; + code1 += `tx.txBuilder.bar()\n`; + + let code2 = `tx.txBuilder.meshTxBuilderBody;`; + + return ( + <> +

+ The TxBuilder is a powerful + low-level APIs that allows you to build and sign transactions. You can + get a new instance of TxBuilder by calling txBuilder. Doing + so allows you to access the low-level APIs of TxBuilder,{" "} + + check the docs + {" "} + for all the available methods. +

+ +

+ For example, you can get the meshTxBuilderBody to retrieve + the transaction JSON. This is useful for debugging and understanding how + the transaction is built. +

+ + + ); +} diff --git a/apps/playground/src/pages/apis/transaction/basics/index.tsx b/apps/playground/src/pages/apis/transaction/basics/index.tsx index 3a92a582..dc0e7c3f 100644 --- a/apps/playground/src/pages/apis/transaction/basics/index.tsx +++ b/apps/playground/src/pages/apis/transaction/basics/index.tsx @@ -8,6 +8,7 @@ import { Intro } from "../common"; import TransactionBegin from "./begin"; import TransactionCip20 from "./cip20"; import TransactionCoinSelection from "./coin-selection"; +import TransactionGetTxbuilder from "./get-txbuilder"; import TransactionHandle from "./handle"; import TransactionMultisig from "./multisig"; import TransactionSendAssets from "./send-assets"; @@ -26,11 +27,13 @@ const ReactPage: NextPage = () => { { label: "Send value", to: "sendValue" }, { label: "Multi-signature", to: "multisig" }, - { label: "Send assets to Handle", to: "handler" }, - { label: "Send assets to Begin ID", to: "begin" }, - { label: "Coin selection", to: "coinSelection" }, + { label: "Get txbuilder", to: "getTxbuilder" }, + + { label: "ADA Handle", to: "handler" }, + { label: "Begin ID", to: "begin" }, + { label: "Set metadata", to: "metadata" }, { label: "Set transaction message", to: "cip20" }, @@ -69,10 +72,13 @@ const ReactPage: NextPage = () => { + + + + - diff --git a/apps/playground/src/pages/apis/transaction/minting/minting-one-signature.tsx b/apps/playground/src/pages/apis/transaction/minting/minting-one-signature.tsx index 3e5a5a29..11458474 100644 --- a/apps/playground/src/pages/apis/transaction/minting/minting-one-signature.tsx +++ b/apps/playground/src/pages/apis/transaction/minting/minting-one-signature.tsx @@ -102,8 +102,8 @@ function Right() { recipient: address, }; - // create transaction - const tx = new Transaction({ initiator: wallet }).setNetwork("preprod"); + const tx = new Transaction({ initiator: wallet }); + tx.setNetwork("preprod"); tx.mintAsset(forgingScript, asset); const unsignedTx = await tx.build(); diff --git a/apps/playground/src/pages/apis/utilities/resolvers/index.tsx b/apps/playground/src/pages/apis/utilities/resolvers/index.tsx index 7c19b894..f9ce53c9 100644 --- a/apps/playground/src/pages/apis/utilities/resolvers/index.tsx +++ b/apps/playground/src/pages/apis/utilities/resolvers/index.tsx @@ -13,6 +13,7 @@ import ResolvePaymentKeyHash from "./resolve-payment-key-hash"; import ResolvePlutusScriptAddress from "./resolve-plutus-script-address"; import ResolvePlutusScriptHash from "./resolve-plutus-script-hash"; import ResolvePrivateKey from "./resolve-private-key"; +import ResolveScriptHash from "./resolve-script-hash"; import ResolveSlotNumber from "./resolve-slot-number"; import ResolveRewardAddress from "./resolve-stake-address"; import ResolveRewardHash from "./resolve-stake-hash"; @@ -28,6 +29,7 @@ const ReactPage: NextPage = () => { { label: "Plutus Script Address", to: "resolvePlutusScriptAddress" }, { label: "Plutus Script Hash", to: "resolvePlutusScriptHash" }, { label: "Private Key", to: "resolvePrivateKey" }, + { label: "Script Hash", to: "resolveScriptHash" }, { label: "Stake Address", to: "resolveRewardAddress" }, { label: "Stake Key Hash", to: "resolveRewardHash" }, { label: "Transaction Hash", to: "resolveTxHash" }, @@ -55,6 +57,7 @@ const ReactPage: NextPage = () => { + diff --git a/apps/playground/src/pages/apis/utilities/resolvers/resolve-plutus-script-hash.tsx b/apps/playground/src/pages/apis/utilities/resolvers/resolve-plutus-script-hash.tsx index 4b14210e..b79dcaa4 100644 --- a/apps/playground/src/pages/apis/utilities/resolvers/resolve-plutus-script-hash.tsx +++ b/apps/playground/src/pages/apis/utilities/resolvers/resolve-plutus-script-hash.tsx @@ -22,9 +22,10 @@ function Left() { return ( <>

- Provide the Plutus script address, and resolveScriptHash{" "} - will return a script hash. This script hash can be use for building - minting transaction with Plutus contract. + Provide the Plutus script address, and{" "} + resolvePlutusScriptHash will return a script hash. This + script hash can be use for building minting transaction with Plutus + contract.

); @@ -36,8 +37,7 @@ function Right() { ); async function runDemo() { - const hash = resolvePlutusScriptHash(userInput); - return hash; + return resolvePlutusScriptHash(userInput); } let codeSnippet = `resolvePlutusScriptHash('${userInput}')`; diff --git a/apps/playground/src/pages/apis/utilities/resolvers/resolve-script-hash.tsx b/apps/playground/src/pages/apis/utilities/resolvers/resolve-script-hash.tsx new file mode 100644 index 00000000..a3e84d46 --- /dev/null +++ b/apps/playground/src/pages/apis/utilities/resolvers/resolve-script-hash.tsx @@ -0,0 +1,62 @@ +import { useState } from "react"; + +import { resolveScriptHash } from "@meshsdk/core"; + +import Input from "~/components/form/input"; +import InputTable from "~/components/sections/input-table"; +import LiveCodeDemo from "~/components/sections/live-code-demo"; +import TwoColumnsScroll from "~/components/sections/two-columns-scroll"; + +export default function ResolveScriptHash() { + return ( + + ); +} + +function Left() { + return ( + <> +

+ resolveScriptHash will return a script hash. For example, + this is useful when you want to convert a script to a policy ID. +

+ + ); +} + +function Right() { + const [userInput, setUserInput] = useState( + "8200581c5867c3b8e27840f556ac268b781578b14c5661fc63ee720dbeab663f", + ); + + async function runDemo() { + return resolveScriptHash(userInput); + } + + let codeSnippet = `resolveScriptHash('${userInput}')`; + + return ( + + setUserInput(e.target.value)} + label=" script address" + key={0} + />, + ]} + /> + + ); +} diff --git a/packages/mesh-common/package.json b/packages/mesh-common/package.json index f29dc276..8bcde54c 100644 --- a/packages/mesh-common/package.json +++ b/packages/mesh-common/package.json @@ -1,6 +1,6 @@ { "name": "@meshsdk/common", - "version": "1.7.1", + "version": "1.7.2", "description": "", "main": "./dist/index.cjs", "module": "./dist/index.js", diff --git a/packages/mesh-contract/package.json b/packages/mesh-contract/package.json index 8971ef90..ddef3309 100644 --- a/packages/mesh-contract/package.json +++ b/packages/mesh-contract/package.json @@ -1,6 +1,6 @@ { "name": "@meshsdk/contract", - "version": "1.7.1", + "version": "1.7.2", "description": "", "main": "./dist/index.cjs", "module": "./dist/index.js", @@ -33,11 +33,11 @@ "typescript": "^5.3.3" }, "dependencies": { - "@meshsdk/common": "1.7.1", - "@meshsdk/core": "1.7.1", - "@meshsdk/core-csl": "1.7.1", - "@meshsdk/core-cst": "1.7.1", - "@meshsdk/transaction": "1.7.1" + "@meshsdk/common": "1.7.2", + "@meshsdk/core": "1.7.2", + "@meshsdk/core-csl": "1.7.2", + "@meshsdk/core-cst": "1.7.2", + "@meshsdk/transaction": "1.7.2" }, "prettier": "@meshsdk/configs/prettier", "publishConfig": { diff --git a/packages/mesh-contract/src/escrow/offchain.ts b/packages/mesh-contract/src/escrow/offchain.ts index 8530ef32..f3309e57 100644 --- a/packages/mesh-contract/src/escrow/offchain.ts +++ b/packages/mesh-contract/src/escrow/offchain.ts @@ -5,11 +5,11 @@ import { conStr1, mConStr1, mConStr2, + MeshValue, PubKeyAddress, pubKeyAddress, Value, value, - MeshValue } from "@meshsdk/common"; import { Asset, @@ -68,6 +68,7 @@ export class MeshEscrowContract extends MeshTxInitiator { constructor(inputs: MeshTxInitiatorInput) { super(inputs); + this.mesh.setNetwork(inputs.networkId === 1 ? "mainnet" : "preprod"); } initiateEscrow = async (escrowAmount: Asset[]): Promise => { @@ -113,8 +114,11 @@ export class MeshEscrowContract extends MeshTxInitiator { const initiatorAddress = serializeAddressObj(initiatorAddressObj); const recipientAddress = serializeAddressObj(recipientAddressObj!); - const initiatorToReceive = MeshValue.fromValue(initiatorAmount).toAssets(); - const recipientToReceive = MeshValue.fromValue(recipientAmount!).toAssets(); + const initiatorToReceive = + MeshValue.fromValue(initiatorAmount).toAssets(); + const recipientToReceive = MeshValue.fromValue( + recipientAmount!, + ).toAssets(); this.mesh .txOut(initiatorAddress, initiatorToReceive) .txOut(recipientAddress, recipientToReceive); diff --git a/packages/mesh-contract/src/giftcard/offchain.ts b/packages/mesh-contract/src/giftcard/offchain.ts index 810e8cd1..50de3d35 100644 --- a/packages/mesh-contract/src/giftcard/offchain.ts +++ b/packages/mesh-contract/src/giftcard/offchain.ts @@ -57,6 +57,7 @@ export class MeshGiftCardContract extends MeshTxInitiator { if (paramUtxo) { this.paramUtxo = paramUtxo; } + this.mesh.setNetwork(inputs.networkId === 1 ? "mainnet" : "preprod"); } createGiftCard = async ( diff --git a/packages/mesh-contract/src/hello-world/offchain.ts b/packages/mesh-contract/src/hello-world/offchain.ts index 0932d417..a275194a 100644 --- a/packages/mesh-contract/src/hello-world/offchain.ts +++ b/packages/mesh-contract/src/hello-world/offchain.ts @@ -25,6 +25,7 @@ export class MeshHelloWorldContract extends MeshTxInitiator { constructor(inputs: MeshTxInitiatorInput) { super(inputs); + this.mesh.setNetwork(inputs.networkId === 1 ? "mainnet" : "preprod"); } getScript = () => { diff --git a/packages/mesh-contract/src/marketplace/offchain.ts b/packages/mesh-contract/src/marketplace/offchain.ts index 7b0a2b4d..85a01f2b 100644 --- a/packages/mesh-contract/src/marketplace/offchain.ts +++ b/packages/mesh-contract/src/marketplace/offchain.ts @@ -70,6 +70,7 @@ export class MeshMarketplaceContract extends MeshTxInitiator { ], "JSON", ); + this.mesh.setNetwork(inputs.networkId === 1 ? "mainnet" : "preprod"); } listAsset = async (asset: string, price: number) => { diff --git a/packages/mesh-contract/src/payment-splitter/offchain.ts b/packages/mesh-contract/src/payment-splitter/offchain.ts index 0ce03370..476f78bd 100644 --- a/packages/mesh-contract/src/payment-splitter/offchain.ts +++ b/packages/mesh-contract/src/payment-splitter/offchain.ts @@ -48,6 +48,8 @@ export class MeshPaymentSplitterContract extends MeshTxInitiator { "Wallet not provided. Therefore the payment address will not be added to the payees list which makes it impossible to trigger the payout.", ); } + + this.mesh.setNetwork(inputs.networkId === 1 ? "mainnet" : "preprod"); } sendLovelaceToSplitter = async (lovelaceAmount: number): Promise => { @@ -65,7 +67,7 @@ export class MeshPaymentSplitterContract extends MeshTxInitiator { const { address: scriptAddress } = serializePlutusScript( script, undefined, - 0, + this.networkId, ); const { pubKeyHash } = deserializeAddress(walletAddress); @@ -100,7 +102,7 @@ export class MeshPaymentSplitterContract extends MeshTxInitiator { const { address: scriptAddress } = serializePlutusScript( script, undefined, - 0, + this.networkId, ); const utxos = (await this.fetcher?.fetchAddressUTxOs(scriptAddress)) || []; const { pubKeyHash } = deserializeAddress(walletAddress); diff --git a/packages/mesh-contract/src/swap/offchain.ts b/packages/mesh-contract/src/swap/offchain.ts index 2544d09f..0d6c254b 100644 --- a/packages/mesh-contract/src/swap/offchain.ts +++ b/packages/mesh-contract/src/swap/offchain.ts @@ -35,8 +35,9 @@ export class MeshSwapContract extends MeshTxInitiator { this.scriptAddress = serializePlutusScript( { code: this.scriptCbor, version: "V2" }, undefined, - 0, + inputs.networkId, ).address; + this.mesh.setNetwork(inputs.networkId === 1 ? "mainnet" : "preprod"); } initiateSwap = async ( diff --git a/packages/mesh-contract/src/vesting/offchain.ts b/packages/mesh-contract/src/vesting/offchain.ts index c5ebe3c8..28d85c56 100644 --- a/packages/mesh-contract/src/vesting/offchain.ts +++ b/packages/mesh-contract/src/vesting/offchain.ts @@ -29,6 +29,7 @@ export class MeshVestingContract extends MeshTxInitiator { constructor(inputs: MeshTxInitiatorInput) { super(inputs); + this.mesh.setNetwork(inputs.networkId === 1 ? "mainnet" : "preprod"); } depositFund = async ( @@ -41,7 +42,7 @@ export class MeshVestingContract extends MeshTxInitiator { const scriptAddr = serializePlutusScript( { code: this.scriptCbor, version: "V2" }, undefined, - 0, + this.networkId, ).address; const { pubKeyHash: ownerPubKeyHash } = deserializeAddress(walletAddress); const { pubKeyHash: beneficiaryPubKeyHash } = @@ -69,7 +70,7 @@ export class MeshVestingContract extends MeshTxInitiator { const scriptAddr = serializePlutusScript( { code: this.scriptCbor, version: "V2" }, undefined, - 0, + this.networkId, ).address; const { pubKeyHash } = deserializeAddress(walletAddress); diff --git a/packages/mesh-core-csl/package.json b/packages/mesh-core-csl/package.json index 11e47014..c12da575 100644 --- a/packages/mesh-core-csl/package.json +++ b/packages/mesh-core-csl/package.json @@ -1,6 +1,6 @@ { "name": "@meshsdk/core-csl", - "version": "1.7.1", + "version": "1.7.2", "description": "", "main": "./dist/index.cjs", "module": "./dist/index.js", @@ -38,7 +38,7 @@ "typescript": "^5.3.3" }, "dependencies": { - "@meshsdk/common": "1.7.1", + "@meshsdk/common": "1.7.2", "@sidan-lab/sidan-csl-rs-browser": "0.8.0", "@sidan-lab/sidan-csl-rs-nodejs": "0.8.0", "json-bigint": "^1.0.0" diff --git a/packages/mesh-core-cst/package.json b/packages/mesh-core-cst/package.json index d9a3aee8..a2ef47a2 100644 --- a/packages/mesh-core-cst/package.json +++ b/packages/mesh-core-cst/package.json @@ -1,6 +1,6 @@ { "name": "@meshsdk/core-cst", - "version": "1.7.1", + "version": "1.7.2", "description": "", "main": "./dist/index.cjs", "module": "./dist/index.js", @@ -41,7 +41,7 @@ "@harmoniclabs/cbor": "1.3.0", "@harmoniclabs/plutus-data": "1.2.4", "@harmoniclabs/uplc": "1.2.4", - "@meshsdk/common": "1.7.1", + "@meshsdk/common": "1.7.2", "@stricahq/bip32ed25519": "^1.1.0", "@stricahq/cbors": "^1.0.0", "pbkdf2": "^3.1.2" diff --git a/packages/mesh-core/README.md b/packages/mesh-core/README.md index 9ff9d153..2b93ca0c 100644 --- a/packages/mesh-core/README.md +++ b/packages/mesh-core/README.md @@ -1,27 +1,31 @@
-![Mesh Logo](https://meshjs.dev/logo-mesh/mesh.png) + + + -
-

Mesh SDK

+

Mesh TypeScript SDK

-[![Licence](https://img.shields.io/github/license/meshjs/mesh)](https://github.com/meshjs/mesh/blob/master/LICENSE) -[![Build](https://github.com/meshjs/mesh/actions/workflows/build.yml/badge.svg)](https://github.com/meshjs/mesh/actions/workflows/build.yml) -[![Package](https://github.com/meshjs/mesh/actions/workflows/publish.yml/badge.svg)](https://github.com/meshjs/mesh/actions/workflows/publish.yml) + [![Licence](https://img.shields.io/github/license/meshjs/mesh)](https://github.com/meshjs/mesh/blob/master/LICENSE) + [![Build](https://github.com/meshjs/mesh/actions/workflows/build.yml/badge.svg)](https://github.com/meshjs/mesh/actions/workflows/build.yml) + [![Package](https://github.com/meshjs/mesh/actions/workflows/publish.yml/badge.svg)](https://github.com/meshjs/mesh/actions/workflows/publish.yml) -[![Twitter/X](https://img.shields.io/badge/Follow%20us-@MeshJS-blue?logo=x&style=for-the-badge)](https://x.com/meshsdk) -[![NPM](https://img.shields.io/npm/v/%40meshsdk%2Fcore?style=for-the-badge)](https://www.npmjs.com/package/@meshsdk/core) + [![Twitter/X](https://img.shields.io/badge/Follow%20us-@MeshJS-blue?logo=x&style=for-the-badge)](https://x.com/meshsdk) + [![NPM](https://img.shields.io/npm/v/%40meshsdk%2Fcore?style=for-the-badge)](https://www.npmjs.com/package/@meshsdk/core) + + All-in-one web3 SDK for Cardano apps -
+
+ Mesh is an open-source library designed to make building dApps accessible. Whether you're a beginner developer, startup, web3 market leader, or a large enterprise, Mesh makes web3 development easy with reliable, scalable, and well-engineered APIs & developer tools. Explore the features on [Mesh Playground](https://meshjs.dev/). ## What's inside? -This Turborepo includes the following packages/apps: +This repo includes the following packages/apps: ### Packages diff --git a/packages/mesh-core/package.json b/packages/mesh-core/package.json index d1230947..04edf735 100644 --- a/packages/mesh-core/package.json +++ b/packages/mesh-core/package.json @@ -1,6 +1,6 @@ { "name": "@meshsdk/core", - "version": "1.7.1", + "version": "1.7.2", "description": "", "main": "./dist/index.cjs", "module": "./dist/index.js", @@ -32,13 +32,13 @@ "typescript": "^5.3.3" }, "dependencies": { - "@meshsdk/common": "1.7.1", - "@meshsdk/core-csl": "1.7.1", - "@meshsdk/core-cst": "1.7.1", - "@meshsdk/provider": "1.7.1", - "@meshsdk/react": "1.7.1", - "@meshsdk/transaction": "1.7.1", - "@meshsdk/wallet": "1.7.1" + "@meshsdk/common": "1.7.2", + "@meshsdk/core-csl": "1.7.2", + "@meshsdk/core-cst": "1.7.2", + "@meshsdk/provider": "1.7.2", + "@meshsdk/react": "1.7.2", + "@meshsdk/transaction": "1.7.2", + "@meshsdk/wallet": "1.7.2" }, "prettier": "@meshsdk/configs/prettier", "publishConfig": { diff --git a/packages/mesh-provider/package.json b/packages/mesh-provider/package.json index 18b2d0e0..9452f5f9 100644 --- a/packages/mesh-provider/package.json +++ b/packages/mesh-provider/package.json @@ -1,6 +1,6 @@ { "name": "@meshsdk/provider", - "version": "1.7.1", + "version": "1.7.2", "description": "", "main": "./dist/index.cjs", "module": "./dist/index.js", @@ -33,8 +33,8 @@ "typescript": "^5.3.3" }, "dependencies": { - "@meshsdk/common": "1.7.1", - "@meshsdk/core-cst": "1.7.1", + "@meshsdk/common": "1.7.2", + "@meshsdk/core-cst": "1.7.2", "axios": "^1.7.2" }, "prettier": "@meshsdk/configs/prettier", diff --git a/packages/mesh-react/package.json b/packages/mesh-react/package.json index c9cfea36..67daff57 100644 --- a/packages/mesh-react/package.json +++ b/packages/mesh-react/package.json @@ -1,6 +1,6 @@ { "name": "@meshsdk/react", - "version": "1.7.1", + "version": "1.7.2", "description": "", "main": "./dist/index.cjs", "module": "./dist/index.js", @@ -29,9 +29,9 @@ }, "dependencies": { "react": "^18.2.0", - "@meshsdk/common": "1.7.1", - "@meshsdk/transaction": "1.7.1", - "@meshsdk/wallet": "1.7.1" + "@meshsdk/common": "1.7.2", + "@meshsdk/transaction": "1.7.2", + "@meshsdk/wallet": "1.7.2" }, "devDependencies": { "@meshsdk/configs": "*", diff --git a/packages/mesh-transaction/package.json b/packages/mesh-transaction/package.json index 2a29a40d..b0c42275 100644 --- a/packages/mesh-transaction/package.json +++ b/packages/mesh-transaction/package.json @@ -1,6 +1,6 @@ { "name": "@meshsdk/transaction", - "version": "1.7.1", + "version": "1.7.2", "description": "", "main": "./dist/index.cjs", "module": "./dist/index.js", @@ -34,9 +34,9 @@ "typescript": "^5.3.3" }, "dependencies": { - "@meshsdk/common": "1.7.1", - "@meshsdk/core-csl": "1.7.1", - "@meshsdk/core-cst": "1.7.1", + "@meshsdk/common": "1.7.2", + "@meshsdk/core-csl": "1.7.2", + "@meshsdk/core-cst": "1.7.2", "json-bigint": "^1.0.0" }, "prettier": "@meshsdk/configs/prettier", diff --git a/packages/mesh-wallet/package.json b/packages/mesh-wallet/package.json index fb7b478e..45b05494 100644 --- a/packages/mesh-wallet/package.json +++ b/packages/mesh-wallet/package.json @@ -1,6 +1,6 @@ { "name": "@meshsdk/wallet", - "version": "1.7.1", + "version": "1.7.2", "description": "", "main": "./dist/index.cjs", "module": "./dist/index.js", @@ -34,10 +34,10 @@ "typescript": "^5.3.3" }, "dependencies": { - "@meshsdk/common": "1.7.1", - "@meshsdk/core-csl": "1.7.1", - "@meshsdk/core-cst": "1.7.1", - "@meshsdk/transaction": "1.7.1", + "@meshsdk/common": "1.7.2", + "@meshsdk/core-csl": "1.7.2", + "@meshsdk/core-cst": "1.7.2", + "@meshsdk/transaction": "1.7.2", "@nufi/dapp-client-cardano": "^0.3.1", "@nufi/dapp-client-core": "^0.3.1" }, diff --git a/scripts/mesh-cli/package.json b/scripts/mesh-cli/package.json index f9dbbce0..4599d416 100644 --- a/scripts/mesh-cli/package.json +++ b/scripts/mesh-cli/package.json @@ -3,7 +3,7 @@ "description": "A quick and easy way to bootstrap your dApps on Cardano using Mesh.", "homepage": "https://meshjs.dev", "author": "MeshJS", - "version": "1.7.1", + "version": "1.7.2", "license": "Apache-2.0", "type": "module", "main": "./dist/index.cjs",