@keccak256-evg/passport-sdk
Version:
T-REX Passport SDK for interacting with Passport and Registry contracts
13 lines (12 loc) • 324 B
TypeScript
export * from './types/common';
export * from './types/passport';
export * from './types/config';
import { Chain } from "thirdweb/chains";
export interface PassportSDKConfig {
chain: Chain;
registryAddress: string;
client: any;
}
export interface PassportSDKInterface {
readonly config: PassportSDKConfig;
}