Chain Driver Interface
Interface Definition
Individual Functions
export interface AssetDetails<T extends NumberType> {
chain: string,
collectionId: T | string,
assetIds: (string | UintRange<T>)[],
ownershipTimes?: UintRange<T>[],
mustOwnAmounts: UintRange<T>,
additionalCriteria?: string,
}{
collectionId: "0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB",
assetIds: ["15"],
mustOwnAmounts: { start: 0, end: 0 },
chain: 'Ethereum',
},
{
collectionId: 1,
assetIds: [{ start: 1, end: 1 }],
mustOwnAmounts: { start: 0, end: 0 },
chain: 'BitBadges',
}Last updated