@depay/web3-wallets-evm 15.9.6 → 15.9.7
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 +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.solana.js +2 -2
- package/dist/umd/index.evm.js +2 -2
- package/dist/umd/index.js +2 -2
- package/dist/umd/index.solana.js +2 -2
- package/package.json +1 -1
package/dist/esm/index.evm.js
CHANGED
|
@@ -41951,8 +41951,8 @@ const submitInstructions = async ({ transaction, wallet })=> {
|
|
|
41951
41951
|
recentBlockhash,
|
|
41952
41952
|
instructions: transaction.instructions,
|
|
41953
41953
|
}).compileToV0Message(
|
|
41954
|
-
transaction.alts ? Promise.all(transaction.alts.map(async(alt)=>{
|
|
41955
|
-
return
|
|
41954
|
+
transaction.alts ? await Promise.all(transaction.alts.map(async(alt)=>{
|
|
41955
|
+
return (await getProvider('solana')).getAddressLookupTable(new PublicKey(alt)).then((res) => res.value)
|
|
41956
41956
|
})) : undefined);
|
|
41957
41957
|
const transactionV0 = new VersionedTransaction(messageV0);
|
|
41958
41958
|
if(transaction.signers && transaction.signers.length) {
|
package/dist/esm/index.js
CHANGED
|
@@ -519,8 +519,8 @@ const submitInstructions = async ({ transaction, wallet })=> {
|
|
|
519
519
|
recentBlockhash,
|
|
520
520
|
instructions: transaction.instructions,
|
|
521
521
|
}).compileToV0Message(
|
|
522
|
-
transaction.alts ? Promise.all(transaction.alts.map(async(alt)=>{
|
|
523
|
-
return
|
|
522
|
+
transaction.alts ? await Promise.all(transaction.alts.map(async(alt)=>{
|
|
523
|
+
return (await getProvider('solana')).getAddressLookupTable(new PublicKey(alt)).then((res) => res.value)
|
|
524
524
|
})) : undefined);
|
|
525
525
|
const transactionV0 = new VersionedTransaction(messageV0);
|
|
526
526
|
if(transaction.signers && transaction.signers.length) {
|
package/dist/esm/index.solana.js
CHANGED
|
@@ -1260,8 +1260,8 @@ const submitInstructions = async ({ transaction, wallet })=> {
|
|
|
1260
1260
|
recentBlockhash,
|
|
1261
1261
|
instructions: transaction.instructions,
|
|
1262
1262
|
}).compileToV0Message(
|
|
1263
|
-
transaction.alts ? Promise.all(transaction.alts.map(async(alt)=>{
|
|
1264
|
-
return
|
|
1263
|
+
transaction.alts ? await Promise.all(transaction.alts.map(async(alt)=>{
|
|
1264
|
+
return (await getProvider('solana')).getAddressLookupTable(new PublicKey(alt)).then((res) => res.value)
|
|
1265
1265
|
})) : undefined);
|
|
1266
1266
|
const transactionV0 = new VersionedTransaction(messageV0);
|
|
1267
1267
|
if(transaction.signers && transaction.signers.length) {
|
package/dist/umd/index.evm.js
CHANGED
|
@@ -41955,8 +41955,8 @@
|
|
|
41955
41955
|
recentBlockhash,
|
|
41956
41956
|
instructions: transaction.instructions,
|
|
41957
41957
|
}).compileToV0Message(
|
|
41958
|
-
transaction.alts ? Promise.all(transaction.alts.map(async(alt)=>{
|
|
41959
|
-
return
|
|
41958
|
+
transaction.alts ? await Promise.all(transaction.alts.map(async(alt)=>{
|
|
41959
|
+
return (await web3ClientEvm.getProvider('solana')).getAddressLookupTable(new PublicKey(alt)).then((res) => res.value)
|
|
41960
41960
|
})) : undefined);
|
|
41961
41961
|
const transactionV0 = new VersionedTransaction(messageV0);
|
|
41962
41962
|
if(transaction.signers && transaction.signers.length) {
|
package/dist/umd/index.js
CHANGED
|
@@ -522,8 +522,8 @@
|
|
|
522
522
|
recentBlockhash,
|
|
523
523
|
instructions: transaction.instructions,
|
|
524
524
|
}).compileToV0Message(
|
|
525
|
-
transaction.alts ? Promise.all(transaction.alts.map(async(alt)=>{
|
|
526
|
-
return
|
|
525
|
+
transaction.alts ? await Promise.all(transaction.alts.map(async(alt)=>{
|
|
526
|
+
return (await web3Client.getProvider('solana')).getAddressLookupTable(new solanaWeb3_js.PublicKey(alt)).then((res) => res.value)
|
|
527
527
|
})) : undefined);
|
|
528
528
|
const transactionV0 = new solanaWeb3_js.VersionedTransaction(messageV0);
|
|
529
529
|
if(transaction.signers && transaction.signers.length) {
|
package/dist/umd/index.solana.js
CHANGED
|
@@ -1263,8 +1263,8 @@
|
|
|
1263
1263
|
recentBlockhash,
|
|
1264
1264
|
instructions: transaction.instructions,
|
|
1265
1265
|
}).compileToV0Message(
|
|
1266
|
-
transaction.alts ? Promise.all(transaction.alts.map(async(alt)=>{
|
|
1267
|
-
return
|
|
1266
|
+
transaction.alts ? await Promise.all(transaction.alts.map(async(alt)=>{
|
|
1267
|
+
return (await web3ClientSolana.getProvider('solana')).getAddressLookupTable(new solanaWeb3_js.PublicKey(alt)).then((res) => res.value)
|
|
1268
1268
|
})) : undefined);
|
|
1269
1269
|
const transactionV0 = new solanaWeb3_js.VersionedTransaction(messageV0);
|
|
1270
1270
|
if(transaction.signers && transaction.signers.length) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@depay/web3-wallets-evm",
|
|
3
3
|
"moduleName": "Web3Wallets",
|
|
4
|
-
"version": "15.9.
|
|
4
|
+
"version": "15.9.7",
|
|
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.evm.js",
|
|
7
7
|
"module": "dist/esm/index.evm.js",
|