@hypercerts-org/marketplace-sdk 0.3.14 → 0.3.15
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/types.d.ts +1 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
@@ -15,7 +15,7 @@ export interface Currencies {
|
|
15
15
|
DAI: Currency;
|
16
16
|
}
|
17
17
|
/** Available information about a currency */
|
18
|
-
interface Currency {
|
18
|
+
export interface Currency {
|
19
19
|
symbol: string;
|
20
20
|
address: `0x${string}`;
|
21
21
|
decimals: number;
|
@@ -255,4 +255,3 @@ export declare enum OrderValidatorCode {
|
|
255
255
|
BUNDLE_ERC2981_NOT_SUPPORTED = 901,
|
256
256
|
CREATOR_FEE_TOO_HIGH = 902
|
257
257
|
}
|
258
|
-
export {};
|