@actalink/commonlib 0.0.20 → 0.0.21
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/index.cjs +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1983,10 +1983,10 @@ var ActaDeposit = class {
|
|
|
1983
1983
|
const receiver = this.receiver;
|
|
1984
1984
|
const feeInclusive = this.feeInclusive;
|
|
1985
1985
|
const serviceType = this.serviceType;
|
|
1986
|
-
const { envTransactionServiceUrl } = returnEnvUrl(chainId);
|
|
1986
|
+
const { envTransactionServiceUrl, envDepositServiceUrl } = returnEnvUrl(chainId);
|
|
1987
1987
|
if (this.depositSessionId !== "") {
|
|
1988
1988
|
const session = yield verifySessionAPICall(
|
|
1989
|
-
`${
|
|
1989
|
+
`${envDepositServiceUrl}verify-session?sessionId=${this.depositSessionId}`,
|
|
1990
1990
|
this.depositSessionId
|
|
1991
1991
|
);
|
|
1992
1992
|
this.depositSessionId = session.sessionId;
|
package/dist/index.js
CHANGED
|
@@ -1910,10 +1910,10 @@ var ActaDeposit = class {
|
|
|
1910
1910
|
const receiver = this.receiver;
|
|
1911
1911
|
const feeInclusive = this.feeInclusive;
|
|
1912
1912
|
const serviceType = this.serviceType;
|
|
1913
|
-
const { envTransactionServiceUrl } = returnEnvUrl(chainId);
|
|
1913
|
+
const { envTransactionServiceUrl, envDepositServiceUrl } = returnEnvUrl(chainId);
|
|
1914
1914
|
if (this.depositSessionId !== "") {
|
|
1915
1915
|
const session = yield verifySessionAPICall(
|
|
1916
|
-
`${
|
|
1916
|
+
`${envDepositServiceUrl}verify-session?sessionId=${this.depositSessionId}`,
|
|
1917
1917
|
this.depositSessionId
|
|
1918
1918
|
);
|
|
1919
1919
|
this.depositSessionId = session.sessionId;
|