@depay/web3-wallets-svm 18.1.9 → 18.1.11
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/esm/index.evm.js +5 -21
- package/dist/esm/index.js +5 -21
- package/dist/umd/index.evm.js +5 -21
- package/dist/umd/index.js +5 -21
- package/package.json +1 -1
package/dist/esm/index.evm.js
CHANGED
|
@@ -199,11 +199,9 @@ const sendTransaction$2 = async ({ transaction, wallet })=> {
|
|
|
199
199
|
};
|
|
200
200
|
|
|
201
201
|
const retrieveConfirmedTransaction$2 = (sentTransaction)=>{
|
|
202
|
-
console.log('retrieveConfirmedTransaction', sentTransaction);
|
|
203
202
|
return new Promise((resolve, reject)=>{
|
|
204
203
|
try {
|
|
205
204
|
sentTransaction.wait(1).then(resolve).catch((error)=>{
|
|
206
|
-
console.log('error', error);
|
|
207
205
|
if(
|
|
208
206
|
(error && _optionalChain$p([error, 'optionalAccess', _ => _.stack, 'optionalAccess', _2 => _2.match, 'call', _3 => _3('JSON-RPC error')])) ||
|
|
209
207
|
(error && error.toString().match('undefined'))
|
|
@@ -218,7 +216,6 @@ const retrieveConfirmedTransaction$2 = (sentTransaction)=>{
|
|
|
218
216
|
}
|
|
219
217
|
});
|
|
220
218
|
} catch(error) {
|
|
221
|
-
console.log('ERROR', error);
|
|
222
219
|
if(
|
|
223
220
|
(error && _optionalChain$p([error, 'optionalAccess', _4 => _4.stack, 'optionalAccess', _5 => _5.match, 'call', _6 => _6('JSON-RPC error')])) ||
|
|
224
221
|
(error && error.toString().match('undefined'))
|
|
@@ -2005,11 +2002,9 @@ class WorldApp {
|
|
|
2005
2002
|
|
|
2006
2003
|
return new Promise(async(resolve, reject)=>{
|
|
2007
2004
|
await transaction.prepare({ wallet: this });
|
|
2008
|
-
transaction.nonce = (await this.transactionCount({ blockchain: 'worldchain', address: transaction.from })).toString();
|
|
2009
2005
|
transaction.fromBlock = await request('worldchain://latestBlockNumber');
|
|
2010
2006
|
|
|
2011
|
-
MiniKit.subscribe(ResponseEvent.MiniAppSendTransaction, (payload
|
|
2012
|
-
console.log('payload', payload);
|
|
2007
|
+
MiniKit.subscribe(ResponseEvent.MiniAppSendTransaction, (payload)=> {
|
|
2013
2008
|
MiniKit.unsubscribe(ResponseEvent.MiniAppSendTransaction);
|
|
2014
2009
|
if (payload.status == "success") {
|
|
2015
2010
|
if (transaction.accepted) { transaction.accepted(); }
|
|
@@ -2024,7 +2019,7 @@ class WorldApp {
|
|
|
2024
2019
|
reject('Submitting transaction failed!');
|
|
2025
2020
|
}
|
|
2026
2021
|
});
|
|
2027
|
-
|
|
2022
|
+
MiniKit.commands.sendTransaction({
|
|
2028
2023
|
transaction: [
|
|
2029
2024
|
{
|
|
2030
2025
|
address: transaction.to,
|
|
@@ -2035,17 +2030,6 @@ class WorldApp {
|
|
|
2035
2030
|
],
|
|
2036
2031
|
permit2: [_optionalChain$1([transaction, 'access', _13 => _13.params, 'optionalAccess', _14 => _14.permit2])]
|
|
2037
2032
|
});
|
|
2038
|
-
MiniKit.commands.sendTransaction({
|
|
2039
|
-
transaction: [
|
|
2040
|
-
{
|
|
2041
|
-
address: transaction.to,
|
|
2042
|
-
abi: _optionalChain$1([transaction, 'access', _15 => _15.api, 'optionalAccess', _16 => _16.filter, 'call', _17 => _17((fragment)=>fragment.name === transaction.method && _optionalChain$1([fragment, 'optionalAccess', _18 => _18.inputs, 'optionalAccess', _19 => _19.length]) === _optionalChain$1([transaction, 'access', _20 => _20.params, 'optionalAccess', _21 => _21.args, 'optionalAccess', _22 => _22.length]))]),
|
|
2043
|
-
functionName: transaction.method,
|
|
2044
|
-
args: _optionalChain$1([transaction, 'access', _23 => _23.params, 'optionalAccess', _24 => _24.args])
|
|
2045
|
-
},
|
|
2046
|
-
],
|
|
2047
|
-
permit2: [_optionalChain$1([transaction, 'access', _25 => _25.params, 'optionalAccess', _26 => _26.permit2])]
|
|
2048
|
-
});
|
|
2049
2033
|
})
|
|
2050
2034
|
}
|
|
2051
2035
|
|
|
@@ -2066,8 +2050,8 @@ class WorldApp {
|
|
|
2066
2050
|
}).then((response)=>{
|
|
2067
2051
|
if(response.ok) {
|
|
2068
2052
|
response.json().then((transactionJSON)=>{
|
|
2069
|
-
if(_optionalChain$1([transactionJSON, 'optionalAccess',
|
|
2070
|
-
resolve(_optionalChain$1([transactionJSON, 'optionalAccess',
|
|
2053
|
+
if(_optionalChain$1([transactionJSON, 'optionalAccess', _15 => _15.external_id])) {
|
|
2054
|
+
resolve(_optionalChain$1([transactionJSON, 'optionalAccess', _16 => _16.external_id]));
|
|
2071
2055
|
} else {
|
|
2072
2056
|
resolve();
|
|
2073
2057
|
}
|
|
@@ -2163,7 +2147,7 @@ class WorldApp {
|
|
|
2163
2147
|
if(localStorage.getItem(STORAGE_KEY)) {
|
|
2164
2148
|
return localStorage.getItem(STORAGE_KEY)
|
|
2165
2149
|
}
|
|
2166
|
-
return (_optionalChain$1([window, 'access',
|
|
2150
|
+
return (_optionalChain$1([window, 'access', _17 => _17.MiniKit, 'access', _18 => _18.user, 'optionalAccess', _19 => _19.walletAddress]) || _optionalChain$1([MiniKit, 'access', _20 => _20.user, 'optionalAccess', _21 => _21.walletAddress]))
|
|
2167
2151
|
}
|
|
2168
2152
|
|
|
2169
2153
|
connect() {
|
package/dist/esm/index.js
CHANGED
|
@@ -472,11 +472,9 @@ const sendTransaction$2 = async ({ transaction, wallet })=> {
|
|
|
472
472
|
};
|
|
473
473
|
|
|
474
474
|
const retrieveConfirmedTransaction$2 = (sentTransaction)=>{
|
|
475
|
-
console.log('retrieveConfirmedTransaction', sentTransaction);
|
|
476
475
|
return new Promise((resolve, reject)=>{
|
|
477
476
|
try {
|
|
478
477
|
sentTransaction.wait(1).then(resolve).catch((error)=>{
|
|
479
|
-
console.log('error', error);
|
|
480
478
|
if(
|
|
481
479
|
(error && _optionalChain$y([error, 'optionalAccess', _ => _.stack, 'optionalAccess', _2 => _2.match, 'call', _3 => _3('JSON-RPC error')])) ||
|
|
482
480
|
(error && error.toString().match('undefined'))
|
|
@@ -491,7 +489,6 @@ const retrieveConfirmedTransaction$2 = (sentTransaction)=>{
|
|
|
491
489
|
}
|
|
492
490
|
});
|
|
493
491
|
} catch(error) {
|
|
494
|
-
console.log('ERROR', error);
|
|
495
492
|
if(
|
|
496
493
|
(error && _optionalChain$y([error, 'optionalAccess', _4 => _4.stack, 'optionalAccess', _5 => _5.match, 'call', _6 => _6('JSON-RPC error')])) ||
|
|
497
494
|
(error && error.toString().match('undefined'))
|
|
@@ -2606,11 +2603,9 @@ class WorldApp {
|
|
|
2606
2603
|
|
|
2607
2604
|
return new Promise(async(resolve, reject)=>{
|
|
2608
2605
|
await transaction.prepare({ wallet: this });
|
|
2609
|
-
transaction.nonce = (await this.transactionCount({ blockchain: 'worldchain', address: transaction.from })).toString();
|
|
2610
2606
|
transaction.fromBlock = await request('worldchain://latestBlockNumber');
|
|
2611
2607
|
|
|
2612
|
-
MiniKit.subscribe(ResponseEvent.MiniAppSendTransaction, (payload
|
|
2613
|
-
console.log('payload', payload);
|
|
2608
|
+
MiniKit.subscribe(ResponseEvent.MiniAppSendTransaction, (payload)=> {
|
|
2614
2609
|
MiniKit.unsubscribe(ResponseEvent.MiniAppSendTransaction);
|
|
2615
2610
|
if (payload.status == "success") {
|
|
2616
2611
|
if (transaction.accepted) { transaction.accepted(); }
|
|
@@ -2625,7 +2620,7 @@ class WorldApp {
|
|
|
2625
2620
|
reject('Submitting transaction failed!');
|
|
2626
2621
|
}
|
|
2627
2622
|
});
|
|
2628
|
-
|
|
2623
|
+
MiniKit.commands.sendTransaction({
|
|
2629
2624
|
transaction: [
|
|
2630
2625
|
{
|
|
2631
2626
|
address: transaction.to,
|
|
@@ -2636,17 +2631,6 @@ class WorldApp {
|
|
|
2636
2631
|
],
|
|
2637
2632
|
permit2: [_optionalChain$1([transaction, 'access', _13 => _13.params, 'optionalAccess', _14 => _14.permit2])]
|
|
2638
2633
|
});
|
|
2639
|
-
MiniKit.commands.sendTransaction({
|
|
2640
|
-
transaction: [
|
|
2641
|
-
{
|
|
2642
|
-
address: transaction.to,
|
|
2643
|
-
abi: _optionalChain$1([transaction, 'access', _15 => _15.api, 'optionalAccess', _16 => _16.filter, 'call', _17 => _17((fragment)=>fragment.name === transaction.method && _optionalChain$1([fragment, 'optionalAccess', _18 => _18.inputs, 'optionalAccess', _19 => _19.length]) === _optionalChain$1([transaction, 'access', _20 => _20.params, 'optionalAccess', _21 => _21.args, 'optionalAccess', _22 => _22.length]))]),
|
|
2644
|
-
functionName: transaction.method,
|
|
2645
|
-
args: _optionalChain$1([transaction, 'access', _23 => _23.params, 'optionalAccess', _24 => _24.args])
|
|
2646
|
-
},
|
|
2647
|
-
],
|
|
2648
|
-
permit2: [_optionalChain$1([transaction, 'access', _25 => _25.params, 'optionalAccess', _26 => _26.permit2])]
|
|
2649
|
-
});
|
|
2650
2634
|
})
|
|
2651
2635
|
}
|
|
2652
2636
|
|
|
@@ -2667,8 +2651,8 @@ class WorldApp {
|
|
|
2667
2651
|
}).then((response)=>{
|
|
2668
2652
|
if(response.ok) {
|
|
2669
2653
|
response.json().then((transactionJSON)=>{
|
|
2670
|
-
if(_optionalChain$1([transactionJSON, 'optionalAccess',
|
|
2671
|
-
resolve(_optionalChain$1([transactionJSON, 'optionalAccess',
|
|
2654
|
+
if(_optionalChain$1([transactionJSON, 'optionalAccess', _15 => _15.external_id])) {
|
|
2655
|
+
resolve(_optionalChain$1([transactionJSON, 'optionalAccess', _16 => _16.external_id]));
|
|
2672
2656
|
} else {
|
|
2673
2657
|
resolve();
|
|
2674
2658
|
}
|
|
@@ -2764,7 +2748,7 @@ class WorldApp {
|
|
|
2764
2748
|
if(localStorage.getItem(STORAGE_KEY)) {
|
|
2765
2749
|
return localStorage.getItem(STORAGE_KEY)
|
|
2766
2750
|
}
|
|
2767
|
-
return (_optionalChain$1([window, 'access',
|
|
2751
|
+
return (_optionalChain$1([window, 'access', _17 => _17.MiniKit, 'access', _18 => _18.user, 'optionalAccess', _19 => _19.walletAddress]) || _optionalChain$1([MiniKit, 'access', _20 => _20.user, 'optionalAccess', _21 => _21.walletAddress]))
|
|
2768
2752
|
}
|
|
2769
2753
|
|
|
2770
2754
|
connect() {
|
package/dist/umd/index.evm.js
CHANGED
|
@@ -203,11 +203,9 @@
|
|
|
203
203
|
};
|
|
204
204
|
|
|
205
205
|
const retrieveConfirmedTransaction$2 = (sentTransaction)=>{
|
|
206
|
-
console.log('retrieveConfirmedTransaction', sentTransaction);
|
|
207
206
|
return new Promise((resolve, reject)=>{
|
|
208
207
|
try {
|
|
209
208
|
sentTransaction.wait(1).then(resolve).catch((error)=>{
|
|
210
|
-
console.log('error', error);
|
|
211
209
|
if(
|
|
212
210
|
(error && _optionalChain$p([error, 'optionalAccess', _ => _.stack, 'optionalAccess', _2 => _2.match, 'call', _3 => _3('JSON-RPC error')])) ||
|
|
213
211
|
(error && error.toString().match('undefined'))
|
|
@@ -222,7 +220,6 @@
|
|
|
222
220
|
}
|
|
223
221
|
});
|
|
224
222
|
} catch(error) {
|
|
225
|
-
console.log('ERROR', error);
|
|
226
223
|
if(
|
|
227
224
|
(error && _optionalChain$p([error, 'optionalAccess', _4 => _4.stack, 'optionalAccess', _5 => _5.match, 'call', _6 => _6('JSON-RPC error')])) ||
|
|
228
225
|
(error && error.toString().match('undefined'))
|
|
@@ -2009,11 +2006,9 @@
|
|
|
2009
2006
|
|
|
2010
2007
|
return new Promise(async(resolve, reject)=>{
|
|
2011
2008
|
await transaction.prepare({ wallet: this });
|
|
2012
|
-
transaction.nonce = (await this.transactionCount({ blockchain: 'worldchain', address: transaction.from })).toString();
|
|
2013
2009
|
transaction.fromBlock = await web3ClientEvm.request('worldchain://latestBlockNumber');
|
|
2014
2010
|
|
|
2015
|
-
MiniKit.subscribe(ResponseEvent.MiniAppSendTransaction, (payload
|
|
2016
|
-
console.log('payload', payload);
|
|
2011
|
+
MiniKit.subscribe(ResponseEvent.MiniAppSendTransaction, (payload)=> {
|
|
2017
2012
|
MiniKit.unsubscribe(ResponseEvent.MiniAppSendTransaction);
|
|
2018
2013
|
if (payload.status == "success") {
|
|
2019
2014
|
if (transaction.accepted) { transaction.accepted(); }
|
|
@@ -2028,7 +2023,7 @@
|
|
|
2028
2023
|
reject('Submitting transaction failed!');
|
|
2029
2024
|
}
|
|
2030
2025
|
});
|
|
2031
|
-
|
|
2026
|
+
MiniKit.commands.sendTransaction({
|
|
2032
2027
|
transaction: [
|
|
2033
2028
|
{
|
|
2034
2029
|
address: transaction.to,
|
|
@@ -2039,17 +2034,6 @@
|
|
|
2039
2034
|
],
|
|
2040
2035
|
permit2: [_optionalChain$1([transaction, 'access', _13 => _13.params, 'optionalAccess', _14 => _14.permit2])]
|
|
2041
2036
|
});
|
|
2042
|
-
MiniKit.commands.sendTransaction({
|
|
2043
|
-
transaction: [
|
|
2044
|
-
{
|
|
2045
|
-
address: transaction.to,
|
|
2046
|
-
abi: _optionalChain$1([transaction, 'access', _15 => _15.api, 'optionalAccess', _16 => _16.filter, 'call', _17 => _17((fragment)=>fragment.name === transaction.method && _optionalChain$1([fragment, 'optionalAccess', _18 => _18.inputs, 'optionalAccess', _19 => _19.length]) === _optionalChain$1([transaction, 'access', _20 => _20.params, 'optionalAccess', _21 => _21.args, 'optionalAccess', _22 => _22.length]))]),
|
|
2047
|
-
functionName: transaction.method,
|
|
2048
|
-
args: _optionalChain$1([transaction, 'access', _23 => _23.params, 'optionalAccess', _24 => _24.args])
|
|
2049
|
-
},
|
|
2050
|
-
],
|
|
2051
|
-
permit2: [_optionalChain$1([transaction, 'access', _25 => _25.params, 'optionalAccess', _26 => _26.permit2])]
|
|
2052
|
-
});
|
|
2053
2037
|
})
|
|
2054
2038
|
}
|
|
2055
2039
|
|
|
@@ -2070,8 +2054,8 @@
|
|
|
2070
2054
|
}).then((response)=>{
|
|
2071
2055
|
if(response.ok) {
|
|
2072
2056
|
response.json().then((transactionJSON)=>{
|
|
2073
|
-
if(_optionalChain$1([transactionJSON, 'optionalAccess',
|
|
2074
|
-
resolve(_optionalChain$1([transactionJSON, 'optionalAccess',
|
|
2057
|
+
if(_optionalChain$1([transactionJSON, 'optionalAccess', _15 => _15.external_id])) {
|
|
2058
|
+
resolve(_optionalChain$1([transactionJSON, 'optionalAccess', _16 => _16.external_id]));
|
|
2075
2059
|
} else {
|
|
2076
2060
|
resolve();
|
|
2077
2061
|
}
|
|
@@ -2167,7 +2151,7 @@
|
|
|
2167
2151
|
if(localStorage.getItem(STORAGE_KEY)) {
|
|
2168
2152
|
return localStorage.getItem(STORAGE_KEY)
|
|
2169
2153
|
}
|
|
2170
|
-
return (_optionalChain$1([window, 'access',
|
|
2154
|
+
return (_optionalChain$1([window, 'access', _17 => _17.MiniKit, 'access', _18 => _18.user, 'optionalAccess', _19 => _19.walletAddress]) || _optionalChain$1([MiniKit, 'access', _20 => _20.user, 'optionalAccess', _21 => _21.walletAddress]))
|
|
2171
2155
|
}
|
|
2172
2156
|
|
|
2173
2157
|
connect() {
|
package/dist/umd/index.js
CHANGED
|
@@ -475,11 +475,9 @@
|
|
|
475
475
|
};
|
|
476
476
|
|
|
477
477
|
const retrieveConfirmedTransaction$2 = (sentTransaction)=>{
|
|
478
|
-
console.log('retrieveConfirmedTransaction', sentTransaction);
|
|
479
478
|
return new Promise((resolve, reject)=>{
|
|
480
479
|
try {
|
|
481
480
|
sentTransaction.wait(1).then(resolve).catch((error)=>{
|
|
482
|
-
console.log('error', error);
|
|
483
481
|
if(
|
|
484
482
|
(error && _optionalChain$y([error, 'optionalAccess', _ => _.stack, 'optionalAccess', _2 => _2.match, 'call', _3 => _3('JSON-RPC error')])) ||
|
|
485
483
|
(error && error.toString().match('undefined'))
|
|
@@ -494,7 +492,6 @@
|
|
|
494
492
|
}
|
|
495
493
|
});
|
|
496
494
|
} catch(error) {
|
|
497
|
-
console.log('ERROR', error);
|
|
498
495
|
if(
|
|
499
496
|
(error && _optionalChain$y([error, 'optionalAccess', _4 => _4.stack, 'optionalAccess', _5 => _5.match, 'call', _6 => _6('JSON-RPC error')])) ||
|
|
500
497
|
(error && error.toString().match('undefined'))
|
|
@@ -2609,11 +2606,9 @@
|
|
|
2609
2606
|
|
|
2610
2607
|
return new Promise(async(resolve, reject)=>{
|
|
2611
2608
|
await transaction.prepare({ wallet: this });
|
|
2612
|
-
transaction.nonce = (await this.transactionCount({ blockchain: 'worldchain', address: transaction.from })).toString();
|
|
2613
2609
|
transaction.fromBlock = await web3Client.request('worldchain://latestBlockNumber');
|
|
2614
2610
|
|
|
2615
|
-
MiniKit.subscribe(ResponseEvent.MiniAppSendTransaction, (payload
|
|
2616
|
-
console.log('payload', payload);
|
|
2611
|
+
MiniKit.subscribe(ResponseEvent.MiniAppSendTransaction, (payload)=> {
|
|
2617
2612
|
MiniKit.unsubscribe(ResponseEvent.MiniAppSendTransaction);
|
|
2618
2613
|
if (payload.status == "success") {
|
|
2619
2614
|
if (transaction.accepted) { transaction.accepted(); }
|
|
@@ -2628,7 +2623,7 @@
|
|
|
2628
2623
|
reject('Submitting transaction failed!');
|
|
2629
2624
|
}
|
|
2630
2625
|
});
|
|
2631
|
-
|
|
2626
|
+
MiniKit.commands.sendTransaction({
|
|
2632
2627
|
transaction: [
|
|
2633
2628
|
{
|
|
2634
2629
|
address: transaction.to,
|
|
@@ -2639,17 +2634,6 @@
|
|
|
2639
2634
|
],
|
|
2640
2635
|
permit2: [_optionalChain$1([transaction, 'access', _13 => _13.params, 'optionalAccess', _14 => _14.permit2])]
|
|
2641
2636
|
});
|
|
2642
|
-
MiniKit.commands.sendTransaction({
|
|
2643
|
-
transaction: [
|
|
2644
|
-
{
|
|
2645
|
-
address: transaction.to,
|
|
2646
|
-
abi: _optionalChain$1([transaction, 'access', _15 => _15.api, 'optionalAccess', _16 => _16.filter, 'call', _17 => _17((fragment)=>fragment.name === transaction.method && _optionalChain$1([fragment, 'optionalAccess', _18 => _18.inputs, 'optionalAccess', _19 => _19.length]) === _optionalChain$1([transaction, 'access', _20 => _20.params, 'optionalAccess', _21 => _21.args, 'optionalAccess', _22 => _22.length]))]),
|
|
2647
|
-
functionName: transaction.method,
|
|
2648
|
-
args: _optionalChain$1([transaction, 'access', _23 => _23.params, 'optionalAccess', _24 => _24.args])
|
|
2649
|
-
},
|
|
2650
|
-
],
|
|
2651
|
-
permit2: [_optionalChain$1([transaction, 'access', _25 => _25.params, 'optionalAccess', _26 => _26.permit2])]
|
|
2652
|
-
});
|
|
2653
2637
|
})
|
|
2654
2638
|
}
|
|
2655
2639
|
|
|
@@ -2670,8 +2654,8 @@
|
|
|
2670
2654
|
}).then((response)=>{
|
|
2671
2655
|
if(response.ok) {
|
|
2672
2656
|
response.json().then((transactionJSON)=>{
|
|
2673
|
-
if(_optionalChain$1([transactionJSON, 'optionalAccess',
|
|
2674
|
-
resolve(_optionalChain$1([transactionJSON, 'optionalAccess',
|
|
2657
|
+
if(_optionalChain$1([transactionJSON, 'optionalAccess', _15 => _15.external_id])) {
|
|
2658
|
+
resolve(_optionalChain$1([transactionJSON, 'optionalAccess', _16 => _16.external_id]));
|
|
2675
2659
|
} else {
|
|
2676
2660
|
resolve();
|
|
2677
2661
|
}
|
|
@@ -2767,7 +2751,7 @@
|
|
|
2767
2751
|
if(localStorage.getItem(STORAGE_KEY)) {
|
|
2768
2752
|
return localStorage.getItem(STORAGE_KEY)
|
|
2769
2753
|
}
|
|
2770
|
-
return (_optionalChain$1([window, 'access',
|
|
2754
|
+
return (_optionalChain$1([window, 'access', _17 => _17.MiniKit, 'access', _18 => _18.user, 'optionalAccess', _19 => _19.walletAddress]) || _optionalChain$1([MiniKit, 'access', _20 => _20.user, 'optionalAccess', _21 => _21.walletAddress]))
|
|
2771
2755
|
}
|
|
2772
2756
|
|
|
2773
2757
|
connect() {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depay/web3-wallets-svm",
|
|
3
3
|
"moduleName": "Web3Wallets",
|
|
4
|
-
"version": "18.1.
|
|
4
|
+
"version": "18.1.11",
|
|
5
5
|
"description": "One-Stop-Shop JavaScript library to integrate various web3 crypto wallets and multiple blockchains at once with a single interface.",
|
|
6
6
|
"main": "dist/umd/index.svm.js",
|
|
7
7
|
"module": "dist/esm/index.svm.js",
|