@joai/warps-adapter-evm 1.4.0 → 1.4.1
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -228,6 +228,8 @@ declare class WarpEvmExecutor implements AdapterWarpExecutor {
|
|
|
228
228
|
private getPayableValue;
|
|
229
229
|
private findNativeTokenAsset;
|
|
230
230
|
private prepareNativeArgs;
|
|
231
|
+
createDeployTransaction(): Promise<never>;
|
|
232
|
+
createUpgradeTransaction(): Promise<never>;
|
|
231
233
|
}
|
|
232
234
|
|
|
233
235
|
declare class WarpEvmExplorer implements AdapterWarpExplorer {
|
package/dist/index.d.ts
CHANGED
|
@@ -228,6 +228,8 @@ declare class WarpEvmExecutor implements AdapterWarpExecutor {
|
|
|
228
228
|
private getPayableValue;
|
|
229
229
|
private findNativeTokenAsset;
|
|
230
230
|
private prepareNativeArgs;
|
|
231
|
+
createDeployTransaction(): Promise<never>;
|
|
232
|
+
createUpgradeTransaction(): Promise<never>;
|
|
231
233
|
}
|
|
232
234
|
|
|
233
235
|
declare class WarpEvmExplorer implements AdapterWarpExplorer {
|
package/dist/index.js
CHANGED
|
@@ -1845,6 +1845,12 @@ var WarpEvmExecutor = class {
|
|
|
1845
1845
|
return nativeValue;
|
|
1846
1846
|
});
|
|
1847
1847
|
}
|
|
1848
|
+
async createDeployTransaction() {
|
|
1849
|
+
throw new Error("WarpEvmExecutor: Contract deployment not supported");
|
|
1850
|
+
}
|
|
1851
|
+
async createUpgradeTransaction() {
|
|
1852
|
+
throw new Error("WarpEvmExecutor: Contract upgrade not supported");
|
|
1853
|
+
}
|
|
1848
1854
|
};
|
|
1849
1855
|
|
|
1850
1856
|
// src/WarpEvmExplorer.ts
|