@strandgeek/powerup
Version:
PowerUP is a javascript library that makes managing a LUKSO Universal Profile easy
15 lines (14 loc) • 374 B
TypeScript
import { Profile } from "./profile";
import { provider } from "web3-core";
import Web3 from "web3";
export interface PowerUPOptions {
provider: provider;
ipfsGateway?: string;
}
export declare class PowerUP {
web3: Web3;
provider: provider;
ipfsGateway: string;
constructor(opts: PowerUPOptions);
getProfile(address: string): Promise<Profile>;
}