@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.mjs
CHANGED
|
@@ -1811,6 +1811,12 @@ var WarpEvmExecutor = class {
|
|
|
1811
1811
|
return nativeValue;
|
|
1812
1812
|
});
|
|
1813
1813
|
}
|
|
1814
|
+
async createDeployTransaction() {
|
|
1815
|
+
throw new Error("WarpEvmExecutor: Contract deployment not supported");
|
|
1816
|
+
}
|
|
1817
|
+
async createUpgradeTransaction() {
|
|
1818
|
+
throw new Error("WarpEvmExecutor: Contract upgrade not supported");
|
|
1819
|
+
}
|
|
1814
1820
|
};
|
|
1815
1821
|
|
|
1816
1822
|
// src/WarpEvmExplorer.ts
|