impermax-sdk 2.1.109 → 2.1.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -22,8 +22,12 @@ class OnchainAccountNftlpUniswapV3 extends onchainAccountNftlp_1.default {
|
|
|
22
22
|
}
|
|
23
23
|
initializePositionData(tokenId) {
|
|
24
24
|
return __awaiter(this, void 0, void 0, function* () {
|
|
25
|
+
console.log("initializePositionData");
|
|
25
26
|
const nftlp = yield this.getNftlp().getNftlp();
|
|
26
|
-
|
|
27
|
+
console.log("nftlp", nftlp._address);
|
|
28
|
+
const c = yield nftlp.methods.positions(tokenId).call();
|
|
29
|
+
console.log("call done", c);
|
|
30
|
+
return c;
|
|
27
31
|
});
|
|
28
32
|
}
|
|
29
33
|
getPositionData(tokenId) {
|