@virtuals-protocol/acp-node 0.1.0-beta.10 → 0.1.0-beta.11
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
|
@@ -771,7 +771,7 @@ var import_smart_contracts = require("@account-kit/smart-contracts");
|
|
|
771
771
|
var import_infra = require("@account-kit/infra");
|
|
772
772
|
var baseSepoliaAcpConfig = {
|
|
773
773
|
chain: import_infra.baseSepolia,
|
|
774
|
-
contractAddress: "
|
|
774
|
+
contractAddress: "0xD1D196Ac27Fd386dDc04879a86C074aBF3AD9d0f",
|
|
775
775
|
virtualsTokenAddress: "0xbfAB80ccc15DF6fb7185f9498d6039317331846a",
|
|
776
776
|
alchemyRpcUrl: "https://alchemy-proxy.virtuals.io/api/proxy/rpc",
|
|
777
777
|
acpUrl: "https://acpx-staging.virtuals.io"
|
|
@@ -1166,7 +1166,8 @@ var AcpClient = class {
|
|
|
1166
1166
|
walletAddress: this.acpContractClient.walletAddress
|
|
1167
1167
|
}), this.onEvaluate !== this.defaultOnEvaluate && {
|
|
1168
1168
|
evaluatorAddress: this.acpContractClient.walletAddress
|
|
1169
|
-
})
|
|
1169
|
+
}),
|
|
1170
|
+
transports: ["websocket"]
|
|
1170
1171
|
});
|
|
1171
1172
|
socket.on("roomJoined" /* ROOM_JOINED */, (_, callback) => {
|
|
1172
1173
|
console.log("Joined ACP Room");
|
package/dist/index.mjs
CHANGED
|
@@ -731,7 +731,7 @@ import {
|
|
|
731
731
|
import { baseSepolia, base } from "@account-kit/infra";
|
|
732
732
|
var baseSepoliaAcpConfig = {
|
|
733
733
|
chain: baseSepolia,
|
|
734
|
-
contractAddress: "
|
|
734
|
+
contractAddress: "0xD1D196Ac27Fd386dDc04879a86C074aBF3AD9d0f",
|
|
735
735
|
virtualsTokenAddress: "0xbfAB80ccc15DF6fb7185f9498d6039317331846a",
|
|
736
736
|
alchemyRpcUrl: "https://alchemy-proxy.virtuals.io/api/proxy/rpc",
|
|
737
737
|
acpUrl: "https://acpx-staging.virtuals.io"
|
|
@@ -1126,7 +1126,8 @@ var AcpClient = class {
|
|
|
1126
1126
|
walletAddress: this.acpContractClient.walletAddress
|
|
1127
1127
|
}), this.onEvaluate !== this.defaultOnEvaluate && {
|
|
1128
1128
|
evaluatorAddress: this.acpContractClient.walletAddress
|
|
1129
|
-
})
|
|
1129
|
+
}),
|
|
1130
|
+
transports: ["websocket"]
|
|
1130
1131
|
});
|
|
1131
1132
|
socket.on("roomJoined" /* ROOM_JOINED */, (_, callback) => {
|
|
1132
1133
|
console.log("Joined ACP Room");
|