@strandgeek/powerup
Version:
PowerUP is a javascript library that makes managing a LUKSO Universal Profile easy
38 lines (37 loc) • 1.65 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.PowerUP = void 0;
const profile_1 = require("./profile");
const web3_1 = __importDefault(require("web3"));
const DEFAULT_IPFS_GATEWAY = 'https://2eff.lukso.dev/ipfs/';
class PowerUP {
constructor(opts) {
this.provider = opts.provider;
this.web3 = new web3_1.default(this.provider);
this.ipfsGateway = opts.ipfsGateway || DEFAULT_IPFS_GATEWAY;
}
getProfile(address) {
return __awaiter(this, void 0, void 0, function* () {
const profile = new profile_1.Profile({
web3: this.web3,
ipfsGateway: this.ipfsGateway,
address,
});
yield profile.load();
return profile;
});
}
}
exports.PowerUP = PowerUP;