@gfxlabs/oku-chains 1.12.40 → 1.12.41
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/browser.js
CHANGED
package/dist/index-mjs.js
CHANGED
|
@@ -5410,7 +5410,7 @@ const redbelly = makeConfig({
|
|
|
5410
5410
|
const robinhood = makeConfig({
|
|
5411
5411
|
...robinhood$1,
|
|
5412
5412
|
name: "Robinhood",
|
|
5413
|
-
blockTimeSeconds:
|
|
5413
|
+
blockTimeSeconds: 0.1,
|
|
5414
5414
|
launchTime: 1784047160,
|
|
5415
5415
|
transactionType: "eip1559",
|
|
5416
5416
|
sortIndex: 6,
|
package/dist/index.js
CHANGED
|
@@ -5412,7 +5412,7 @@ const redbelly = makeConfig({
|
|
|
5412
5412
|
const robinhood = makeConfig({
|
|
5413
5413
|
...chains.robinhood,
|
|
5414
5414
|
name: "Robinhood",
|
|
5415
|
-
blockTimeSeconds:
|
|
5415
|
+
blockTimeSeconds: 0.1,
|
|
5416
5416
|
launchTime: 1784047160,
|
|
5417
5417
|
transactionType: "eip1559",
|
|
5418
5418
|
sortIndex: 6,
|
package/dist/types/index.d.ts
CHANGED
|
@@ -11338,7 +11338,7 @@ export declare const MAINNET_CHAINS: readonly [Readonly<{
|
|
|
11338
11338
|
caip2Namespace: string;
|
|
11339
11339
|
}>, Readonly<{
|
|
11340
11340
|
name: "Robinhood";
|
|
11341
|
-
blockTimeSeconds:
|
|
11341
|
+
blockTimeSeconds: 0.1;
|
|
11342
11342
|
launchTime: 1784047160;
|
|
11343
11343
|
transactionType: "eip1559";
|
|
11344
11344
|
sortIndex: 6;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gfxlabs/oku-chains",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.41",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index-mjs.js",
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"fmt": "biome check --write",
|
|
11
11
|
"clean": "rm -rf dist",
|
|
12
|
+
"check:swap-targets": "tsx src/script/check-swap-targets.ts",
|
|
12
13
|
"generate-barrels": "barrelsby --delete --directory './src/definitions/'",
|
|
13
14
|
"build": "yarn generate-barrels && npx rollup -c && yarn tsx gen_go.ts",
|
|
14
15
|
"prepack": "yarn build",
|
package/readme.md
CHANGED
|
@@ -4,6 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
`go get gfx.cafe/gfx/chain-config/dist/networks`
|
|
6
6
|
|
|
7
|
+
## Checking market routers
|
|
8
|
+
|
|
9
|
+
Run `yarn check:swap-targets` to verify that every address under each chain's
|
|
10
|
+
`marketRouters` configuration is allowed by `swapTargets` on its configured
|
|
11
|
+
`oku.router`, using `https://venn.lat.gfx.town/{internalName}` as the RPC. The
|
|
12
|
+
command prints `all good` when every router is allowed. Otherwise, it prints the
|
|
13
|
+
routers that are not allowed or could not be checked, grouped by chain, and
|
|
14
|
+
exits with a non-zero status.
|
|
15
|
+
|
|
7
16
|
## Adding a chain viem doesn't ship yet
|
|
8
17
|
|
|
9
18
|
When a chain is not exported from `viem/chains`, define it under
|