Skip to content

Commit cf6db89

Browse files
committed
v18.1.6: fix variable
1 parent 6f858f1 commit cf6db89

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

dist/esm/index.evm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1970,7 +1970,7 @@ class MiniKit {
19701970

19711971
function _optionalChain$1(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
19721972

1973-
STORAGE_KEY = '_DePayWorldAppAddressV1';
1973+
const STORAGE_KEY = '_DePayWorldAppAddressV1';
19741974

19751975
class WorldApp {
19761976

dist/esm/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/umd/index.evm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1974,7 +1974,7 @@
19741974

19751975
function _optionalChain$1(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
19761976

1977-
STORAGE_KEY = '_DePayWorldAppAddressV1';
1977+
const STORAGE_KEY = '_DePayWorldAppAddressV1';
19781978

19791979
class WorldApp {
19801980

dist/umd/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.evm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@depay/web3-wallets-evm",
33
"moduleName": "Web3Wallets",
4-
"version": "18.1.5",
4+
"version": "18.1.6",
55
"description": "One-Stop-Shop JavaScript library to integrate various web3 crypto wallets and multiple blockchains at once with a single interface.",
66
"main": "dist/umd/index.evm.js",
77
"module": "dist/esm/index.evm.js",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@depay/web3-wallets",
33
"moduleName": "Web3Wallets",
4-
"version": "18.1.5",
4+
"version": "18.1.6",
55
"description": "One-Stop-Shop JavaScript library to integrate various web3 crypto wallets and multiple blockchains at once with a single interface.",
66
"main": "dist/umd/index.js",
77
"module": "dist/esm/index.js",

package.svm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@depay/web3-wallets-svm",
33
"moduleName": "Web3Wallets",
4-
"version": "18.1.5",
4+
"version": "18.1.6",
55
"description": "One-Stop-Shop JavaScript library to integrate various web3 crypto wallets and multiple blockchains at once with a single interface.",
66
"main": "dist/umd/index.svm.js",
77
"module": "dist/esm/index.svm.js",

src/wallets/WorldApp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { ethers } from 'ethers'
1717
import { MiniKit, ResponseEvent } from './WorldApp/index'
1818
import { Transaction } from '../Transaction'
1919

20-
STORAGE_KEY = '_DePayWorldAppAddressV1'
20+
const STORAGE_KEY = '_DePayWorldAppAddressV1'
2121

2222
export default class WorldApp {
2323

0 commit comments

Comments
 (0)