@agentxv2/sdk 0.3.1 → 0.5.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 +25 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -6
- package/dist/index.mjs.map +1 -1
- package/dist/react.js +25 -6
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +25 -6
- package/dist/react.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2072,19 +2072,38 @@ 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: {
|
|
2080
2080
|
identityRegistry: "0xe94ad380d3F8d08a7590eda0C84f354a93F96e5F",
|
|
2081
2081
|
subscriptionManager: "0xC15fE80b9d800abb72121F353a6ae6d6E9077E63",
|
|
2082
|
-
paymentGateway: "
|
|
2083
|
-
a2aProtocolRegistry: "
|
|
2084
|
-
reputationRegistry: "
|
|
2085
|
-
configurationRegistry: "
|
|
2082
|
+
paymentGateway: "0x59eA58c0089314C0fCc86A4ff646fb6dAE571C96",
|
|
2083
|
+
a2aProtocolRegistry: "0xEdb0022c250B38e281B3EF1418037889fC5C6092",
|
|
2084
|
+
reputationRegistry: "0xeb6B410ea71b8d9dA0c96f6A91d35027CE143DC9",
|
|
2085
|
+
configurationRegistry: "0x68DcE00e4C9077c94BC68016cD14B09557faEA6c"
|
|
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
|
+
// All 6 core contracts deployed 2026-07-14
|
|
2095
|
+
19505: {
|
|
2096
|
+
chainId: 19505,
|
|
2097
|
+
contracts: {
|
|
2098
|
+
identityRegistry: "0xbf5F9db266c8c97E3334466C88597Eb758AfE212",
|
|
2099
|
+
subscriptionManager: "0x019AC9d945467478Dd371CDbD70cb2f325800E6B",
|
|
2100
|
+
paymentGateway: "0x0000000000000000000000000000000000000000",
|
|
2101
|
+
a2aProtocolRegistry: "0x61b7E7Eed21F013e35a90FC5de5c352780ec5169",
|
|
2102
|
+
reputationRegistry: "0x6a18C2664E1b42063860d864b6448b824d7B843F",
|
|
2103
|
+
configurationRegistry: "0x07280674ccc2898Fd038A9e3C22005CA83ffD2F8"
|
|
2104
|
+
},
|
|
2105
|
+
ipfsGateways: ["ipfs.io", "gateway.pinata.cloud", "dweb.link", "cf-ipfs.com"],
|
|
2106
|
+
rpcUrl: "http://43.156.99.215:18545"
|
|
2088
2107
|
}
|
|
2089
2108
|
};
|
|
2090
2109
|
var ConfigurationRegistry = class {
|