@medialane/sdk 0.116.0 → 0.117.0
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.cjs +20 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +25 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +20 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -241,6 +241,31 @@ declare const SERVICES: {
|
|
|
241
241
|
readonly licenseDefault: "CC BY-SA";
|
|
242
242
|
};
|
|
243
243
|
};
|
|
244
|
+
readonly "ip-ticketing": {
|
|
245
|
+
readonly id: "ip-ticketing";
|
|
246
|
+
readonly displayName: "IP Ticketing";
|
|
247
|
+
readonly description: "Distribute verifiable on-chain tickets to a list of recipients in one run — everyone gets a wallet and their ticket.";
|
|
248
|
+
readonly standard: "ERC1155";
|
|
249
|
+
readonly provenance: "MEDIALANE";
|
|
250
|
+
readonly onchain: {
|
|
251
|
+
readonly STARKNET: {
|
|
252
|
+
readonly factoryAddress: `0x${string}`;
|
|
253
|
+
readonly classHash: `0x${string}`;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
readonly uiVariant: "ticket";
|
|
257
|
+
readonly capabilities: ["mint", "airdrop", "redeem", "list", "buy", "make_offer", "cancel", "transfer"];
|
|
258
|
+
readonly events: [{
|
|
259
|
+
readonly name: "CollectionDeployed";
|
|
260
|
+
readonly emittedBy: "factory";
|
|
261
|
+
}, {
|
|
262
|
+
readonly name: "TicketCreated";
|
|
263
|
+
readonly emittedBy: "instance";
|
|
264
|
+
}];
|
|
265
|
+
readonly metadataSchema: {
|
|
266
|
+
readonly licenseDefault: "CC BY-SA";
|
|
267
|
+
};
|
|
268
|
+
};
|
|
244
269
|
readonly "ip-club": {
|
|
245
270
|
readonly id: "ip-club";
|
|
246
271
|
readonly displayName: "IP Club";
|
package/dist/index.d.ts
CHANGED
|
@@ -241,6 +241,31 @@ declare const SERVICES: {
|
|
|
241
241
|
readonly licenseDefault: "CC BY-SA";
|
|
242
242
|
};
|
|
243
243
|
};
|
|
244
|
+
readonly "ip-ticketing": {
|
|
245
|
+
readonly id: "ip-ticketing";
|
|
246
|
+
readonly displayName: "IP Ticketing";
|
|
247
|
+
readonly description: "Distribute verifiable on-chain tickets to a list of recipients in one run — everyone gets a wallet and their ticket.";
|
|
248
|
+
readonly standard: "ERC1155";
|
|
249
|
+
readonly provenance: "MEDIALANE";
|
|
250
|
+
readonly onchain: {
|
|
251
|
+
readonly STARKNET: {
|
|
252
|
+
readonly factoryAddress: `0x${string}`;
|
|
253
|
+
readonly classHash: `0x${string}`;
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
readonly uiVariant: "ticket";
|
|
257
|
+
readonly capabilities: ["mint", "airdrop", "redeem", "list", "buy", "make_offer", "cancel", "transfer"];
|
|
258
|
+
readonly events: [{
|
|
259
|
+
readonly name: "CollectionDeployed";
|
|
260
|
+
readonly emittedBy: "factory";
|
|
261
|
+
}, {
|
|
262
|
+
readonly name: "TicketCreated";
|
|
263
|
+
readonly emittedBy: "instance";
|
|
264
|
+
}];
|
|
265
|
+
readonly metadataSchema: {
|
|
266
|
+
readonly licenseDefault: "CC BY-SA";
|
|
267
|
+
};
|
|
268
|
+
};
|
|
244
269
|
readonly "ip-club": {
|
|
245
270
|
readonly id: "ip-club";
|
|
246
271
|
readonly displayName: "IP Club";
|
package/dist/index.js
CHANGED
|
@@ -1103,6 +1103,26 @@ var SERVICES = {
|
|
|
1103
1103
|
],
|
|
1104
1104
|
metadataSchema: { licenseDefault: "CC BY-SA" }
|
|
1105
1105
|
},
|
|
1106
|
+
"ip-ticketing": {
|
|
1107
|
+
id: "ip-ticketing",
|
|
1108
|
+
displayName: "IP Ticketing",
|
|
1109
|
+
description: "Distribute verifiable on-chain tickets to a list of recipients in one run \u2014 everyone gets a wallet and their ticket.",
|
|
1110
|
+
standard: "ERC1155",
|
|
1111
|
+
provenance: "MEDIALANE",
|
|
1112
|
+
onchain: {
|
|
1113
|
+
STARKNET: {
|
|
1114
|
+
factoryAddress: SN2.ipTicketsFactory,
|
|
1115
|
+
classHash: SN2.ipTicketCollectionClassHash
|
|
1116
|
+
}
|
|
1117
|
+
},
|
|
1118
|
+
uiVariant: "ticket",
|
|
1119
|
+
capabilities: ["mint", "airdrop", "redeem", "list", "buy", "make_offer", "cancel", "transfer"],
|
|
1120
|
+
events: [
|
|
1121
|
+
{ name: "CollectionDeployed", emittedBy: "factory" },
|
|
1122
|
+
{ name: "TicketCreated", emittedBy: "instance" }
|
|
1123
|
+
],
|
|
1124
|
+
metadataSchema: { licenseDefault: "CC BY-SA" }
|
|
1125
|
+
},
|
|
1106
1126
|
"ip-club": {
|
|
1107
1127
|
id: "ip-club",
|
|
1108
1128
|
displayName: "IP Club",
|