@steerprotocol/sdk 3.1.0 → 3.2.1
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/index.browser.mjs +63 -47
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.cjs +63 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -5
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +63 -47
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.browser.mjs
CHANGED
|
@@ -6648,8 +6648,8 @@ const baseAddresses = {
|
|
|
6648
6648
|
startBlock: 17910406
|
|
6649
6649
|
},
|
|
6650
6650
|
"SingleAssetDeposit": {
|
|
6651
|
-
address: "
|
|
6652
|
-
startBlock:
|
|
6651
|
+
address: "0x588B34D2a9598497f481A9d31B4eD372C6135f32",
|
|
6652
|
+
startBlock: 48700149
|
|
6653
6653
|
}
|
|
6654
6654
|
};
|
|
6655
6655
|
//#endregion
|
|
@@ -9209,54 +9209,56 @@ const deprecatedBundlesURL = "https://api.steer.finance/deprecated-bundles";
|
|
|
9209
9209
|
* Each chain has a dedicated subgraph URL for querying protocol data.
|
|
9210
9210
|
* Updated each chains for ormi and thegraph
|
|
9211
9211
|
*/
|
|
9212
|
+
const offlineSubgraphBaseUrl = "https://subgraph-archive.steer.finance/graphql";
|
|
9213
|
+
const offlineSubgraphUrl = (chain) => `${offlineSubgraphBaseUrl}/${chain}`;
|
|
9212
9214
|
const steerSubgraphConfig = {
|
|
9213
9215
|
[Chain.Polygon]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-polygon/prod/gn",
|
|
9214
9216
|
[Chain.BSC]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-bsc-beta/prod/gn",
|
|
9215
9217
|
[Chain.Optimism]: "https://subgraph-proxy-server-xf2uthetka-as.a.run.app/gateway-arbitrum/GgW1EwNARL3dyo3acQ3VhraQQ66MHT7QnYuGcQc5geDG",
|
|
9216
9218
|
[Chain.Arbitrum]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-arbitrum/prod/gn",
|
|
9217
|
-
[Chain.Evmos]: "
|
|
9218
|
-
[Chain.Thundercore]: "
|
|
9219
|
-
[Chain.Metis]: "
|
|
9219
|
+
[Chain.Evmos]: offlineSubgraphUrl("evmos"),
|
|
9220
|
+
[Chain.Thundercore]: offlineSubgraphUrl("thundercore"),
|
|
9221
|
+
[Chain.Metis]: offlineSubgraphUrl("metis"),
|
|
9220
9222
|
[Chain.Base]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-base/beta/gn",
|
|
9221
9223
|
[Chain.Avalanche]: "https://subgraph-proxy-server-xf2uthetka-as.a.run.app/gateway-arbitrum/GZotTj3rQJ8ZqVyodtK8TcnKcUxMgeF7mCJHGPYbu8dA",
|
|
9222
|
-
[Chain.PolygonzkEVM]: "
|
|
9224
|
+
[Chain.PolygonzkEVM]: offlineSubgraphUrl("zkevm"),
|
|
9223
9225
|
[Chain.Celo]: "https://subgraph-proxy-server-xf2uthetka-as.a.run.app/gateway-arbitrum/BPaFHyfVrhv3pdjGodpQcWggAg1Bcrvc9SFc2t2BXeho",
|
|
9224
|
-
[Chain.Kava]: "
|
|
9226
|
+
[Chain.Kava]: offlineSubgraphUrl("kava"),
|
|
9225
9227
|
[Chain.Linea]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-linea/prod/gn",
|
|
9226
|
-
[Chain.Scroll]: "
|
|
9227
|
-
[Chain.Manta]: "
|
|
9228
|
-
[Chain.Astar]: "
|
|
9229
|
-
[Chain.Fantom]: "
|
|
9228
|
+
[Chain.Scroll]: offlineSubgraphUrl("scroll"),
|
|
9229
|
+
[Chain.Manta]: offlineSubgraphUrl("manta"),
|
|
9230
|
+
[Chain.Astar]: offlineSubgraphUrl("astar"),
|
|
9231
|
+
[Chain.Fantom]: offlineSubgraphUrl("fantom"),
|
|
9230
9232
|
[Chain.OkxTestnet]: "https://subgraph.steer.finance/steer-x1-testnet/subgraphs/name/steerprotocol/steer-okxtestnet",
|
|
9231
|
-
[Chain.Mantle]: "
|
|
9232
|
-
[Chain.AstarZkevm]: "
|
|
9233
|
-
[Chain.Blast]: "
|
|
9234
|
-
[Chain.Mode]: "
|
|
9235
|
-
[Chain.Telos]: "
|
|
9236
|
-
[Chain.XLayer]: "
|
|
9237
|
-
[Chain.Taiko]: "
|
|
9233
|
+
[Chain.Mantle]: offlineSubgraphUrl("mantle"),
|
|
9234
|
+
[Chain.AstarZkevm]: offlineSubgraphUrl("astarzkevm"),
|
|
9235
|
+
[Chain.Blast]: offlineSubgraphUrl("blast"),
|
|
9236
|
+
[Chain.Mode]: offlineSubgraphUrl("mode"),
|
|
9237
|
+
[Chain.Telos]: offlineSubgraphUrl("telos"),
|
|
9238
|
+
[Chain.XLayer]: offlineSubgraphUrl("xlayer"),
|
|
9239
|
+
[Chain.Taiko]: offlineSubgraphUrl("taiko"),
|
|
9238
9240
|
[Chain.Rootstock]: "https://api.goldsky.com/api/public/project_cm2k9xbkz4qg901vs51bm5uau/subgraphs/steer-protocol-rootstock/prod/gn",
|
|
9239
|
-
[Chain.ZklinkNova]: "
|
|
9241
|
+
[Chain.ZklinkNova]: offlineSubgraphUrl("zklinknova"),
|
|
9240
9242
|
[Chain.Flare]: "https://api.goldsky.com/api/public/project_cm2k9xbkz4qg901vs51bm5uau/subgraphs/steer-protocol-flare/prod/gn",
|
|
9241
|
-
[Chain.BeraChainBartio]: "
|
|
9242
|
-
[Chain.Filecoin]: "
|
|
9243
|
-
[Chain.Apechain]: "
|
|
9244
|
-
[Chain.Zircuit]: "
|
|
9245
|
-
[Chain.Moonbeam]: "
|
|
9246
|
-
[Chain.Sei]: "
|
|
9247
|
-
[Chain.Sonic]: "
|
|
9248
|
-
[Chain.Zeta]: "
|
|
9243
|
+
[Chain.BeraChainBartio]: offlineSubgraphUrl("berabarito"),
|
|
9244
|
+
[Chain.Filecoin]: offlineSubgraphUrl("filecoin"),
|
|
9245
|
+
[Chain.Apechain]: offlineSubgraphUrl("apechain"),
|
|
9246
|
+
[Chain.Zircuit]: offlineSubgraphUrl("zircuit"),
|
|
9247
|
+
[Chain.Moonbeam]: offlineSubgraphUrl("moonbeam"),
|
|
9248
|
+
[Chain.Sei]: offlineSubgraphUrl("sei"),
|
|
9249
|
+
[Chain.Sonic]: offlineSubgraphUrl("sonic"),
|
|
9250
|
+
[Chain.Zeta]: offlineSubgraphUrl("zeta"),
|
|
9249
9251
|
[Chain.Mainnet]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-mainnet/prod/gn",
|
|
9250
|
-
[Chain.Soneium]: "
|
|
9252
|
+
[Chain.Soneium]: offlineSubgraphUrl("soneium"),
|
|
9251
9253
|
[Chain.Bera]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-bera/prod/gn",
|
|
9252
9254
|
[Chain.Unichain]: "https://api.goldsky.com/api/public/project_cmnrgd4exaie801sa45a1609h/subgraphs/steer-protocol-unichain/prod/gn",
|
|
9253
|
-
[Chain.Hemi]: "
|
|
9254
|
-
[Chain.TataraTestnet]: "
|
|
9255
|
-
[Chain.Core]: "
|
|
9256
|
-
[Chain.Peaq]: "
|
|
9255
|
+
[Chain.Hemi]: offlineSubgraphUrl("hemi"),
|
|
9256
|
+
[Chain.TataraTestnet]: offlineSubgraphUrl("tataratestnet"),
|
|
9257
|
+
[Chain.Core]: offlineSubgraphUrl("core"),
|
|
9258
|
+
[Chain.Peaq]: offlineSubgraphUrl("peaq"),
|
|
9257
9259
|
[Chain.Katana]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-katana/prod/gn",
|
|
9258
|
-
[Chain.Ronin]: "
|
|
9259
|
-
[Chain.Saga]: "
|
|
9260
|
+
[Chain.Ronin]: offlineSubgraphUrl("ronin"),
|
|
9261
|
+
[Chain.Saga]: offlineSubgraphUrl("saga"),
|
|
9260
9262
|
[Chain.Nibiru]: "https://app.sentio.xyz//api/v1/graphql/rakesh/steer-protocol-nibiru",
|
|
9261
9263
|
[Chain.Hyperevm]: "https://api.subgraph.ormilabs.com/api/public/803c8c8c-be12-4188-8523-b9853e23051d/subgraphs/steer-protocol-hyperevm/prod/gn",
|
|
9262
9264
|
[Chain.Bittensor]: "https://subgraph.35-247-158-26.sslip.io/subgraphs/name/steer-subgraph",
|
|
@@ -14733,7 +14735,8 @@ const uniswapConfig = (theGraphApiKey) => ({
|
|
|
14733
14735
|
[Chain.Unichain]: getTheGraphResolverUrl(`BCfy6Vw9No3weqVq9NhyGo4FkVCJep1ZN9RMJj5S32fX`, false, theGraphApiKey),
|
|
14734
14736
|
[Chain.Telos]: "https://telos.api.ormilabs.com/api/public/39892398-bfdd-48ac-b776-77ad8a5b4b9e/subgraphs/uniswap-v3-telos-oku/prod/gn",
|
|
14735
14737
|
[Chain.Saga]: "https://api.goldsky.com/api/public/project_clohj3ta78ok12nzs5m8yag0b/subgraphs/uniswap-v3-saga-evm-oku/prod/gn",
|
|
14736
|
-
[Chain.Nibiru]: "https://app.sentio.xyz//api/v1/graphql/rakesh/steer-oku-nibiru"
|
|
14738
|
+
[Chain.Nibiru]: "https://app.sentio.xyz//api/v1/graphql/rakesh/steer-oku-nibiru",
|
|
14739
|
+
[Chain.Robinhood]: getTheGraphResolverUrl(`ESdrTJ3twMwWVoQ1hUE2u7PugEHX3QkenudD6aXCkDQ4`, false, theGraphApiKey)
|
|
14737
14740
|
},
|
|
14738
14741
|
factoryAddress: {
|
|
14739
14742
|
[Chain.Mainnet]: "0x1F98431c8aD98523631AE4a59f267346ea31F984",
|
|
@@ -14749,7 +14752,8 @@ const uniswapConfig = (theGraphApiKey) => ({
|
|
|
14749
14752
|
[Chain.Unichain]: "0x1f98400000000000000000000000000000000003",
|
|
14750
14753
|
[Chain.Telos]: "0xcb2436774C3e191c85056d248EF4260ce5f27A9D",
|
|
14751
14754
|
[Chain.Saga]: "0x454050C4c9190390981Ac4b8d5AFcd7aC65eEffa",
|
|
14752
|
-
[Chain.Nibiru]: "0x346239972d1fa486FC4a521031BC81bFB7D6e8a4"
|
|
14755
|
+
[Chain.Nibiru]: "0x346239972d1fa486FC4a521031BC81bFB7D6e8a4",
|
|
14756
|
+
[Chain.Robinhood]: "0x1f7d7550b1b028f7571e69a784071f0205fd2efa"
|
|
14753
14757
|
},
|
|
14754
14758
|
NFTManagerAddress: {
|
|
14755
14759
|
[Chain.Mainnet]: "0xC36442b4a4522E871399CD717aBDD847Ab11FE88",
|
|
@@ -14764,7 +14768,8 @@ const uniswapConfig = (theGraphApiKey) => ({
|
|
|
14764
14768
|
[Chain.Unichain]: "0x943e6e07a7e8e791dafc44083e54041d743c46e9",
|
|
14765
14769
|
[Chain.Telos]: "0x743E03cceB4af2efA3CC76838f6E8B50B63F184c",
|
|
14766
14770
|
[Chain.Saga]: "0xdD489C75be1039ec7d843A6aC2Fd658350B067Cf",
|
|
14767
|
-
[Chain.Nibiru]: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050"
|
|
14771
|
+
[Chain.Nibiru]: "0xEFdE184f4b5d79f7c3b7Efc0388d829ff9af0050",
|
|
14772
|
+
[Chain.Robinhood]: "0x73991a25c818bf1f1128deaab1492d45638de0d3"
|
|
14768
14773
|
},
|
|
14769
14774
|
swapRouterAddress: {
|
|
14770
14775
|
[Chain.Polygon]: "0xE592427A0AEce92De3Edee1F18E0157C05861564",
|
|
@@ -14788,7 +14793,8 @@ const uniswapConfig = (theGraphApiKey) => ({
|
|
|
14788
14793
|
[Chain.Unichain]: "0xd5d76fa166ab8d8ad4c9f61aaa81457b66cbe443",
|
|
14789
14794
|
[Chain.Telos]: "0xB3309C48F8407651D918ca3Da4C45DE40109E641",
|
|
14790
14795
|
[Chain.Saga]: "0x6Aa54a43d7eEF5b239a18eed3Af4877f46522BCA",
|
|
14791
|
-
[Chain.Nibiru]: "0xA9d71E1dd7ca26F26e656E66d6AA81ed7f745bf0"
|
|
14796
|
+
[Chain.Nibiru]: "0xA9d71E1dd7ca26F26e656E66d6AA81ed7f745bf0",
|
|
14797
|
+
[Chain.Robinhood]: "0x7dfd4f31be6814d2906bde155c3e1b146eac1468"
|
|
14792
14798
|
},
|
|
14793
14799
|
QuoterV2Address: {
|
|
14794
14800
|
[Chain.Mainnet]: "0x61fFE014bA17989E743c5F6cB21bF9697530B21e",
|
|
@@ -14803,7 +14809,8 @@ const uniswapConfig = (theGraphApiKey) => ({
|
|
|
14803
14809
|
[Chain.Unichain]: "0x385a5cf5f83e99f7bb2852b6a19c3538b9fa7658",
|
|
14804
14810
|
[Chain.Telos]: "0x5911cB3633e764939edc2d92b7e1ad375Bb57649",
|
|
14805
14811
|
[Chain.Saga]: "0x9db70E29712Cc8Af10c2B597BaDA6784544FF407",
|
|
14806
|
-
[Chain.Nibiru]: "0x864DDc9B50B9A0dF676d826c9B9EDe9F8913a160"
|
|
14812
|
+
[Chain.Nibiru]: "0x864DDc9B50B9A0dF676d826c9B9EDe9F8913a160",
|
|
14813
|
+
[Chain.Robinhood]: "0x33e885ed0ec9bf04ecfb19341582aadcb4c8a9e7"
|
|
14807
14814
|
}
|
|
14808
14815
|
});
|
|
14809
14816
|
//#endregion
|
|
@@ -15079,55 +15086,64 @@ const uniswapV4Config = (theGraphApiKey) => ({
|
|
|
15079
15086
|
[Chain.BSC]: getTheGraphResolverUrl(`EAq1nJKgjnuKH6Gj4RFjCW7LcL7E2uipbncdwV7TTWkX`, false, theGraphApiKey),
|
|
15080
15087
|
[Chain.Base]: getTheGraphResolverUrl(`HNCFA9TyBqpo5qpe6QreQABAA1kV8g46mhkCcicu6v2R`, false, theGraphApiKey),
|
|
15081
15088
|
[Chain.Arbitrum]: getTheGraphResolverUrl(`G5TsTKNi8yhPSV7kycaE23oWbqv9zzNqR49FoEQjzq1r`, false, theGraphApiKey),
|
|
15082
|
-
[Chain.Mainnet]: getTheGraphResolverUrl(`DiYPVdygkfjDWhbxGSqAQxwBKmfKnkWQojqeM2rkLb3G`, false, theGraphApiKey)
|
|
15089
|
+
[Chain.Mainnet]: getTheGraphResolverUrl(`DiYPVdygkfjDWhbxGSqAQxwBKmfKnkWQojqeM2rkLb3G`, false, theGraphApiKey),
|
|
15090
|
+
[Chain.Robinhood]: getTheGraphResolverUrl(`DiYPVdygkfjDWhbxGSqAQxwBKmfKnkWQojqeM2rkLb3G`, false, theGraphApiKey)
|
|
15083
15091
|
},
|
|
15084
15092
|
PoolManager: {
|
|
15085
15093
|
[Chain.Unichain]: "0x1f98400000000000000000000000000000000004",
|
|
15086
15094
|
[Chain.BSC]: "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df",
|
|
15087
15095
|
[Chain.Base]: "0x498581ff718922c3f8e6a244956af099b2652b2b",
|
|
15088
15096
|
[Chain.Arbitrum]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
15089
|
-
[Chain.Mainnet]: "0x000000000004444c5dc75cB358380D2e3dE08A90"
|
|
15097
|
+
[Chain.Mainnet]: "0x000000000004444c5dc75cB358380D2e3dE08A90",
|
|
15098
|
+
[Chain.Robinhood]: "0x8366a39cc670b4001a1121b8f6a443a643e40951"
|
|
15090
15099
|
},
|
|
15091
15100
|
PositionDescriptor: {
|
|
15092
15101
|
[Chain.Unichain]: "0x9fb28449a191cd8c03a1b7abfb0f5996ecf7f722",
|
|
15093
15102
|
[Chain.BSC]: "0xf0432f360703ec3d33931a8356a75a77d8d380e1",
|
|
15094
15103
|
[Chain.Base]: "0x25d093633990dc94bedeed76c8f3cdaa75f3e7d5",
|
|
15095
15104
|
[Chain.Arbitrum]: "0xe2023f3fa515cf070e07fd9d51c1d236e07843f4",
|
|
15096
|
-
[Chain.Mainnet]: "0xd1428ba554f4c8450b763a0b2040a4935c63f06c"
|
|
15105
|
+
[Chain.Mainnet]: "0xd1428ba554f4c8450b763a0b2040a4935c63f06c",
|
|
15106
|
+
[Chain.Robinhood]: "0x9639443158e8c5efa35bd45287bf2effd3d8dc06"
|
|
15097
15107
|
},
|
|
15098
15108
|
PositionManager: {
|
|
15099
15109
|
[Chain.BSC]: "0x7a4a5c919ae2541aed11041a1aeee68f1287f95b",
|
|
15100
15110
|
[Chain.Base]: "0x7c5f5a4bbd8fd63184577525326123b519429bdc",
|
|
15101
15111
|
[Chain.Arbitrum]: "0xd88f38f930b7952f2db2432cb002e7abbf3dd869",
|
|
15102
|
-
[Chain.Mainnet]: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e"
|
|
15112
|
+
[Chain.Mainnet]: "0xbd216513d74c8cf14cf4747e6aaa6420ff64ee9e",
|
|
15113
|
+
[Chain.Robinhood]: "0x58daec3116aae6d93017baaea7749052e8a04fa7"
|
|
15103
15114
|
},
|
|
15104
15115
|
Quoter: {
|
|
15105
15116
|
[Chain.Unichain]: "0x333e3c607b141b18ff6de9f258db6e77fe7491e0",
|
|
15106
15117
|
[Chain.BSC]: "0x9f75dd27d6664c475b90e105573e550ff69437b0",
|
|
15107
15118
|
[Chain.Base]: "0x0d5e0f971ed27fbff6c2837bf31316121532048d",
|
|
15108
15119
|
[Chain.Arbitrum]: "0x3972c00f7ed4885e145823eb7c655375d275a1c5",
|
|
15109
|
-
[Chain.Mainnet]: "0x52f0e24d1c21c8a0cb1e5a5dd6198556bd9e1203"
|
|
15120
|
+
[Chain.Mainnet]: "0x52f0e24d1c21c8a0cb1e5a5dd6198556bd9e1203",
|
|
15121
|
+
[Chain.Robinhood]: "0x8dc178efb8111bb0973dd9d722ebeff267c98f94"
|
|
15110
15122
|
},
|
|
15111
15123
|
StateView: {
|
|
15112
15124
|
[Chain.Unichain]: "0x86e8631a016f9068c3f085faf484ee3f5fdee8f2",
|
|
15113
15125
|
[Chain.BSC]: "0xd13dd3d6e93f276fafc9db9e6bb47c1180aee0c4",
|
|
15114
15126
|
[Chain.Base]: "0xa3c0c9b65bad0b08107aa264b0f3db444b867a71",
|
|
15115
15127
|
[Chain.Arbitrum]: "0x76fd297e2d437cd7f76d50f01afe6160f86e9990",
|
|
15116
|
-
[Chain.Mainnet]: "0x7ffe42c4a5deea5b0fec41c94c136cf115597227"
|
|
15128
|
+
[Chain.Mainnet]: "0x7ffe42c4a5deea5b0fec41c94c136cf115597227",
|
|
15129
|
+
[Chain.Robinhood]: "0xf3334192d15450cdd385c8b70e03f9a6bd9e673b"
|
|
15117
15130
|
},
|
|
15131
|
+
ReservesLens: { [Chain.Robinhood]: "0x0000001b173C3bbF3984D417d8614E3eed34865B" },
|
|
15118
15132
|
UniversalRouter: {
|
|
15119
15133
|
[Chain.Unichain]: "0xef740bf23acae26f6492b10de645d6b98dc8eaf3",
|
|
15120
15134
|
[Chain.BSC]: "0x8b844f885672f333bc0042cb669255f93a4c1e6b",
|
|
15121
15135
|
[Chain.Base]: "0xfdf682f51fe81aa4898f0ae2163d8a55c127fbc7",
|
|
15122
15136
|
[Chain.Arbitrum]: "0x8b844f885672f333bc0042cb669255f93a4c1e6b",
|
|
15123
|
-
[Chain.Mainnet]: "0x4c82d1fbfe28c977cbb58d8c7ff8fcf9f70a2cca"
|
|
15137
|
+
[Chain.Mainnet]: "0x4c82d1fbfe28c977cbb58d8c7ff8fcf9f70a2cca",
|
|
15138
|
+
[Chain.Robinhood]: "0x8876789976decbfcbbbe364623c63652db8c0904"
|
|
15124
15139
|
},
|
|
15125
15140
|
Permit2: {
|
|
15126
15141
|
[Chain.Unichain]: "0x000000000022D473030F116dDEE9F6B43aC78BA3",
|
|
15127
15142
|
[Chain.BSC]: "0x000000000022D473030F116dDEE9F6B43aC78BA3",
|
|
15128
15143
|
[Chain.Base]: "0x000000000022D473030F116dDEE9F6B43aC78BA3",
|
|
15129
15144
|
[Chain.Arbitrum]: "0x000000000022D473030F116dDEE9F6B43aC78BA3",
|
|
15130
|
-
[Chain.Mainnet]: "0x000000000022D473030F116dDEE9F6B43aC78BA3"
|
|
15145
|
+
[Chain.Mainnet]: "0x000000000022D473030F116dDEE9F6B43aC78BA3",
|
|
15146
|
+
[Chain.Robinhood]: "0x000000000022D473030F116dDEE9F6B43aC78BA3"
|
|
15131
15147
|
}
|
|
15132
15148
|
});
|
|
15133
15149
|
//#endregion
|