@virtuals-protocol/acp-node 0.3.0-beta.7 → 0.3.0-beta.8
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.js +3 -2
- package/dist/index.mjs +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -55,7 +55,7 @@ var require_package = __commonJS({
|
|
|
55
55
|
"package.json"(exports2, module2) {
|
|
56
56
|
module2.exports = {
|
|
57
57
|
name: "@virtuals-protocol/acp-node",
|
|
58
|
-
version: "0.3.0-beta.
|
|
58
|
+
version: "0.3.0-beta.8",
|
|
59
59
|
main: "./dist/index.js",
|
|
60
60
|
module: "./dist/index.mjs",
|
|
61
61
|
types: "./dist/index.d.ts",
|
|
@@ -4380,7 +4380,8 @@ var import_viem5 = require("viem");
|
|
|
4380
4380
|
var AcpContractClient = class _AcpContractClient extends baseAcpContractClient_default {
|
|
4381
4381
|
constructor(agentWalletAddress, config = baseAcpConfig) {
|
|
4382
4382
|
super(agentWalletAddress, config);
|
|
4383
|
-
this.MAX_RETRIES =
|
|
4383
|
+
this.MAX_RETRIES = 10;
|
|
4384
|
+
// temp fix, while alchemy taking alook into it
|
|
4384
4385
|
this.PRIORITY_FEE_MULTIPLIER = 2;
|
|
4385
4386
|
this.MAX_FEE_PER_GAS = 2e7;
|
|
4386
4387
|
this.MAX_PRIORITY_FEE_PER_GAS = 21e6;
|
package/dist/index.mjs
CHANGED
|
@@ -28,7 +28,7 @@ var require_package = __commonJS({
|
|
|
28
28
|
"package.json"(exports, module) {
|
|
29
29
|
module.exports = {
|
|
30
30
|
name: "@virtuals-protocol/acp-node",
|
|
31
|
-
version: "0.3.0-beta.
|
|
31
|
+
version: "0.3.0-beta.8",
|
|
32
32
|
main: "./dist/index.js",
|
|
33
33
|
module: "./dist/index.mjs",
|
|
34
34
|
types: "./dist/index.d.ts",
|
|
@@ -4334,7 +4334,8 @@ import { decodeEventLog, encodeFunctionData as encodeFunctionData2 } from "viem"
|
|
|
4334
4334
|
var AcpContractClient = class _AcpContractClient extends baseAcpContractClient_default {
|
|
4335
4335
|
constructor(agentWalletAddress, config = baseAcpConfig) {
|
|
4336
4336
|
super(agentWalletAddress, config);
|
|
4337
|
-
this.MAX_RETRIES =
|
|
4337
|
+
this.MAX_RETRIES = 10;
|
|
4338
|
+
// temp fix, while alchemy taking alook into it
|
|
4338
4339
|
this.PRIORITY_FEE_MULTIPLIER = 2;
|
|
4339
4340
|
this.MAX_FEE_PER_GAS = 2e7;
|
|
4340
4341
|
this.MAX_PRIORITY_FEE_PER_GAS = 21e6;
|