@vleap/warps-adapter-fastset 0.1.0-beta.53 → 0.1.0-beta.54
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.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -2657,12 +2657,12 @@ var WarpFastsetWallet = class {
|
|
|
2657
2657
|
async sendTransactions(txs) {
|
|
2658
2658
|
return Promise.all(txs.map(async (tx) => this.sendTransaction(tx)));
|
|
2659
2659
|
}
|
|
2660
|
-
async importFromMnemonic(
|
|
2661
|
-
const walletProvider = this.createProviderForOperation(
|
|
2660
|
+
async importFromMnemonic(mnemonic) {
|
|
2661
|
+
const walletProvider = this.createProviderForOperation("mnemonic");
|
|
2662
2662
|
return await walletProvider.importFromMnemonic(mnemonic);
|
|
2663
2663
|
}
|
|
2664
|
-
async importFromPrivateKey(
|
|
2665
|
-
const walletProvider = this.createProviderForOperation(
|
|
2664
|
+
async importFromPrivateKey(privateKey) {
|
|
2665
|
+
const walletProvider = this.createProviderForOperation("privateKey");
|
|
2666
2666
|
return await walletProvider.importFromPrivateKey(privateKey);
|
|
2667
2667
|
}
|
|
2668
2668
|
async export(provider) {
|