@0xsequence/metadata 1.9.10 → 1.9.11
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.
|
@@ -18,7 +18,7 @@ function _extends() {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
/* eslint-disable */
|
|
21
|
-
// sequence-metadata v0.4.0
|
|
21
|
+
// sequence-metadata v0.4.0 0c2b6c9b82e849f907ee6eccf2ecffa81449cc47
|
|
22
22
|
// --
|
|
23
23
|
// Code generated by webrpc-gen@v0.14.0-dev with typescript@v0.10.0 generator. DO NOT EDIT.
|
|
24
24
|
//
|
|
@@ -31,7 +31,7 @@ const WebRPCVersion = 'v1';
|
|
|
31
31
|
const WebRPCSchemaVersion = 'v0.4.0';
|
|
32
32
|
|
|
33
33
|
// Schema hash generated from your RIDL schema
|
|
34
|
-
const WebRPCSchemaHash = '
|
|
34
|
+
const WebRPCSchemaHash = '0c2b6c9b82e849f907ee6eccf2ecffa81449cc47';
|
|
35
35
|
|
|
36
36
|
//
|
|
37
37
|
// Types
|
|
@@ -18,7 +18,7 @@ function _extends() {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
/* eslint-disable */
|
|
21
|
-
// sequence-metadata v0.4.0
|
|
21
|
+
// sequence-metadata v0.4.0 0c2b6c9b82e849f907ee6eccf2ecffa81449cc47
|
|
22
22
|
// --
|
|
23
23
|
// Code generated by webrpc-gen@v0.14.0-dev with typescript@v0.10.0 generator. DO NOT EDIT.
|
|
24
24
|
//
|
|
@@ -31,7 +31,7 @@ const WebRPCVersion = 'v1';
|
|
|
31
31
|
const WebRPCSchemaVersion = 'v0.4.0';
|
|
32
32
|
|
|
33
33
|
// Schema hash generated from your RIDL schema
|
|
34
|
-
const WebRPCSchemaHash = '
|
|
34
|
+
const WebRPCSchemaHash = '0c2b6c9b82e849f907ee6eccf2ecffa81449cc47';
|
|
35
35
|
|
|
36
36
|
//
|
|
37
37
|
// Types
|
|
@@ -14,7 +14,7 @@ function _extends() {
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
/* eslint-disable */
|
|
17
|
-
// sequence-metadata v0.4.0
|
|
17
|
+
// sequence-metadata v0.4.0 0c2b6c9b82e849f907ee6eccf2ecffa81449cc47
|
|
18
18
|
// --
|
|
19
19
|
// Code generated by webrpc-gen@v0.14.0-dev with typescript@v0.10.0 generator. DO NOT EDIT.
|
|
20
20
|
//
|
|
@@ -27,7 +27,7 @@ const WebRPCVersion = 'v1';
|
|
|
27
27
|
const WebRPCSchemaVersion = 'v0.4.0';
|
|
28
28
|
|
|
29
29
|
// Schema hash generated from your RIDL schema
|
|
30
|
-
const WebRPCSchemaHash = '
|
|
30
|
+
const WebRPCSchemaHash = '0c2b6c9b82e849f907ee6eccf2ecffa81449cc47';
|
|
31
31
|
|
|
32
32
|
//
|
|
33
33
|
// Types
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const WebRPCVersion = "v1";
|
|
2
2
|
export declare const WebRPCSchemaVersion = "v0.4.0";
|
|
3
|
-
export declare const WebRPCSchemaHash = "
|
|
3
|
+
export declare const WebRPCSchemaHash = "0c2b6c9b82e849f907ee6eccf2ecffa81449cc47";
|
|
4
4
|
export declare enum ContractType {
|
|
5
5
|
UNKNOWN = "UNKNOWN",
|
|
6
6
|
ERC20 = "ERC20",
|
|
@@ -129,21 +129,21 @@ export interface Collection {
|
|
|
129
129
|
projectId: number;
|
|
130
130
|
metadata: CollectionMetadata;
|
|
131
131
|
private: boolean;
|
|
132
|
-
revealKey
|
|
133
|
-
createdAt
|
|
134
|
-
updatedAt
|
|
132
|
+
revealKey?: string;
|
|
133
|
+
createdAt?: string;
|
|
134
|
+
updatedAt?: string;
|
|
135
135
|
deletedAt?: string;
|
|
136
136
|
baseURIs?: CollectionBaseURIs;
|
|
137
137
|
}
|
|
138
138
|
export interface CollectionMetadata {
|
|
139
139
|
name: string;
|
|
140
|
-
description
|
|
141
|
-
image
|
|
142
|
-
externalLink
|
|
143
|
-
properties
|
|
140
|
+
description?: string;
|
|
141
|
+
image?: string;
|
|
142
|
+
externalLink?: string;
|
|
143
|
+
properties?: {
|
|
144
144
|
[key: string]: any;
|
|
145
145
|
};
|
|
146
|
-
attributes
|
|
146
|
+
attributes?: Array<{
|
|
147
147
|
[key: string]: any;
|
|
148
148
|
}>;
|
|
149
149
|
}
|
|
@@ -155,21 +155,21 @@ export interface Asset {
|
|
|
155
155
|
id: number;
|
|
156
156
|
collectionId: number;
|
|
157
157
|
tokenId: string;
|
|
158
|
-
url
|
|
158
|
+
url?: string;
|
|
159
159
|
metadataField: string;
|
|
160
|
-
name
|
|
161
|
-
filesize
|
|
162
|
-
mimeType
|
|
160
|
+
name?: string;
|
|
161
|
+
filesize?: number;
|
|
162
|
+
mimeType?: string;
|
|
163
163
|
width?: number;
|
|
164
164
|
height?: number;
|
|
165
|
-
updatedAt
|
|
165
|
+
updatedAt?: string;
|
|
166
166
|
}
|
|
167
167
|
export interface Token {
|
|
168
168
|
collectionId: number;
|
|
169
169
|
tokenId: string;
|
|
170
170
|
metadata: TokenMetadata;
|
|
171
171
|
private: boolean;
|
|
172
|
-
updatedAt
|
|
172
|
+
updatedAt?: string;
|
|
173
173
|
}
|
|
174
174
|
export interface GetNiftyswapUnitPricesRequest {
|
|
175
175
|
swapType: SwapType;
|
package/package.json
CHANGED
package/src/metadata.gen.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
|
-
// sequence-metadata v0.4.0
|
|
2
|
+
// sequence-metadata v0.4.0 0c2b6c9b82e849f907ee6eccf2ecffa81449cc47
|
|
3
3
|
// --
|
|
4
4
|
// Code generated by webrpc-gen@v0.14.0-dev with typescript@v0.10.0 generator. DO NOT EDIT.
|
|
5
5
|
//
|
|
@@ -12,7 +12,7 @@ export const WebRPCVersion = 'v1'
|
|
|
12
12
|
export const WebRPCSchemaVersion = 'v0.4.0'
|
|
13
13
|
|
|
14
14
|
// Schema hash generated from your RIDL schema
|
|
15
|
-
export const WebRPCSchemaHash = '
|
|
15
|
+
export const WebRPCSchemaHash = '0c2b6c9b82e849f907ee6eccf2ecffa81449cc47'
|
|
16
16
|
|
|
17
17
|
//
|
|
18
18
|
// Types
|
|
@@ -151,20 +151,20 @@ export interface Collection {
|
|
|
151
151
|
projectId: number
|
|
152
152
|
metadata: CollectionMetadata
|
|
153
153
|
private: boolean
|
|
154
|
-
revealKey
|
|
155
|
-
createdAt
|
|
156
|
-
updatedAt
|
|
154
|
+
revealKey?: string
|
|
155
|
+
createdAt?: string
|
|
156
|
+
updatedAt?: string
|
|
157
157
|
deletedAt?: string
|
|
158
158
|
baseURIs?: CollectionBaseURIs
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
export interface CollectionMetadata {
|
|
162
162
|
name: string
|
|
163
|
-
description
|
|
164
|
-
image
|
|
165
|
-
externalLink
|
|
166
|
-
properties
|
|
167
|
-
attributes
|
|
163
|
+
description?: string
|
|
164
|
+
image?: string
|
|
165
|
+
externalLink?: string
|
|
166
|
+
properties?: { [key: string]: any }
|
|
167
|
+
attributes?: Array<{ [key: string]: any }>
|
|
168
168
|
}
|
|
169
169
|
|
|
170
170
|
export interface CollectionBaseURIs {
|
|
@@ -176,14 +176,14 @@ export interface Asset {
|
|
|
176
176
|
id: number
|
|
177
177
|
collectionId: number
|
|
178
178
|
tokenId: string
|
|
179
|
-
url
|
|
179
|
+
url?: string
|
|
180
180
|
metadataField: string
|
|
181
|
-
name
|
|
182
|
-
filesize
|
|
183
|
-
mimeType
|
|
181
|
+
name?: string
|
|
182
|
+
filesize?: number
|
|
183
|
+
mimeType?: string
|
|
184
184
|
width?: number
|
|
185
185
|
height?: number
|
|
186
|
-
updatedAt
|
|
186
|
+
updatedAt?: string
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
export interface Token {
|
|
@@ -192,7 +192,7 @@ export interface Token {
|
|
|
192
192
|
metadata: TokenMetadata
|
|
193
193
|
private: boolean
|
|
194
194
|
|
|
195
|
-
updatedAt
|
|
195
|
+
updatedAt?: string
|
|
196
196
|
}
|
|
197
197
|
|
|
198
198
|
export interface GetNiftyswapUnitPricesRequest {
|