type KeybanOrder = {
  createdAt: string;
  id: string;
  items: any;
  nodeId: string;
  orderTransactions: {
     nodes: (
        | {
        assetTransfer:   | {
           decimals: number | null;
           fromId: string;
           id: string;
           nft:   | {
              collection:   | {
                 decimals: ...;
                 iconUrl: ...;
                 id: ...;
                 name: ...;
                 symbol: ...;
                 type: ...;
               }
                 | null;
              id: string;
              metadata: any;
              tokenId: string;
            }
              | null;
           nodeId: string;
           toId: string | null;
           token:   | {
              decimals: number | null;
              iconUrl: string | null;
              id: string;
              name: string | null;
              symbol: string | null;
              type: string;
            }
              | null;
           transaction:   | {
              blockHash: string;
              blockNumber: string;
              date: string;
              fees: string;
              gasPrice: string;
              gasUsed: string;
              id: string;
              success: boolean;
            }
              | null;
           type: string;
           value: string;
         }
           | null;
        assetTransferId: string;
      }
       | null)[];
  };
  price: number;
};