@ic-wallet-kit/hpl
Version:
Ic middleware wallet HPL protocol
27 lines (26 loc) • 807 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CanisterService = void 0;
require("reflect-metadata");
const typedi_1 = require("typedi");
(0, typedi_1.Service)();
class CanisterService {
constructor(ledgerCanisterId, dictionaryCanisterId, ownerCanisterId) {
this._ledgerCanisterId = ledgerCanisterId;
this._dictionaryCanisterId = dictionaryCanisterId;
this._ownerCanisterId = ownerCanisterId;
}
_ledgerCanisterId;
_dictionaryCanisterId;
_ownerCanisterId;
getLedgerCanisterId() {
return this._ledgerCanisterId;
}
getDictionaryCanisterId() {
return this._dictionaryCanisterId;
}
getOwnerCanisterId() {
return this._ownerCanisterId;
}
}
exports.CanisterService = CanisterService;