@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.d.cts
CHANGED
|
@@ -12,6 +12,8 @@ declare class WarpFastsetExecutor implements AdapterWarpExecutor {
|
|
|
12
12
|
createTransferTransaction(executable: WarpExecutable): Promise<WarpAdapterGenericTransaction>;
|
|
13
13
|
createContractCallTransaction(executable: WarpExecutable): Promise<any>;
|
|
14
14
|
executeQuery(executable: WarpExecutable): Promise<any>;
|
|
15
|
+
createDeployTransaction(): Promise<never>;
|
|
16
|
+
createUpgradeTransaction(): Promise<never>;
|
|
15
17
|
}
|
|
16
18
|
|
|
17
19
|
declare class WarpFastsetWallet implements AdapterWarpWallet {
|
package/dist/index.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ declare class WarpFastsetExecutor implements AdapterWarpExecutor {
|
|
|
12
12
|
createTransferTransaction(executable: WarpExecutable): Promise<WarpAdapterGenericTransaction>;
|
|
13
13
|
createContractCallTransaction(executable: WarpExecutable): Promise<any>;
|
|
14
14
|
executeQuery(executable: WarpExecutable): Promise<any>;
|
|
15
|
+
createDeployTransaction(): Promise<never>;
|
|
16
|
+
createUpgradeTransaction(): Promise<never>;
|
|
15
17
|
}
|
|
16
18
|
|
|
17
19
|
declare class WarpFastsetWallet implements AdapterWarpWallet {
|
package/dist/index.js
CHANGED
|
@@ -1724,6 +1724,12 @@ var WarpFastsetExecutor = class {
|
|
|
1724
1724
|
async executeQuery(executable) {
|
|
1725
1725
|
throw new Error("WarpFastsetExecutor: Not implemented");
|
|
1726
1726
|
}
|
|
1727
|
+
async createDeployTransaction() {
|
|
1728
|
+
throw new Error("WarpFastsetExecutor: Contract deployment not supported");
|
|
1729
|
+
}
|
|
1730
|
+
async createUpgradeTransaction() {
|
|
1731
|
+
throw new Error("WarpFastsetExecutor: Contract upgrade not supported");
|
|
1732
|
+
}
|
|
1727
1733
|
};
|
|
1728
1734
|
|
|
1729
1735
|
// src/WarpFastsetExplorer.ts
|