@gearbox-protocol/sdk 9.16.1 → 9.17.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.
|
@@ -147,7 +147,7 @@ class InstanceManagerContract extends import_base_contract.BaseContract {
|
|
|
147
147
|
args: decoded ? {
|
|
148
148
|
target,
|
|
149
149
|
functionName: decoded.functionName,
|
|
150
|
-
|
|
150
|
+
data: (0, import_utils.json_stringify)(decoded.args)
|
|
151
151
|
} : {
|
|
152
152
|
target,
|
|
153
153
|
data
|
|
@@ -292,7 +292,9 @@ const chains = {
|
|
|
292
292
|
...import_chains.plasma,
|
|
293
293
|
network: "Plasma",
|
|
294
294
|
defaultMarketConfigurators: {
|
|
295
|
-
"0x7a133fbd01736fd076158307c9476cc3877f1af5": "Invariant Group"
|
|
295
|
+
"0x7a133fbd01736fd076158307c9476cc3877f1af5": "Invariant Group",
|
|
296
|
+
"0x4bce62622be621ce036691de98afcab0e41a77a3": "Edge UltraYield",
|
|
297
|
+
"0xce1cf71a28837daaa7b92d00ca4ef2fd649c2a67": "Hyperithm"
|
|
296
298
|
},
|
|
297
299
|
isPublic: true,
|
|
298
300
|
wellKnownToken: {
|
|
@@ -277,7 +277,9 @@ const chains = {
|
|
|
277
277
|
...plasma,
|
|
278
278
|
network: "Plasma",
|
|
279
279
|
defaultMarketConfigurators: {
|
|
280
|
-
"0x7a133fbd01736fd076158307c9476cc3877f1af5": "Invariant Group"
|
|
280
|
+
"0x7a133fbd01736fd076158307c9476cc3877f1af5": "Invariant Group",
|
|
281
|
+
"0x4bce62622be621ce036691de98afcab0e41a77a3": "Edge UltraYield",
|
|
282
|
+
"0xce1cf71a28837daaa7b92d00ca4ef2fd649c2a67": "Hyperithm"
|
|
281
283
|
},
|
|
282
284
|
isPublic: true,
|
|
283
285
|
wellKnownToken: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Address, Chain } from "viem";
|
|
2
2
|
import { z } from "zod/v4";
|
|
3
|
-
export type Curator = "Chaos Labs" | "K3" | "cp0x" | "Re7" | "Invariant Group" | "Tulipa" | "M11 Credit" | "kpk";
|
|
3
|
+
export type Curator = "Chaos Labs" | "K3" | "cp0x" | "Re7" | "Invariant Group" | "Tulipa" | "M11 Credit" | "kpk" | "Hyperithm" | "Edge UltraYield";
|
|
4
4
|
export interface GearboxChain extends Chain {
|
|
5
5
|
network: NetworkType;
|
|
6
6
|
defaultMarketConfigurators: Record<Address, Curator>;
|