Skip to content

Instantly share code, notes, and snippets.

View 0xSamWitch's full-sized avatar

Sam Witch 0xSamWitch

View GitHub Profile
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;
interface INFTVaultFactory {
struct CreationInfo {
bool createdHere;
uint16 version;
}
function creationInfo(address) external view returns (CreationInfo memory);