We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5e2013 commit b168d6fCopy full SHA for b168d6f
packages/server/src/index.ts
@@ -28,6 +28,10 @@ const COLLECTIONS: { [collectionName: string]: Collection } = {
28
name: "Sublimes",
29
contract: "0x116aebbad1c8226c80f9f0cb4e255540a0f7afd9",
30
},
31
+ Isotile: {
32
+ name: "Isotile",
33
+ contract: "0x31eAa2E93D7AFd237F87F30c0Dbd3aDEB9934f1B",
34
+ },
35
};
36
37
const DROPS = [
packages/typings/index.ts
@@ -9,8 +9,9 @@ export type NFT = {
9
export type NFTs = NFT[];
10
export type NFTsByCollection = { collectionName: string; assets: NFTs }[];
11
12
-// API Types
13
-
+/////////////////
+/// API Types ///
14
15
export type AssetsOwned = {
16
nfts: NFTsByCollection;
17
drips: NFTs;
0 commit comments