@medialane/sdk 0.53.0 → 0.54.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 +8632 -8585
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +252 -321
- package/dist/index.d.ts +252 -321
- package/dist/index.js +8616 -8551
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -37,9 +37,9 @@ interface ChainCoordinates {
|
|
|
37
37
|
ipTicketsFactoryClassHash?: `0x${string}`;
|
|
38
38
|
ipTicketCollectionClassHash?: `0x${string}`;
|
|
39
39
|
ipTicketsStartBlock?: number;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
ipClubFactory?: `0x${string}`;
|
|
41
|
+
ipClubFactoryClassHash?: `0x${string}`;
|
|
42
|
+
ipClubCollectionClassHash?: `0x${string}`;
|
|
43
43
|
ipClubStartBlock?: number;
|
|
44
44
|
ipSponsorship?: `0x${string}`;
|
|
45
45
|
ipSponsorshipClassHash?: `0x${string}`;
|
|
@@ -1520,13 +1520,29 @@ interface CreateTicketCollectionParams {
|
|
|
1520
1520
|
/** ipfs:// or ar:// only — enforced on-chain. */
|
|
1521
1521
|
metadataUri: string;
|
|
1522
1522
|
}
|
|
1523
|
-
interface
|
|
1523
|
+
interface DeployClubParams {
|
|
1524
1524
|
name: string;
|
|
1525
1525
|
symbol: string;
|
|
1526
1526
|
/** ipfs:// or ar:// only — enforced on-chain. */
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1527
|
+
baseUri: string;
|
|
1528
|
+
/** Hard cap on membership supply. Defaults to max u64 (unlimited). */
|
|
1529
|
+
maxSupply?: bigint | string;
|
|
1530
|
+
/** Entry fee in payment_token base units. Omit for a free club. */
|
|
1531
|
+
entryFee?: bigint | string;
|
|
1532
|
+
/** Required when entryFee > 0. */
|
|
1533
|
+
paymentToken?: string;
|
|
1534
|
+
/** EIP-2981 royalty in basis points (0–10000). */
|
|
1535
|
+
royaltyBps?: bigint | string;
|
|
1536
|
+
}
|
|
1537
|
+
interface SetOpenParams {
|
|
1538
|
+
collectionAddress: string;
|
|
1539
|
+
open: boolean;
|
|
1540
|
+
}
|
|
1541
|
+
interface MintMembershipParams {
|
|
1542
|
+
collectionAddress: string;
|
|
1543
|
+
/** Recipient of the membership NFT. Defaults to the executing account address. */
|
|
1544
|
+
to?: string;
|
|
1545
|
+
/** Entry fee in payment_token base units — supply to trigger an ERC-20 approve. */
|
|
1530
1546
|
entryFee?: bigint | string;
|
|
1531
1547
|
paymentToken?: string;
|
|
1532
1548
|
}
|
|
@@ -1871,32 +1887,17 @@ declare class TicketService {
|
|
|
1871
1887
|
}
|
|
1872
1888
|
|
|
1873
1889
|
declare class ClubService {
|
|
1874
|
-
private readonly
|
|
1890
|
+
private readonly factoryAddress?;
|
|
1875
1891
|
constructor(config: ResolvedConfig);
|
|
1876
|
-
private
|
|
1877
|
-
/**
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
}): Promise<TxResult>;
|
|
1881
|
-
/** Reversible — gates new joins only; existing members are never affected. */
|
|
1882
|
-
setClubOpen(account: AccountInterface, params: {
|
|
1883
|
-
clubId: bigint | string;
|
|
1884
|
-
open: boolean;
|
|
1885
|
-
registryAddress?: string;
|
|
1886
|
-
}): Promise<TxResult>;
|
|
1887
|
-
/** Prepends an ERC-20 approve when the club has an entry fee. */
|
|
1888
|
-
joinClub(account: AccountInterface, params: {
|
|
1889
|
-
clubId: bigint | string;
|
|
1890
|
-
entryFee?: bigint | string;
|
|
1891
|
-
paymentToken?: string;
|
|
1892
|
-
registryAddress?: string;
|
|
1893
|
-
}): Promise<TxResult>;
|
|
1894
|
-
/** Always allowed, open or closed. No fee refund. Burns the caller's membership NFT. */
|
|
1895
|
-
leaveClub(account: AccountInterface, params: {
|
|
1896
|
-
clubId: bigint | string;
|
|
1897
|
-
tokenId: bigint | string;
|
|
1898
|
-
registryAddress?: string;
|
|
1892
|
+
private _factory;
|
|
1893
|
+
/** Deploy a new per-creator membership ERC-721 collection via the factory. */
|
|
1894
|
+
deployClub(account: AccountInterface, params: DeployClubParams & {
|
|
1895
|
+
factoryAddress?: string;
|
|
1899
1896
|
}): Promise<TxResult>;
|
|
1897
|
+
/** Owner-only — pause or resume new mints on a club collection. */
|
|
1898
|
+
setOpen(account: AccountInterface, params: SetOpenParams): Promise<TxResult>;
|
|
1899
|
+
/** Public mint — caller pays entry fee (if any) and receives the membership NFT. */
|
|
1900
|
+
mintMembership(account: AccountInterface, params: MintMembershipParams): Promise<TxResult>;
|
|
1900
1901
|
}
|
|
1901
1902
|
|
|
1902
1903
|
declare class SponsorshipService {
|
|
@@ -2155,8 +2156,8 @@ declare const STARKNET_DROP_COLLECTION_CLASS_HASH: `0x${string}`;
|
|
|
2155
2156
|
declare const STARKNET_NFTCOMMENTS_CONTRACT: `0x${string}`;
|
|
2156
2157
|
declare const STARKNET_IP_TICKETS_FACTORY_CONTRACT: `0x${string}`;
|
|
2157
2158
|
declare const STARKNET_IP_TICKET_COLLECTION_CLASS_HASH: `0x${string}`;
|
|
2158
|
-
declare const
|
|
2159
|
-
declare const
|
|
2159
|
+
declare const STARKNET_IP_CLUB_FACTORY_CONTRACT: `0x${string}`;
|
|
2160
|
+
declare const STARKNET_IP_CLUB_COLLECTION_CLASS_HASH: `0x${string}`;
|
|
2160
2161
|
declare const STARKNET_IP_SPONSORSHIP_CONTRACT: `0x${string}`;
|
|
2161
2162
|
declare const STARKNET_IP_SPONSORSHIP_LICENSE_CONTRACT: `0x${string}`;
|
|
2162
2163
|
declare const STARKNET_CREATOR_COIN_FACTORY_CONTRACT: `0x${string}`;
|
|
@@ -7060,10 +7061,10 @@ declare const IPTicketCollectionFactoryABI: readonly [{
|
|
|
7060
7061
|
}];
|
|
7061
7062
|
}];
|
|
7062
7063
|
|
|
7063
|
-
declare const
|
|
7064
|
+
declare const IPClubFactoryABI: readonly [{
|
|
7064
7065
|
readonly type: "impl";
|
|
7065
|
-
readonly name: "
|
|
7066
|
-
readonly interface_name: "ip_club::
|
|
7066
|
+
readonly name: "IPClubFactoryImpl";
|
|
7067
|
+
readonly interface_name: "ip_club::interface::IIPClubFactory";
|
|
7067
7068
|
}, {
|
|
7068
7069
|
readonly type: "struct";
|
|
7069
7070
|
readonly name: "core::byte_array::ByteArray";
|
|
@@ -7077,16 +7078,6 @@ declare const IPClubABI: readonly [{
|
|
|
7077
7078
|
readonly name: "pending_word_len";
|
|
7078
7079
|
readonly type: "core::internal::bounded_int::BoundedInt::<0, 30>";
|
|
7079
7080
|
}];
|
|
7080
|
-
}, {
|
|
7081
|
-
readonly type: "enum";
|
|
7082
|
-
readonly name: "core::option::Option::<core::integer::u32>";
|
|
7083
|
-
readonly variants: readonly [{
|
|
7084
|
-
readonly name: "Some";
|
|
7085
|
-
readonly type: "core::integer::u32";
|
|
7086
|
-
}, {
|
|
7087
|
-
readonly name: "None";
|
|
7088
|
-
readonly type: "()";
|
|
7089
|
-
}];
|
|
7090
7081
|
}, {
|
|
7091
7082
|
readonly type: "struct";
|
|
7092
7083
|
readonly name: "core::integer::u256";
|
|
@@ -7097,16 +7088,6 @@ declare const IPClubABI: readonly [{
|
|
|
7097
7088
|
readonly name: "high";
|
|
7098
7089
|
readonly type: "core::integer::u128";
|
|
7099
7090
|
}];
|
|
7100
|
-
}, {
|
|
7101
|
-
readonly type: "enum";
|
|
7102
|
-
readonly name: "core::option::Option::<core::integer::u256>";
|
|
7103
|
-
readonly variants: readonly [{
|
|
7104
|
-
readonly name: "Some";
|
|
7105
|
-
readonly type: "core::integer::u256";
|
|
7106
|
-
}, {
|
|
7107
|
-
readonly name: "None";
|
|
7108
|
-
readonly type: "()";
|
|
7109
|
-
}];
|
|
7110
7091
|
}, {
|
|
7111
7092
|
readonly type: "enum";
|
|
7112
7093
|
readonly name: "core::option::Option::<core::starknet::contract_address::ContractAddress>";
|
|
@@ -7117,63 +7098,28 @@ declare const IPClubABI: readonly [{
|
|
|
7117
7098
|
readonly name: "None";
|
|
7118
7099
|
readonly type: "()";
|
|
7119
7100
|
}];
|
|
7120
|
-
}, {
|
|
7121
|
-
readonly type: "enum";
|
|
7122
|
-
readonly name: "core::option::Option::<core::integer::u64>";
|
|
7123
|
-
readonly variants: readonly [{
|
|
7124
|
-
readonly name: "Some";
|
|
7125
|
-
readonly type: "core::integer::u64";
|
|
7126
|
-
}, {
|
|
7127
|
-
readonly name: "None";
|
|
7128
|
-
readonly type: "()";
|
|
7129
|
-
}];
|
|
7130
|
-
}, {
|
|
7131
|
-
readonly type: "enum";
|
|
7132
|
-
readonly name: "core::bool";
|
|
7133
|
-
readonly variants: readonly [{
|
|
7134
|
-
readonly name: "False";
|
|
7135
|
-
readonly type: "()";
|
|
7136
|
-
}, {
|
|
7137
|
-
readonly name: "True";
|
|
7138
|
-
readonly type: "()";
|
|
7139
|
-
}];
|
|
7140
|
-
}, {
|
|
7141
|
-
readonly type: "struct";
|
|
7142
|
-
readonly name: "ip_club::types::ClubRecord";
|
|
7143
|
-
readonly members: readonly [{
|
|
7144
|
-
readonly name: "creator";
|
|
7145
|
-
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7146
|
-
}, {
|
|
7147
|
-
readonly name: "club_nft";
|
|
7148
|
-
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7149
|
-
}, {
|
|
7150
|
-
readonly name: "open";
|
|
7151
|
-
readonly type: "core::bool";
|
|
7152
|
-
}, {
|
|
7153
|
-
readonly name: "num_members";
|
|
7154
|
-
readonly type: "core::integer::u32";
|
|
7155
|
-
}, {
|
|
7156
|
-
readonly name: "max_members";
|
|
7157
|
-
readonly type: "core::option::Option::<core::integer::u32>";
|
|
7158
|
-
}, {
|
|
7159
|
-
readonly name: "entry_fee";
|
|
7160
|
-
readonly type: "core::option::Option::<core::integer::u256>";
|
|
7161
|
-
}, {
|
|
7162
|
-
readonly name: "payment_token";
|
|
7163
|
-
readonly type: "core::option::Option::<core::starknet::contract_address::ContractAddress>";
|
|
7164
|
-
}, {
|
|
7165
|
-
readonly name: "transfer_lock";
|
|
7166
|
-
readonly type: "core::option::Option::<core::integer::u64>";
|
|
7167
|
-
}, {
|
|
7168
|
-
readonly name: "royalty_bps";
|
|
7169
|
-
readonly type: "core::integer::u256";
|
|
7170
|
-
}];
|
|
7171
7101
|
}, {
|
|
7172
7102
|
readonly type: "interface";
|
|
7173
|
-
readonly name: "ip_club::
|
|
7103
|
+
readonly name: "ip_club::interface::IIPClubFactory";
|
|
7174
7104
|
readonly items: readonly [{
|
|
7175
7105
|
readonly type: "function";
|
|
7176
|
-
readonly name: "
|
|
7106
|
+
readonly name: "collection_class_hash";
|
|
7107
|
+
readonly inputs: readonly [];
|
|
7108
|
+
readonly outputs: readonly [{
|
|
7109
|
+
readonly type: "core::starknet::class_hash::ClassHash";
|
|
7110
|
+
}];
|
|
7111
|
+
readonly state_mutability: "view";
|
|
7112
|
+
}, {
|
|
7113
|
+
readonly type: "function";
|
|
7114
|
+
readonly name: "version";
|
|
7115
|
+
readonly inputs: readonly [];
|
|
7116
|
+
readonly outputs: readonly [{
|
|
7117
|
+
readonly type: "core::byte_array::ByteArray";
|
|
7118
|
+
}];
|
|
7119
|
+
readonly state_mutability: "view";
|
|
7120
|
+
}, {
|
|
7121
|
+
readonly type: "function";
|
|
7122
|
+
readonly name: "deploy_club";
|
|
7177
7123
|
readonly inputs: readonly [{
|
|
7178
7124
|
readonly name: "name";
|
|
7179
7125
|
readonly type: "core::byte_array::ByteArray";
|
|
@@ -7181,107 +7127,40 @@ declare const IPClubABI: readonly [{
|
|
|
7181
7127
|
readonly name: "symbol";
|
|
7182
7128
|
readonly type: "core::byte_array::ByteArray";
|
|
7183
7129
|
}, {
|
|
7184
|
-
readonly name: "
|
|
7130
|
+
readonly name: "base_uri";
|
|
7185
7131
|
readonly type: "core::byte_array::ByteArray";
|
|
7186
7132
|
}, {
|
|
7187
|
-
readonly name: "
|
|
7188
|
-
readonly type: "core::
|
|
7133
|
+
readonly name: "max_supply";
|
|
7134
|
+
readonly type: "core::integer::u256";
|
|
7189
7135
|
}, {
|
|
7190
7136
|
readonly name: "entry_fee";
|
|
7191
|
-
readonly type: "core::
|
|
7137
|
+
readonly type: "core::integer::u256";
|
|
7192
7138
|
}, {
|
|
7193
7139
|
readonly name: "payment_token";
|
|
7194
7140
|
readonly type: "core::option::Option::<core::starknet::contract_address::ContractAddress>";
|
|
7195
|
-
}, {
|
|
7196
|
-
readonly name: "transfer_lock";
|
|
7197
|
-
readonly type: "core::option::Option::<core::integer::u64>";
|
|
7198
7141
|
}, {
|
|
7199
7142
|
readonly name: "royalty_bps";
|
|
7200
7143
|
readonly type: "core::integer::u256";
|
|
7201
7144
|
}];
|
|
7202
7145
|
readonly outputs: readonly [{
|
|
7203
|
-
readonly type: "core::integer::u256";
|
|
7204
|
-
}];
|
|
7205
|
-
readonly state_mutability: "external";
|
|
7206
|
-
}, {
|
|
7207
|
-
readonly type: "function";
|
|
7208
|
-
readonly name: "set_club_open";
|
|
7209
|
-
readonly inputs: readonly [{
|
|
7210
|
-
readonly name: "club_id";
|
|
7211
|
-
readonly type: "core::integer::u256";
|
|
7212
|
-
}, {
|
|
7213
|
-
readonly name: "open";
|
|
7214
|
-
readonly type: "core::bool";
|
|
7215
|
-
}];
|
|
7216
|
-
readonly outputs: readonly [];
|
|
7217
|
-
readonly state_mutability: "external";
|
|
7218
|
-
}, {
|
|
7219
|
-
readonly type: "function";
|
|
7220
|
-
readonly name: "join_club";
|
|
7221
|
-
readonly inputs: readonly [{
|
|
7222
|
-
readonly name: "club_id";
|
|
7223
|
-
readonly type: "core::integer::u256";
|
|
7224
|
-
}];
|
|
7225
|
-
readonly outputs: readonly [];
|
|
7226
|
-
readonly state_mutability: "external";
|
|
7227
|
-
}, {
|
|
7228
|
-
readonly type: "function";
|
|
7229
|
-
readonly name: "leave_club";
|
|
7230
|
-
readonly inputs: readonly [{
|
|
7231
|
-
readonly name: "club_id";
|
|
7232
|
-
readonly type: "core::integer::u256";
|
|
7233
|
-
}, {
|
|
7234
|
-
readonly name: "token_id";
|
|
7235
|
-
readonly type: "core::integer::u256";
|
|
7236
|
-
}];
|
|
7237
|
-
readonly outputs: readonly [];
|
|
7238
|
-
readonly state_mutability: "external";
|
|
7239
|
-
}, {
|
|
7240
|
-
readonly type: "function";
|
|
7241
|
-
readonly name: "get_club_record";
|
|
7242
|
-
readonly inputs: readonly [{
|
|
7243
|
-
readonly name: "club_id";
|
|
7244
|
-
readonly type: "core::integer::u256";
|
|
7245
|
-
}];
|
|
7246
|
-
readonly outputs: readonly [{
|
|
7247
|
-
readonly type: "ip_club::types::ClubRecord";
|
|
7248
|
-
}];
|
|
7249
|
-
readonly state_mutability: "view";
|
|
7250
|
-
}, {
|
|
7251
|
-
readonly type: "function";
|
|
7252
|
-
readonly name: "is_member";
|
|
7253
|
-
readonly inputs: readonly [{
|
|
7254
|
-
readonly name: "club_id";
|
|
7255
|
-
readonly type: "core::integer::u256";
|
|
7256
|
-
}, {
|
|
7257
|
-
readonly name: "user";
|
|
7258
7146
|
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7259
7147
|
}];
|
|
7260
|
-
readonly
|
|
7261
|
-
readonly type: "core::bool";
|
|
7262
|
-
}];
|
|
7263
|
-
readonly state_mutability: "view";
|
|
7264
|
-
}, {
|
|
7265
|
-
readonly type: "function";
|
|
7266
|
-
readonly name: "get_last_club_id";
|
|
7267
|
-
readonly inputs: readonly [];
|
|
7268
|
-
readonly outputs: readonly [{
|
|
7269
|
-
readonly type: "core::integer::u256";
|
|
7270
|
-
}];
|
|
7271
|
-
readonly state_mutability: "view";
|
|
7272
|
-
}, {
|
|
7273
|
-
readonly type: "function";
|
|
7274
|
-
readonly name: "version";
|
|
7275
|
-
readonly inputs: readonly [];
|
|
7276
|
-
readonly outputs: readonly [{
|
|
7277
|
-
readonly type: "core::byte_array::ByteArray";
|
|
7278
|
-
}];
|
|
7279
|
-
readonly state_mutability: "view";
|
|
7148
|
+
readonly state_mutability: "external";
|
|
7280
7149
|
}];
|
|
7281
7150
|
}, {
|
|
7282
7151
|
readonly type: "impl";
|
|
7283
7152
|
readonly name: "SRC5Impl";
|
|
7284
7153
|
readonly interface_name: "openzeppelin_introspection::interface::ISRC5";
|
|
7154
|
+
}, {
|
|
7155
|
+
readonly type: "enum";
|
|
7156
|
+
readonly name: "core::bool";
|
|
7157
|
+
readonly variants: readonly [{
|
|
7158
|
+
readonly name: "False";
|
|
7159
|
+
readonly type: "()";
|
|
7160
|
+
}, {
|
|
7161
|
+
readonly name: "True";
|
|
7162
|
+
readonly type: "()";
|
|
7163
|
+
}];
|
|
7285
7164
|
}, {
|
|
7286
7165
|
readonly type: "interface";
|
|
7287
7166
|
readonly name: "openzeppelin_introspection::interface::ISRC5";
|
|
@@ -7301,7 +7180,7 @@ declare const IPClubABI: readonly [{
|
|
|
7301
7180
|
readonly type: "constructor";
|
|
7302
7181
|
readonly name: "constructor";
|
|
7303
7182
|
readonly inputs: readonly [{
|
|
7304
|
-
readonly name: "
|
|
7183
|
+
readonly name: "collection_class_hash";
|
|
7305
7184
|
readonly type: "core::starknet::class_hash::ClassHash";
|
|
7306
7185
|
}];
|
|
7307
7186
|
}, {
|
|
@@ -7311,116 +7190,41 @@ declare const IPClubABI: readonly [{
|
|
|
7311
7190
|
readonly variants: readonly [];
|
|
7312
7191
|
}, {
|
|
7313
7192
|
readonly type: "event";
|
|
7314
|
-
readonly name: "ip_club::
|
|
7193
|
+
readonly name: "ip_club::IPClubFactory::IPClubFactory::ClubDeployed";
|
|
7315
7194
|
readonly kind: "struct";
|
|
7316
7195
|
readonly members: readonly [{
|
|
7317
|
-
readonly name: "
|
|
7318
|
-
readonly type: "core::integer::u256";
|
|
7319
|
-
readonly kind: "key";
|
|
7320
|
-
}, {
|
|
7321
|
-
readonly name: "creator";
|
|
7196
|
+
readonly name: "collection_address";
|
|
7322
7197
|
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7323
7198
|
readonly kind: "key";
|
|
7324
7199
|
}, {
|
|
7325
|
-
readonly name: "
|
|
7326
|
-
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7327
|
-
readonly kind: "data";
|
|
7328
|
-
}, {
|
|
7329
|
-
readonly name: "metadata_uri";
|
|
7330
|
-
readonly type: "core::byte_array::ByteArray";
|
|
7331
|
-
readonly kind: "data";
|
|
7332
|
-
}, {
|
|
7333
|
-
readonly name: "transfer_lock";
|
|
7334
|
-
readonly type: "core::option::Option::<core::integer::u64>";
|
|
7335
|
-
readonly kind: "data";
|
|
7336
|
-
}, {
|
|
7337
|
-
readonly name: "royalty_bps";
|
|
7338
|
-
readonly type: "core::integer::u256";
|
|
7339
|
-
readonly kind: "data";
|
|
7340
|
-
}, {
|
|
7341
|
-
readonly name: "timestamp";
|
|
7342
|
-
readonly type: "core::integer::u64";
|
|
7343
|
-
readonly kind: "data";
|
|
7344
|
-
}];
|
|
7345
|
-
}, {
|
|
7346
|
-
readonly type: "event";
|
|
7347
|
-
readonly name: "ip_club::events::ClubStatusUpdated";
|
|
7348
|
-
readonly kind: "struct";
|
|
7349
|
-
readonly members: readonly [{
|
|
7350
|
-
readonly name: "club_id";
|
|
7351
|
-
readonly type: "core::integer::u256";
|
|
7352
|
-
readonly kind: "key";
|
|
7353
|
-
}, {
|
|
7354
|
-
readonly name: "open";
|
|
7355
|
-
readonly type: "core::bool";
|
|
7356
|
-
readonly kind: "data";
|
|
7357
|
-
}, {
|
|
7358
|
-
readonly name: "timestamp";
|
|
7359
|
-
readonly type: "core::integer::u64";
|
|
7360
|
-
readonly kind: "data";
|
|
7361
|
-
}];
|
|
7362
|
-
}, {
|
|
7363
|
-
readonly type: "event";
|
|
7364
|
-
readonly name: "ip_club::events::NewMember";
|
|
7365
|
-
readonly kind: "struct";
|
|
7366
|
-
readonly members: readonly [{
|
|
7367
|
-
readonly name: "club_id";
|
|
7368
|
-
readonly type: "core::integer::u256";
|
|
7369
|
-
readonly kind: "key";
|
|
7370
|
-
}, {
|
|
7371
|
-
readonly name: "member";
|
|
7200
|
+
readonly name: "owner";
|
|
7372
7201
|
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7373
7202
|
readonly kind: "key";
|
|
7374
7203
|
}, {
|
|
7375
|
-
readonly name: "
|
|
7376
|
-
readonly type: "core::
|
|
7204
|
+
readonly name: "name";
|
|
7205
|
+
readonly type: "core::byte_array::ByteArray";
|
|
7377
7206
|
readonly kind: "data";
|
|
7378
|
-
}];
|
|
7379
|
-
}, {
|
|
7380
|
-
readonly type: "event";
|
|
7381
|
-
readonly name: "ip_club::events::MemberLeft";
|
|
7382
|
-
readonly kind: "struct";
|
|
7383
|
-
readonly members: readonly [{
|
|
7384
|
-
readonly name: "club_id";
|
|
7385
|
-
readonly type: "core::integer::u256";
|
|
7386
|
-
readonly kind: "key";
|
|
7387
7207
|
}, {
|
|
7388
|
-
readonly name: "
|
|
7389
|
-
readonly type: "core::
|
|
7390
|
-
readonly kind: "key";
|
|
7391
|
-
}, {
|
|
7392
|
-
readonly name: "timestamp";
|
|
7393
|
-
readonly type: "core::integer::u64";
|
|
7208
|
+
readonly name: "symbol";
|
|
7209
|
+
readonly type: "core::byte_array::ByteArray";
|
|
7394
7210
|
readonly kind: "data";
|
|
7395
7211
|
}];
|
|
7396
7212
|
}, {
|
|
7397
7213
|
readonly type: "event";
|
|
7398
|
-
readonly name: "ip_club::
|
|
7214
|
+
readonly name: "ip_club::IPClubFactory::IPClubFactory::Event";
|
|
7399
7215
|
readonly kind: "enum";
|
|
7400
7216
|
readonly variants: readonly [{
|
|
7401
7217
|
readonly name: "SRC5Event";
|
|
7402
7218
|
readonly type: "openzeppelin_introspection::src5::SRC5Component::Event";
|
|
7403
7219
|
readonly kind: "flat";
|
|
7404
7220
|
}, {
|
|
7405
|
-
readonly name: "
|
|
7406
|
-
readonly type: "ip_club::
|
|
7407
|
-
readonly kind: "nested";
|
|
7408
|
-
}, {
|
|
7409
|
-
readonly name: "ClubStatusUpdated";
|
|
7410
|
-
readonly type: "ip_club::events::ClubStatusUpdated";
|
|
7411
|
-
readonly kind: "nested";
|
|
7412
|
-
}, {
|
|
7413
|
-
readonly name: "NewMember";
|
|
7414
|
-
readonly type: "ip_club::events::NewMember";
|
|
7415
|
-
readonly kind: "nested";
|
|
7416
|
-
}, {
|
|
7417
|
-
readonly name: "MemberLeft";
|
|
7418
|
-
readonly type: "ip_club::events::MemberLeft";
|
|
7221
|
+
readonly name: "ClubDeployed";
|
|
7222
|
+
readonly type: "ip_club::IPClubFactory::IPClubFactory::ClubDeployed";
|
|
7419
7223
|
readonly kind: "nested";
|
|
7420
7224
|
}];
|
|
7421
7225
|
}];
|
|
7422
7226
|
|
|
7423
|
-
declare const
|
|
7227
|
+
declare const IPClubCollectionABI: readonly [{
|
|
7424
7228
|
readonly type: "impl";
|
|
7425
7229
|
readonly name: "ERC721MetadataImpl";
|
|
7426
7230
|
readonly interface_name: "openzeppelin_token::erc721::interface::IERC721Metadata";
|
|
@@ -7499,8 +7303,8 @@ declare const IPClubNFTABI: readonly [{
|
|
|
7499
7303
|
}];
|
|
7500
7304
|
}, {
|
|
7501
7305
|
readonly type: "impl";
|
|
7502
|
-
readonly name: "
|
|
7503
|
-
readonly interface_name: "ip_club::
|
|
7306
|
+
readonly name: "IPClubCollectionImpl";
|
|
7307
|
+
readonly interface_name: "ip_club::interface::IIPClubCollection";
|
|
7504
7308
|
}, {
|
|
7505
7309
|
readonly type: "enum";
|
|
7506
7310
|
readonly name: "core::bool";
|
|
@@ -7511,60 +7315,66 @@ declare const IPClubNFTABI: readonly [{
|
|
|
7511
7315
|
readonly name: "True";
|
|
7512
7316
|
readonly type: "()";
|
|
7513
7317
|
}];
|
|
7318
|
+
}, {
|
|
7319
|
+
readonly type: "enum";
|
|
7320
|
+
readonly name: "core::option::Option::<core::starknet::contract_address::ContractAddress>";
|
|
7321
|
+
readonly variants: readonly [{
|
|
7322
|
+
readonly name: "Some";
|
|
7323
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7324
|
+
}, {
|
|
7325
|
+
readonly name: "None";
|
|
7326
|
+
readonly type: "()";
|
|
7327
|
+
}];
|
|
7514
7328
|
}, {
|
|
7515
7329
|
readonly type: "interface";
|
|
7516
|
-
readonly name: "ip_club::
|
|
7330
|
+
readonly name: "ip_club::interface::IIPClubCollection";
|
|
7517
7331
|
readonly items: readonly [{
|
|
7518
7332
|
readonly type: "function";
|
|
7519
7333
|
readonly name: "mint";
|
|
7520
7334
|
readonly inputs: readonly [{
|
|
7521
|
-
readonly name: "
|
|
7335
|
+
readonly name: "to";
|
|
7522
7336
|
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7523
7337
|
}];
|
|
7524
|
-
readonly outputs: readonly [
|
|
7338
|
+
readonly outputs: readonly [{
|
|
7339
|
+
readonly type: "core::integer::u256";
|
|
7340
|
+
}];
|
|
7525
7341
|
readonly state_mutability: "external";
|
|
7526
7342
|
}, {
|
|
7527
7343
|
readonly type: "function";
|
|
7528
|
-
readonly name: "
|
|
7344
|
+
readonly name: "set_open";
|
|
7529
7345
|
readonly inputs: readonly [{
|
|
7530
|
-
readonly name: "
|
|
7531
|
-
readonly type: "core::
|
|
7532
|
-
}, {
|
|
7533
|
-
readonly name: "token_id";
|
|
7534
|
-
readonly type: "core::integer::u256";
|
|
7346
|
+
readonly name: "open";
|
|
7347
|
+
readonly type: "core::bool";
|
|
7535
7348
|
}];
|
|
7536
7349
|
readonly outputs: readonly [];
|
|
7537
7350
|
readonly state_mutability: "external";
|
|
7538
7351
|
}, {
|
|
7539
7352
|
readonly type: "function";
|
|
7540
|
-
readonly name: "
|
|
7541
|
-
readonly inputs: readonly [
|
|
7542
|
-
readonly name: "user";
|
|
7543
|
-
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7544
|
-
}];
|
|
7353
|
+
readonly name: "base_uri";
|
|
7354
|
+
readonly inputs: readonly [];
|
|
7545
7355
|
readonly outputs: readonly [{
|
|
7546
|
-
readonly type: "core::
|
|
7356
|
+
readonly type: "core::byte_array::ByteArray";
|
|
7547
7357
|
}];
|
|
7548
7358
|
readonly state_mutability: "view";
|
|
7549
7359
|
}, {
|
|
7550
7360
|
readonly type: "function";
|
|
7551
|
-
readonly name: "
|
|
7361
|
+
readonly name: "entry_fee";
|
|
7552
7362
|
readonly inputs: readonly [];
|
|
7553
7363
|
readonly outputs: readonly [{
|
|
7554
|
-
readonly type: "core::
|
|
7364
|
+
readonly type: "core::integer::u256";
|
|
7555
7365
|
}];
|
|
7556
7366
|
readonly state_mutability: "view";
|
|
7557
7367
|
}, {
|
|
7558
7368
|
readonly type: "function";
|
|
7559
|
-
readonly name: "
|
|
7369
|
+
readonly name: "payment_token";
|
|
7560
7370
|
readonly inputs: readonly [];
|
|
7561
7371
|
readonly outputs: readonly [{
|
|
7562
|
-
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7372
|
+
readonly type: "core::option::Option::<core::starknet::contract_address::ContractAddress>";
|
|
7563
7373
|
}];
|
|
7564
7374
|
readonly state_mutability: "view";
|
|
7565
7375
|
}, {
|
|
7566
7376
|
readonly type: "function";
|
|
7567
|
-
readonly name: "
|
|
7377
|
+
readonly name: "max_supply";
|
|
7568
7378
|
readonly inputs: readonly [];
|
|
7569
7379
|
readonly outputs: readonly [{
|
|
7570
7380
|
readonly type: "core::integer::u256";
|
|
@@ -7572,12 +7382,20 @@ declare const IPClubNFTABI: readonly [{
|
|
|
7572
7382
|
readonly state_mutability: "view";
|
|
7573
7383
|
}, {
|
|
7574
7384
|
readonly type: "function";
|
|
7575
|
-
readonly name: "
|
|
7385
|
+
readonly name: "total_minted";
|
|
7576
7386
|
readonly inputs: readonly [];
|
|
7577
7387
|
readonly outputs: readonly [{
|
|
7578
7388
|
readonly type: "core::integer::u256";
|
|
7579
7389
|
}];
|
|
7580
7390
|
readonly state_mutability: "view";
|
|
7391
|
+
}, {
|
|
7392
|
+
readonly type: "function";
|
|
7393
|
+
readonly name: "is_open";
|
|
7394
|
+
readonly inputs: readonly [];
|
|
7395
|
+
readonly outputs: readonly [{
|
|
7396
|
+
readonly type: "core::bool";
|
|
7397
|
+
}];
|
|
7398
|
+
readonly state_mutability: "view";
|
|
7581
7399
|
}, {
|
|
7582
7400
|
readonly type: "function";
|
|
7583
7401
|
readonly name: "royalty_info";
|
|
@@ -7854,14 +7672,50 @@ declare const IPClubNFTABI: readonly [{
|
|
|
7854
7672
|
readonly state_mutability: "view";
|
|
7855
7673
|
}];
|
|
7856
7674
|
}, {
|
|
7857
|
-
readonly type: "
|
|
7858
|
-
readonly name: "
|
|
7859
|
-
readonly
|
|
7860
|
-
|
|
7861
|
-
|
|
7675
|
+
readonly type: "impl";
|
|
7676
|
+
readonly name: "OwnableMixinImpl";
|
|
7677
|
+
readonly interface_name: "openzeppelin_access::ownable::interface::OwnableABI";
|
|
7678
|
+
}, {
|
|
7679
|
+
readonly type: "interface";
|
|
7680
|
+
readonly name: "openzeppelin_access::ownable::interface::OwnableABI";
|
|
7681
|
+
readonly items: readonly [{
|
|
7682
|
+
readonly type: "function";
|
|
7683
|
+
readonly name: "owner";
|
|
7684
|
+
readonly inputs: readonly [];
|
|
7685
|
+
readonly outputs: readonly [{
|
|
7686
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7687
|
+
}];
|
|
7688
|
+
readonly state_mutability: "view";
|
|
7862
7689
|
}, {
|
|
7863
|
-
readonly
|
|
7864
|
-
readonly
|
|
7690
|
+
readonly type: "function";
|
|
7691
|
+
readonly name: "transfer_ownership";
|
|
7692
|
+
readonly inputs: readonly [{
|
|
7693
|
+
readonly name: "new_owner";
|
|
7694
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7695
|
+
}];
|
|
7696
|
+
readonly outputs: readonly [];
|
|
7697
|
+
readonly state_mutability: "external";
|
|
7698
|
+
}, {
|
|
7699
|
+
readonly type: "function";
|
|
7700
|
+
readonly name: "renounce_ownership";
|
|
7701
|
+
readonly inputs: readonly [];
|
|
7702
|
+
readonly outputs: readonly [];
|
|
7703
|
+
readonly state_mutability: "external";
|
|
7704
|
+
}, {
|
|
7705
|
+
readonly type: "function";
|
|
7706
|
+
readonly name: "transferOwnership";
|
|
7707
|
+
readonly inputs: readonly [{
|
|
7708
|
+
readonly name: "newOwner";
|
|
7709
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7710
|
+
}];
|
|
7711
|
+
readonly outputs: readonly [];
|
|
7712
|
+
readonly state_mutability: "external";
|
|
7713
|
+
}, {
|
|
7714
|
+
readonly type: "function";
|
|
7715
|
+
readonly name: "renounceOwnership";
|
|
7716
|
+
readonly inputs: readonly [];
|
|
7717
|
+
readonly outputs: readonly [];
|
|
7718
|
+
readonly state_mutability: "external";
|
|
7865
7719
|
}];
|
|
7866
7720
|
}, {
|
|
7867
7721
|
readonly type: "constructor";
|
|
@@ -7873,23 +7727,23 @@ declare const IPClubNFTABI: readonly [{
|
|
|
7873
7727
|
readonly name: "symbol";
|
|
7874
7728
|
readonly type: "core::byte_array::ByteArray";
|
|
7875
7729
|
}, {
|
|
7876
|
-
readonly name: "
|
|
7877
|
-
readonly type: "core::
|
|
7878
|
-
}, {
|
|
7879
|
-
readonly name: "creator";
|
|
7880
|
-
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7730
|
+
readonly name: "base_uri";
|
|
7731
|
+
readonly type: "core::byte_array::ByteArray";
|
|
7881
7732
|
}, {
|
|
7882
|
-
readonly name: "
|
|
7883
|
-
readonly type: "core::
|
|
7733
|
+
readonly name: "max_supply";
|
|
7734
|
+
readonly type: "core::integer::u256";
|
|
7884
7735
|
}, {
|
|
7885
|
-
readonly name: "
|
|
7886
|
-
readonly type: "core::
|
|
7736
|
+
readonly name: "entry_fee";
|
|
7737
|
+
readonly type: "core::integer::u256";
|
|
7887
7738
|
}, {
|
|
7888
|
-
readonly name: "
|
|
7889
|
-
readonly type: "core::option::Option::<core::
|
|
7739
|
+
readonly name: "payment_token";
|
|
7740
|
+
readonly type: "core::option::Option::<core::starknet::contract_address::ContractAddress>";
|
|
7890
7741
|
}, {
|
|
7891
7742
|
readonly name: "royalty_bps";
|
|
7892
7743
|
readonly type: "core::integer::u256";
|
|
7744
|
+
}, {
|
|
7745
|
+
readonly name: "owner";
|
|
7746
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7893
7747
|
}];
|
|
7894
7748
|
}, {
|
|
7895
7749
|
readonly type: "event";
|
|
@@ -7966,7 +7820,72 @@ declare const IPClubNFTABI: readonly [{
|
|
|
7966
7820
|
readonly variants: readonly [];
|
|
7967
7821
|
}, {
|
|
7968
7822
|
readonly type: "event";
|
|
7969
|
-
readonly name: "
|
|
7823
|
+
readonly name: "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferred";
|
|
7824
|
+
readonly kind: "struct";
|
|
7825
|
+
readonly members: readonly [{
|
|
7826
|
+
readonly name: "previous_owner";
|
|
7827
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7828
|
+
readonly kind: "key";
|
|
7829
|
+
}, {
|
|
7830
|
+
readonly name: "new_owner";
|
|
7831
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7832
|
+
readonly kind: "key";
|
|
7833
|
+
}];
|
|
7834
|
+
}, {
|
|
7835
|
+
readonly type: "event";
|
|
7836
|
+
readonly name: "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferStarted";
|
|
7837
|
+
readonly kind: "struct";
|
|
7838
|
+
readonly members: readonly [{
|
|
7839
|
+
readonly name: "previous_owner";
|
|
7840
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7841
|
+
readonly kind: "key";
|
|
7842
|
+
}, {
|
|
7843
|
+
readonly name: "new_owner";
|
|
7844
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7845
|
+
readonly kind: "key";
|
|
7846
|
+
}];
|
|
7847
|
+
}, {
|
|
7848
|
+
readonly type: "event";
|
|
7849
|
+
readonly name: "openzeppelin_access::ownable::ownable::OwnableComponent::Event";
|
|
7850
|
+
readonly kind: "enum";
|
|
7851
|
+
readonly variants: readonly [{
|
|
7852
|
+
readonly name: "OwnershipTransferred";
|
|
7853
|
+
readonly type: "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferred";
|
|
7854
|
+
readonly kind: "nested";
|
|
7855
|
+
}, {
|
|
7856
|
+
readonly name: "OwnershipTransferStarted";
|
|
7857
|
+
readonly type: "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferStarted";
|
|
7858
|
+
readonly kind: "nested";
|
|
7859
|
+
}];
|
|
7860
|
+
}, {
|
|
7861
|
+
readonly type: "event";
|
|
7862
|
+
readonly name: "ip_club::IPClubCollection::IPClubCollection::MemberMinted";
|
|
7863
|
+
readonly kind: "struct";
|
|
7864
|
+
readonly members: readonly [{
|
|
7865
|
+
readonly name: "token_id";
|
|
7866
|
+
readonly type: "core::integer::u256";
|
|
7867
|
+
readonly kind: "key";
|
|
7868
|
+
}, {
|
|
7869
|
+
readonly name: "to";
|
|
7870
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7871
|
+
readonly kind: "key";
|
|
7872
|
+
}, {
|
|
7873
|
+
readonly name: "payer";
|
|
7874
|
+
readonly type: "core::starknet::contract_address::ContractAddress";
|
|
7875
|
+
readonly kind: "data";
|
|
7876
|
+
}];
|
|
7877
|
+
}, {
|
|
7878
|
+
readonly type: "event";
|
|
7879
|
+
readonly name: "ip_club::IPClubCollection::IPClubCollection::OpenStatusChanged";
|
|
7880
|
+
readonly kind: "struct";
|
|
7881
|
+
readonly members: readonly [{
|
|
7882
|
+
readonly name: "open";
|
|
7883
|
+
readonly type: "core::bool";
|
|
7884
|
+
readonly kind: "data";
|
|
7885
|
+
}];
|
|
7886
|
+
}, {
|
|
7887
|
+
readonly type: "event";
|
|
7888
|
+
readonly name: "ip_club::IPClubCollection::IPClubCollection::Event";
|
|
7970
7889
|
readonly kind: "enum";
|
|
7971
7890
|
readonly variants: readonly [{
|
|
7972
7891
|
readonly name: "ERC721Event";
|
|
@@ -7976,6 +7895,18 @@ declare const IPClubNFTABI: readonly [{
|
|
|
7976
7895
|
readonly name: "SRC5Event";
|
|
7977
7896
|
readonly type: "openzeppelin_introspection::src5::SRC5Component::Event";
|
|
7978
7897
|
readonly kind: "flat";
|
|
7898
|
+
}, {
|
|
7899
|
+
readonly name: "OwnableEvent";
|
|
7900
|
+
readonly type: "openzeppelin_access::ownable::ownable::OwnableComponent::Event";
|
|
7901
|
+
readonly kind: "flat";
|
|
7902
|
+
}, {
|
|
7903
|
+
readonly name: "MemberMinted";
|
|
7904
|
+
readonly type: "ip_club::IPClubCollection::IPClubCollection::MemberMinted";
|
|
7905
|
+
readonly kind: "nested";
|
|
7906
|
+
}, {
|
|
7907
|
+
readonly name: "OpenStatusChanged";
|
|
7908
|
+
readonly type: "ip_club::IPClubCollection::IPClubCollection::OpenStatusChanged";
|
|
7909
|
+
readonly kind: "nested";
|
|
7979
7910
|
}];
|
|
7980
7911
|
}];
|
|
7981
7912
|
|
|
@@ -10130,4 +10061,4 @@ declare function build1155OrderTypedData(message: Record<string, unknown>, chain
|
|
|
10130
10061
|
declare function buildCancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
10131
10062
|
declare function build1155CancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
10132
10063
|
|
|
10133
|
-
export { ADMIN_HEADERS, ADMIN_SCOPE, type ActivityType, type AddSupplyParams, type AdminGrant, type AdminRequest, type AdminRequestSig, type AdminSession, type AdminSessionTypedDataInput, type ApiActivitiesQuery, type ApiActivity, type ApiActivityPrice, type ApiAdminCollectionClaim, type ApiAppSource, type ApiChain, ApiClient, type ApiCoin, type ApiCoinsQuery, type ApiCollection, type ApiCollectionClaim, type ApiCollectionProfile, type ApiCollectionSlugClaim, type ApiCollectionsQuery, type ApiComment, type ApiCounterOffersQuery, type ApiCreatorListResult, type ApiCreatorProfile, type ApiIntent, type ApiIntentCreated, type ApiKeyStatus, type ApiMeta, type ApiMetadataSignedUrl, type ApiMetadataUpload, type ApiOrder, type ApiOrderConsideration, type ApiOrderOffer, type ApiOrderPrice, type ApiOrderTokenMeta, type ApiOrderTxHash, type ApiOrdersQuery, type ApiPointEvent, type ApiPortalKey, type ApiPortalKeyCreated, type ApiPortalMe, type ApiPublicRemix, type ApiRemixOffer, type ApiRemixOfferPrice, type ApiRemixOffersQuery, type ApiResponse, type ApiRewardsBadge, type ApiRewardsBatchEntry, type ApiRewardsConfig, type ApiRewardsLeaderboardEntry, type ApiRewardsLevel, type ApiSearchCollectionResult, type ApiSearchCreatorResult, type ApiSearchResult, type ApiSearchTokenResult, type ApiToken, type ApiTokenBalance, type ApiTokenMetadata, type ApiUsageDay, type ApiUserRewards, type ApiUserWallet, type ApiWebhookCreated, type ApiWebhookEndpoint, type AutoRemixOfferParams, type BatchMintEditionParams, type BuildFeeCallParams, CHAINS, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, type CancelOrder1155Params, type CancelOrderIntentParams, type CancelOrderParams, type Cancelation, type CartItem, type Chain, type ChainCoordinates, type ClaimConditions, ClubService, type CollectionSort, type CollectionTokensSort, type ConfirmRemixOfferParams, type ConfirmSelfRemixParams, type ConsiderationItem, type
|
|
10064
|
+
export { ADMIN_HEADERS, ADMIN_SCOPE, type ActivityType, type AddSupplyParams, type AdminGrant, type AdminRequest, type AdminRequestSig, type AdminSession, type AdminSessionTypedDataInput, type ApiActivitiesQuery, type ApiActivity, type ApiActivityPrice, type ApiAdminCollectionClaim, type ApiAppSource, type ApiChain, ApiClient, type ApiCoin, type ApiCoinsQuery, type ApiCollection, type ApiCollectionClaim, type ApiCollectionProfile, type ApiCollectionSlugClaim, type ApiCollectionsQuery, type ApiComment, type ApiCounterOffersQuery, type ApiCreatorListResult, type ApiCreatorProfile, type ApiIntent, type ApiIntentCreated, type ApiKeyStatus, type ApiMeta, type ApiMetadataSignedUrl, type ApiMetadataUpload, type ApiOrder, type ApiOrderConsideration, type ApiOrderOffer, type ApiOrderPrice, type ApiOrderTokenMeta, type ApiOrderTxHash, type ApiOrdersQuery, type ApiPointEvent, type ApiPortalKey, type ApiPortalKeyCreated, type ApiPortalMe, type ApiPublicRemix, type ApiRemixOffer, type ApiRemixOfferPrice, type ApiRemixOffersQuery, type ApiResponse, type ApiRewardsBadge, type ApiRewardsBatchEntry, type ApiRewardsConfig, type ApiRewardsLeaderboardEntry, type ApiRewardsLevel, type ApiSearchCollectionResult, type ApiSearchCreatorResult, type ApiSearchResult, type ApiSearchTokenResult, type ApiToken, type ApiTokenBalance, type ApiTokenMetadata, type ApiUsageDay, type ApiUserRewards, type ApiUserWallet, type ApiWebhookCreated, type ApiWebhookEndpoint, type AutoRemixOfferParams, type BatchMintEditionParams, type BuildFeeCallParams, CHAINS, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, type CancelOrder1155Params, type CancelOrderIntentParams, type CancelOrderParams, type Cancelation, type CartItem, type Chain, type ChainCoordinates, type ClaimConditions, ClubService, type CollectionSort, type CollectionTokensSort, type ConfirmRemixOfferParams, type ConfirmSelfRemixParams, type ConsiderationItem, type CreateCollectionIntentParams, type CreateCollectionParams, type CreateCounterOfferIntentParams, type CreateCreatorCoinParams, type CreateDropParams, type CreateGrantOpts, type CreateListing1155Params, type CreateListingIntentParams, type CreateListingParams, type CreateMintIntentParams, type CreatePopCollectionParams, type CreateRemixOfferParams, type CreateSponsorshipOfferParams, type CreateTicketCollectionParams, type CreateWebhookParams, CreatorCoinFactoryABI, type CreatorCoinPrice, type CreatorCoinReceiptLike, CreatorCoinService, DEFAULT_CHAIN, DEFAULT_CURRENCY, type DeployClubParams, type DeployCollectionParams, DropCollectionABI, DropFactoryABI, type DropMintStatus, DropService, ERC1155CollectionService, type EkuboLaunchParams, type EkuboPoolParams, type EnforcementDeclaration, type FailoverFetchOptions, type FeeConfig, FeeConfigSchema, type FeeSurface, type FulfillOrder1155Params, type FulfillOrderIntentParams, type FulfillOrderParams, IPClubCollectionABI, IPClubFactoryABI, IPCollection1155ABI, IPCollection1155FactoryABI, IPCollectionABI, IPGenesisABI, IPMarketplaceABI, IPNftABI, IPSponsorshipABI, IPSponsorshipLicenseABI, IPTicketCollectionABI, IPTicketCollectionFactoryABI, type IPType, type IntentCall, type IntentStatus, type IntentType, type IpAttribute, type IpNftMetadata, LAUNCH_PRICE_QUOTE_PER_COIN, type MakeOffer1155Params, type MakeOfferIntentParams, type MakeOfferParams, MarketplaceModule, Medialane1155ABI, Medialane1155Module, MedialaneApiError, MedialaneClient, type MedialaneConfig, MedialaneError, type MedialaneErrorCode, type MintEditionParams, type MintMembershipParams, type MintParams, OPEN_LICENSES, type OfferItem, type OpenLicense, type Order, type OrderDetails, type OrderParameters, type OrderStatus, POPCollectionABI, POPFactoryABI, PUBLIC_RPC_FALLBACKS, type ParsedAdminHeaders, type PopBatchEligibilityItem, type PopClaimStatus, type PopEventType, PopService, type RemixOfferStatus, type RequestSiwsTokenArgs, type ResolvedConfig, type ResolvedFeeConfig, type RetryOptions, STARKNET_COLLECTION_1155_CLASS_HASH, STARKNET_COLLECTION_1155_CONTRACT, STARKNET_COLLECTION_1155_FACTORY_CLASS_HASH, STARKNET_COLLECTION_1155_START_BLOCK, STARKNET_COLLECTION_721_CONTRACT, STARKNET_COLLECTION_721_START_BLOCK, STARKNET_CREATOR_COIN_CLASS_HASH, STARKNET_CREATOR_COIN_EKUBO_LAUNCHER, STARKNET_CREATOR_COIN_FACTORY_CLASS_HASH, STARKNET_CREATOR_COIN_FACTORY_CONTRACT, STARKNET_CREATOR_COIN_START_BLOCK, STARKNET_DROP_COLLECTION_CLASS_HASH, STARKNET_DROP_FACTORY_CONTRACT, STARKNET_EKUBO_CORE, STARKNET_IPCOLLECTION_CLASS_HASH, STARKNET_IPNFT_CLASS_HASH, STARKNET_IP_CLUB_COLLECTION_CLASS_HASH, STARKNET_IP_CLUB_FACTORY_CONTRACT, STARKNET_IP_SPONSORSHIP_CONTRACT, STARKNET_IP_SPONSORSHIP_LICENSE_CONTRACT, STARKNET_IP_TICKETS_FACTORY_CONTRACT, STARKNET_IP_TICKET_COLLECTION_CLASS_HASH, STARKNET_MARKETPLACE_1155_CLASS_HASH, STARKNET_MARKETPLACE_1155_CONTRACT, STARKNET_MARKETPLACE_1155_START_BLOCK, STARKNET_MARKETPLACE_721_CLASS_HASH, STARKNET_MARKETPLACE_721_CONTRACT, STARKNET_MARKETPLACE_721_START_BLOCK, STARKNET_NFTCOMMENTS_CONTRACT, STARKNET_POP_COLLECTION_CLASS_HASH, STARKNET_POP_FACTORY_CONTRACT, SUPPORTED_TOKENS, type ServiceCapability, type ServiceDefinition, type ServiceEventDeclaration, type ServiceId, type SetOpenParams, type SiwsSigner, type SortOrder, SponsorshipService, type SupportedToken, type SupportedTokenSymbol, type TenantPlan, TicketService, type TxResult, VALIDATED_EKUBO_PARAMS, type WebhookEventType, type WebhookStatus, adminRequestDigest, build1155CancellationTypedData, build1155OrderTypedData, buildAdminSessionTypedData, buildCancellationTypedData, buildCreateCreatorCoinCall, buildFeeCall, buildLaunchOnEkuboCalls, buildOrderTypedData, buybackQuoteRaw, toRaw as coinToRaw, createAdminSessionGrant, createFailoverFetch, encodeAdminHeaders, encodeByteArray, fdvHuman, formatAmount, getCoordinates, getCreatorCoinPrice, getListableTokens, getService, getServicesByCapability, getSiwsStorageKey, getStoredSiwsToken, getTokenByAddress, getTokenBySymbol, hasCapability, isServiceId, isSiwsTokenValid, isTransientRpcError, listServices, normalizeAddress, normalizeHash, normalizeSiwsSignature, parseAdminHeaders, parseAmount, parseCreatorCoinCreated, randomNonce, requestSiwsToken, resolveConfig, resolveFeeConfig, sessionKeyHashOf, shortenAddress, signAdminRequest, storeSiwsToken, stringifyBigInts, teamCoinsRaw, u256ToBigInt, validateName as validateCoinName, validateSupply as validateCoinSupply, validateSymbol as validateCoinSymbol, verifyAdminRequestSig };
|