@nftx/types
Advanced tools
Comparing version 1.7.0 to 1.8.0
@@ -6,2 +6,14 @@ # Change Log | ||
# [1.8.0](https://github.com/NFTX-project/nftxjs/compare/v1.7.0...v1.8.0) (2023-12-13) | ||
### Features | ||
* include token count in collection metadata ([0656ef9](https://github.com/NFTX-project/nftxjs/commit/0656ef9b06f27744520c623e1e5c4eac12a21b66)) | ||
* vault state property ([327f15e](https://github.com/NFTX-project/nftxjs/commit/327f15ef9b59a898ecc1709d4c599acf503cf148)) | ||
# [1.7.0](https://github.com/NFTX-project/nftxjs/compare/v1.6.1...v1.7.0) (2023-12-12) | ||
@@ -8,0 +20,0 @@ |
@@ -15,2 +15,3 @@ import type { Address } from './web3'; | ||
standard: 'ERC721' | 'ERC1155'; | ||
tokenCount: number; | ||
}; |
@@ -28,2 +28,3 @@ import type { MarketplacePrice } from './price'; | ||
}; | ||
export type VaultState = 'unfinalized' | 'empty' | 'active' | 'shutdown'; | ||
export type Vault = { | ||
@@ -34,2 +35,4 @@ vaultId: string; | ||
collectionSlug: string; | ||
/** The current state of the vault */ | ||
state: VaultState; | ||
asset: Token; | ||
@@ -36,0 +39,0 @@ createdBy: { |
{ | ||
"name": "@nftx/types", | ||
"version": "1.7.0", | ||
"version": "1.8.0", | ||
"description": " ", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/NFTX-project/nftxjs#readme", |
@@ -16,2 +16,3 @@ import type { Address } from './web3'; | ||
standard: 'ERC721' | 'ERC1155'; | ||
tokenCount: number; | ||
}; |
@@ -33,2 +33,4 @@ import type { MarketplacePrice } from './price'; | ||
export type VaultState = 'unfinalized' | 'empty' | 'active' | 'shutdown'; | ||
export type Vault = { | ||
@@ -39,2 +41,4 @@ vaultId: string; | ||
collectionSlug: string; | ||
/** The current state of the vault */ | ||
state: VaultState; | ||
asset: Token; | ||
@@ -41,0 +45,0 @@ createdBy: { id: Address }; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2114859
40790