voxelithic-interfaces 0.5.2 → 0.7.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 +11 -3
- package/dist/abi.d.ts +1034 -0
- package/dist/abi.js +2 -0
- package/dist/addresses.d.ts +15 -3
- package/dist/addresses.js +19 -3
- package/package.json +4 -4
- package/src/abi.ts +4 -0
- package/src/addresses.ts +22 -3
- package/tsconfig.json +13 -0
package/README.md
CHANGED
|
@@ -49,10 +49,12 @@ The full picture of what else carries these tickers is at
|
|
|
49
49
|
| `CHAIN_ID` | 4663 |
|
|
50
50
|
| `ROUTER`, `QUOTER` | Uniswap v3 style venues, deployed and verified |
|
|
51
51
|
| `ROUTER_V4`, `QUOTER_V4` | Uniswap v4 singleton branch |
|
|
52
|
+
| `ROUTER_SPLIT` | splits one order across pools of both families in a single transaction |
|
|
52
53
|
| `UNISWAP_V4_SINGLETON` | the v4 pool manager |
|
|
53
54
|
| `TREASURY` | fee recipient; everything it receives is swapped into VOXEL and burned |
|
|
55
|
+
| `VOXEL`, `BURN_SINK` | the bought-back token and the address it is burned to |
|
|
54
56
|
| `TOKENS`, `SYMBOLS`, `addressOf` | canonical token set |
|
|
55
|
-
| `VoxRouterABI`, `VoxQuoterABI`, `VoxRouterV4ABI`, `VoxQuoterV4ABI` | ABIs taken from the Foundry build artifacts, not retyped |
|
|
57
|
+
| `VoxRouterABI`, `VoxQuoterABI`, `VoxRouterV4ABI`, `VoxQuoterV4ABI`, `VoxRouterMixedABI`, `VoxTreasuryV2ABI` | ABIs taken from the Foundry build artifacts, not retyped |
|
|
56
58
|
| `Hop`, `Route`, `Quote`, `PoolKey` | request and response shapes |
|
|
57
59
|
|
|
58
60
|
## Or skip the install
|
|
@@ -105,11 +107,17 @@ fails the run. Both are wired into CI on every push.
|
|
|
105
107
|
| VoxQuoter | `0x9616627E871c96e38cb21b9551F62Ed93366bE1B` |
|
|
106
108
|
| VoxRouterV4 | `0x290b9b46308f7a3B80A5F62214B426d3bfAfaab5` |
|
|
107
109
|
| VoxQuoterV4 | `0x5858F06894623eF4862103A747074E5AA3436d4F` |
|
|
108
|
-
|
|
|
110
|
+
| VoxRouterMixed | `0xda61673A51d6EA2c02C335185399Ddb818bdBC6f` |
|
|
111
|
+
| VoxTreasuryV2 | `0x25A99c317f3125Fc6cd245197028f49CfF56612E` |
|
|
109
112
|
|
|
110
|
-
All
|
|
113
|
+
All six are verified on
|
|
111
114
|
[Blockscout](https://robinhoodchain.blockscout.com/address/0x87cD7EbE8c213455e5e5a8554657D5f294a82e64).
|
|
112
115
|
|
|
116
|
+
`VoxTreasuryV2` replaces the treasury at `0xDfC6004E…`, which routed buybacks
|
|
117
|
+
through the v3 router. There is exactly one v3 pool holding VOXEL on this chain
|
|
118
|
+
and it is empty, so that contract could never complete a buyback. The old
|
|
119
|
+
address stays on chain but no longer receives the fee.
|
|
120
|
+
|
|
113
121
|
## License
|
|
114
122
|
|
|
115
123
|
MIT
|