@joai/warps-adapter-fastset 1.1.1 → 1.1.2
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
|
@@ -1692,6 +1692,12 @@ var WarpFastsetExecutor = class {
|
|
|
1692
1692
|
async executeQuery(executable) {
|
|
1693
1693
|
throw new Error("WarpFastsetExecutor: Not implemented");
|
|
1694
1694
|
}
|
|
1695
|
+
async createDeployTransaction() {
|
|
1696
|
+
throw new Error("WarpFastsetExecutor: Contract deployment not supported");
|
|
1697
|
+
}
|
|
1698
|
+
async createUpgradeTransaction() {
|
|
1699
|
+
throw new Error("WarpFastsetExecutor: Contract upgrade not supported");
|
|
1700
|
+
}
|
|
1695
1701
|
};
|
|
1696
1702
|
|
|
1697
1703
|
// src/WarpFastsetExplorer.ts
|