@verified-network/verified-sdk 2.8.1 → 2.8.4
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.
package/dist/contract/index.js
CHANGED
|
@@ -376,7 +376,7 @@ class VerifiedContract {
|
|
|
376
376
|
?.join(", ")}`);
|
|
377
377
|
}
|
|
378
378
|
const signerAny = this.signer;
|
|
379
|
-
const signerPk = signerAny?._signingKey()?.privateKey;
|
|
379
|
+
const signerPk = signerAny?._signingKey?.()?.privateKey;
|
|
380
380
|
if (!signerPk) {
|
|
381
381
|
//no pk on signer. Assume it's web wallets and use ethers
|
|
382
382
|
console.log("Signer incomplete, will use ethers");
|
|
@@ -414,7 +414,7 @@ class VerifiedContract {
|
|
|
414
414
|
chains_1.arbitrumSepolia,
|
|
415
415
|
].find((nt) => Number(nt?.id) === Number(chainId));
|
|
416
416
|
const signerAny = this.signer;
|
|
417
|
-
const signerPk = signerAny?._signingKey()?.privateKey;
|
|
417
|
+
const signerPk = signerAny?._signingKey?.()?.privateKey;
|
|
418
418
|
if (chainToUse && paymentTokenAddress && signerPk) {
|
|
419
419
|
try {
|
|
420
420
|
let fn = this.contract.populateTransaction[functionName];
|
|
@@ -332,7 +332,7 @@ const contractAddress = {
|
|
|
332
332
|
SecondaryIssuePoolFactory: "0x4519148Cc4030c2e3573f1f886ed4071Fa35d62B",
|
|
333
333
|
BalancerSecondaryIssueManager: "0x5E1Add41C8AaD69063623d96A565Cc27eD119273",
|
|
334
334
|
MarginTradingPoolFactory: "0xB1ae3Fc5B16d3736bf0db20606fB9a10b435392c",
|
|
335
|
-
BalancerMarginIssueManager: "",
|
|
335
|
+
BalancerMarginIssueManager: "0xf1Ee00bB3B70FEa3ff1779c9066C5Fa4A6a129E5",
|
|
336
336
|
Custody: "0x594DC49A7C2B4b0f279247239cb6F1d943a99e7F",
|
|
337
337
|
Compound: "0x4b3CBDB8FBe5fcdDF796cd42d3749f8AcD53DA73",
|
|
338
338
|
CASH: {
|