@kanalabs/mirai
Version:
Mirai - Account Abstraction SDK (EVM + non-EVM)
71 lines (70 loc) • 3.17 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.DataService = void 0;
const constant_1 = require("./constant");
const cross_fetch_1 = __importDefault(require("cross-fetch"));
class DataService {
constructor() {
this.baseUrl = constant_1.MIRAI_DATASERVICE_URL;
}
getAccountBalances(accountAddress, chainId, dataApiKey) {
return __awaiter(this, void 0, void 0, function* () {
const url = `${this.baseUrl}/getAccountBalances`;
const query = {
account: accountAddress,
chainId: chainId.toString(),
dataApiKey: dataApiKey
};
const params = new URLSearchParams(query).toString();
const headers = this.getCommonHeaders();
const response = yield (0, cross_fetch_1.default)(`${url}?${params}`, { headers, method: 'GET' });
return yield response.json();
});
}
getTransaction(hash, chainId, dataApiKey) {
return __awaiter(this, void 0, void 0, function* () {
const url = `${this.baseUrl}/getTransaction`;
const query = {
hash_value: hash,
chainId: chainId.toString(),
dataApiKey: dataApiKey
};
const params = new URLSearchParams(query).toString();
const headers = this.getCommonHeaders();
const response = yield (0, cross_fetch_1.default)(`${url}?${params}`, { headers, method: 'GET' });
return yield response.json();
});
}
getNftsList(accountAddress, chainId, dataApiKey) {
return __awaiter(this, void 0, void 0, function* () {
const url = `${this.baseUrl}/getNftsList`;
const query = {
account: accountAddress,
chainId: chainId.toString(),
dataApiKey: dataApiKey
};
const params = new URLSearchParams(query).toString();
const headers = this.getCommonHeaders();
const response = yield (0, cross_fetch_1.default)(`${url}?${params}`, { headers, method: 'GET' });
return yield response.json();
});
}
getCommonHeaders() {
return {
'Content-Type': 'application/json',
};
}
}
exports.DataService = DataService;