UNPKG

@ic-wallet-kit/hpl

Version:
27 lines (26 loc) 807 B
"use strict"; 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;