@meshsdk/contract 1.9.0-beta.55 → 1.9.0-beta.57
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/index.d.cts +2 -8
- package/dist/index.d.ts +2 -8
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -192,10 +192,7 @@ declare class MeshContentOwnershipContract extends MeshTxInitiator {
|
|
|
192
192
|
*/
|
|
193
193
|
mintOneTimeMintingPolicy: () => Promise<{
|
|
194
194
|
tx: string;
|
|
195
|
-
paramUtxo:
|
|
196
|
-
outputIndex: number;
|
|
197
|
-
txHash: string;
|
|
198
|
-
};
|
|
195
|
+
paramUtxo: _meshsdk_common.TxInput;
|
|
199
196
|
}>;
|
|
200
197
|
/**
|
|
201
198
|
* [Setup phase]
|
|
@@ -468,10 +465,7 @@ declare class MeshPlutusNFTContract extends MeshTxInitiator {
|
|
|
468
465
|
*/
|
|
469
466
|
setupOracle: (lovelacePrice: number) => Promise<{
|
|
470
467
|
tx: string;
|
|
471
|
-
paramUtxo:
|
|
472
|
-
outputIndex: number;
|
|
473
|
-
txHash: string;
|
|
474
|
-
};
|
|
468
|
+
paramUtxo: _meshsdk_common.TxInput;
|
|
475
469
|
}>;
|
|
476
470
|
/**
|
|
477
471
|
* Mint NFT token with an automatically incremented index, which increases by one for each newly minted NFT.
|
package/dist/index.d.ts
CHANGED
|
@@ -192,10 +192,7 @@ declare class MeshContentOwnershipContract extends MeshTxInitiator {
|
|
|
192
192
|
*/
|
|
193
193
|
mintOneTimeMintingPolicy: () => Promise<{
|
|
194
194
|
tx: string;
|
|
195
|
-
paramUtxo:
|
|
196
|
-
outputIndex: number;
|
|
197
|
-
txHash: string;
|
|
198
|
-
};
|
|
195
|
+
paramUtxo: _meshsdk_common.TxInput;
|
|
199
196
|
}>;
|
|
200
197
|
/**
|
|
201
198
|
* [Setup phase]
|
|
@@ -468,10 +465,7 @@ declare class MeshPlutusNFTContract extends MeshTxInitiator {
|
|
|
468
465
|
*/
|
|
469
466
|
setupOracle: (lovelacePrice: number) => Promise<{
|
|
470
467
|
tx: string;
|
|
471
|
-
paramUtxo:
|
|
472
|
-
outputIndex: number;
|
|
473
|
-
txHash: string;
|
|
474
|
-
};
|
|
468
|
+
paramUtxo: _meshsdk_common.TxInput;
|
|
475
469
|
}>;
|
|
476
470
|
/**
|
|
477
471
|
* Mint NFT token with an automatically incremented index, which increases by one for each newly minted NFT.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshsdk/contract",
|
|
3
|
-
"version": "1.9.0-beta.
|
|
3
|
+
"version": "1.9.0-beta.57",
|
|
4
4
|
"description": "List of open-source smart contracts, complete with documentation, live demos, and end-to-end source code. https://meshjs.dev/smart-contracts",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"browser": "./dist/index.js",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"typescript": "^5.3.3"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@meshsdk/common": "1.9.0-beta.
|
|
38
|
-
"@meshsdk/core": "1.9.0-beta.
|
|
37
|
+
"@meshsdk/common": "1.9.0-beta.57",
|
|
38
|
+
"@meshsdk/core": "1.9.0-beta.57"
|
|
39
39
|
},
|
|
40
40
|
"prettier": "@meshsdk/configs/prettier",
|
|
41
41
|
"publishConfig": {
|