@agentxv2/sdk 0.3.1 → 0.4.0
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/README.md +14 -5
- package/dist/index.js +20 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -2
- package/dist/index.mjs.map +1 -1
- package/dist/react.js +20 -2
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +20 -2
- package/dist/react.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2072,8 +2072,8 @@ var CONFIG_ABI = {
|
|
|
2072
2072
|
}
|
|
2073
2073
|
};
|
|
2074
2074
|
var KNOWN_CHAINS = {
|
|
2075
|
-
// Sepolia
|
|
2076
|
-
//
|
|
2075
|
+
// Sepolia Testnet
|
|
2076
|
+
// v3 (deployed 2026-07-13): platformFee=250bps(2.5%), ReentrancyGuard, audit fixes
|
|
2077
2077
|
11155111: {
|
|
2078
2078
|
chainId: 11155111,
|
|
2079
2079
|
contracts: {
|
|
@@ -2085,6 +2085,24 @@ var KNOWN_CHAINS = {
|
|
|
2085
2085
|
configurationRegistry: "0x0000000000000000000000000000000000000000"
|
|
2086
2086
|
},
|
|
2087
2087
|
ipfsGateways: ["ipfs.io", "gateway.pinata.cloud", "dweb.link", "cf-ipfs.com"]
|
|
2088
|
+
},
|
|
2089
|
+
// OxaChain L1 Mainnet
|
|
2090
|
+
// Chain ID 19505, Clique PoA, Shanghai+Cancun, gas token T0x
|
|
2091
|
+
// Deployer: 0x8E869A0624fF9e766Df71b5B08897d00E4d260ba
|
|
2092
|
+
// RPC: http://43.156.99.215:18545
|
|
2093
|
+
// Explorer: http://43.156.99.215:18400
|
|
2094
|
+
19505: {
|
|
2095
|
+
chainId: 19505,
|
|
2096
|
+
contracts: {
|
|
2097
|
+
identityRegistry: "0x0292af212Ce34bbCd95BbC69F4F8c9f7ae123902",
|
|
2098
|
+
subscriptionManager: "0x37BA9DdfE66Aa86f920a34Ae0ae268342151E249",
|
|
2099
|
+
paymentGateway: "0x0000000000000000000000000000000000000000",
|
|
2100
|
+
a2aProtocolRegistry: "0x0000000000000000000000000000000000000000",
|
|
2101
|
+
reputationRegistry: "0x0000000000000000000000000000000000000000",
|
|
2102
|
+
configurationRegistry: "0x0000000000000000000000000000000000000000"
|
|
2103
|
+
},
|
|
2104
|
+
ipfsGateways: ["ipfs.io", "gateway.pinata.cloud", "dweb.link", "cf-ipfs.com"],
|
|
2105
|
+
rpcUrl: "http://43.156.99.215:18545"
|
|
2088
2106
|
}
|
|
2089
2107
|
};
|
|
2090
2108
|
var ConfigurationRegistry = class {
|