@joai/warps-adapter-solana 1.2.2 → 1.2.3
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
|
@@ -1558,6 +1558,12 @@ var WarpSolanaExecutor = class {
|
|
|
1558
1558
|
const computeUnitPriceIx = ComputeBudgetProgram.setComputeUnitPrice({ microLamports: WarpSolanaConstants.PriorityFee.Default });
|
|
1559
1559
|
return [computeUnitLimitIx, computeUnitPriceIx, ...instructions];
|
|
1560
1560
|
}
|
|
1561
|
+
async createDeployTransaction() {
|
|
1562
|
+
throw new Error("WarpSolanaExecutor: Contract deployment not supported");
|
|
1563
|
+
}
|
|
1564
|
+
async createUpgradeTransaction() {
|
|
1565
|
+
throw new Error("WarpSolanaExecutor: Contract upgrade not supported");
|
|
1566
|
+
}
|
|
1561
1567
|
};
|
|
1562
1568
|
|
|
1563
1569
|
// src/WarpSolanaExplorer.ts
|