@campnetwork/origin 0.0.5 → 0.0.6
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/core.cjs +62 -62
- package/dist/core.d.ts +1 -5
- package/dist/core.esm.d.ts +1 -5
- package/dist/core.esm.js +68 -68
- package/dist/react/index.esm.d.ts +1 -5
- package/dist/react/index.esm.js +651 -528
- package/package.json +1 -1
|
@@ -43,11 +43,7 @@ type DataNFTSource = "spotify" | "twitter" | "tiktok" | "file";
|
|
|
43
43
|
* @param signature The signature for the minting operation.
|
|
44
44
|
* @returns A promise that resolves when the minting is complete.
|
|
45
45
|
*/
|
|
46
|
-
declare function mintWithSignature(this: Origin, to: Address, tokenId: bigint, hash: Hex, uri: string, licenseTerms: LicenseTerms, deadline: bigint, signature:
|
|
47
|
-
v: number;
|
|
48
|
-
r: Hex;
|
|
49
|
-
s: Hex;
|
|
50
|
-
}): Promise<any>;
|
|
46
|
+
declare function mintWithSignature(this: Origin, to: Address, tokenId: bigint, hash: Hex, uri: string, licenseTerms: LicenseTerms, deadline: bigint, signature: Hex): Promise<any>;
|
|
51
47
|
/**
|
|
52
48
|
* Registers a Data NFT with the Origin service in order to obtain a signature for minting.
|
|
53
49
|
* @param source The source of the Data NFT (e.g., "spotify", "twitter", "tiktok", or "file").
|