@longdotxyz/shared 0.0.107 → 0.0.108
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.
|
@@ -5669,6 +5669,98 @@ export declare const rootContract: {
|
|
|
5669
5669
|
}>;
|
|
5670
5670
|
};
|
|
5671
5671
|
};
|
|
5672
|
+
getTokenLogo: {
|
|
5673
|
+
description: "Get the logo URL for a single token. Returns null if no logo is found. Uses Base chain (8453) by default. Results are cached for 24 hours.";
|
|
5674
|
+
pathParams: import("zod").ZodObject<{
|
|
5675
|
+
address: import("zod").ZodEffects<import("zod").ZodString, `0x${string}`, string>;
|
|
5676
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5677
|
+
address: `0x${string}`;
|
|
5678
|
+
}, {
|
|
5679
|
+
address: string;
|
|
5680
|
+
}>;
|
|
5681
|
+
method: "GET";
|
|
5682
|
+
path: "/market/token-logo/:address";
|
|
5683
|
+
responses: {
|
|
5684
|
+
200: import("zod").ZodObject<{
|
|
5685
|
+
result: import("zod").ZodObject<{
|
|
5686
|
+
logoUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5687
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5688
|
+
logoUrl: string | null;
|
|
5689
|
+
}, {
|
|
5690
|
+
logoUrl: string | null;
|
|
5691
|
+
}>;
|
|
5692
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5693
|
+
result: {
|
|
5694
|
+
logoUrl: string | null;
|
|
5695
|
+
};
|
|
5696
|
+
}, {
|
|
5697
|
+
result: {
|
|
5698
|
+
logoUrl: string | null;
|
|
5699
|
+
};
|
|
5700
|
+
}>;
|
|
5701
|
+
500: import("zod").ZodObject<{
|
|
5702
|
+
code: import("zod").ZodString;
|
|
5703
|
+
message: import("zod").ZodString;
|
|
5704
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5705
|
+
code: string;
|
|
5706
|
+
message: string;
|
|
5707
|
+
}, {
|
|
5708
|
+
code: string;
|
|
5709
|
+
message: string;
|
|
5710
|
+
}>;
|
|
5711
|
+
};
|
|
5712
|
+
};
|
|
5713
|
+
getTokenLogos: {
|
|
5714
|
+
description: "Get logo URLs for multiple tokens. Returns a map of addresses to logo URLs (null if not found). Uses Base chain (8453). Results are cached for 24 hours.";
|
|
5715
|
+
method: "POST";
|
|
5716
|
+
body: import("zod").ZodObject<{
|
|
5717
|
+
addresses: import("zod").ZodArray<import("zod").ZodString, "many">;
|
|
5718
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5719
|
+
addresses: string[];
|
|
5720
|
+
}, {
|
|
5721
|
+
addresses: string[];
|
|
5722
|
+
}>;
|
|
5723
|
+
path: "/market/token-logos";
|
|
5724
|
+
responses: {
|
|
5725
|
+
200: import("zod").ZodObject<{
|
|
5726
|
+
result: import("zod").ZodObject<{
|
|
5727
|
+
logos: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5728
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5729
|
+
logos: Record<string, string | null>;
|
|
5730
|
+
}, {
|
|
5731
|
+
logos: Record<string, string | null>;
|
|
5732
|
+
}>;
|
|
5733
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5734
|
+
result: {
|
|
5735
|
+
logos: Record<string, string | null>;
|
|
5736
|
+
};
|
|
5737
|
+
}, {
|
|
5738
|
+
result: {
|
|
5739
|
+
logos: Record<string, string | null>;
|
|
5740
|
+
};
|
|
5741
|
+
}>;
|
|
5742
|
+
400: import("zod").ZodObject<{
|
|
5743
|
+
code: import("zod").ZodString;
|
|
5744
|
+
message: import("zod").ZodString;
|
|
5745
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5746
|
+
code: string;
|
|
5747
|
+
message: string;
|
|
5748
|
+
}, {
|
|
5749
|
+
code: string;
|
|
5750
|
+
message: string;
|
|
5751
|
+
}>;
|
|
5752
|
+
500: import("zod").ZodObject<{
|
|
5753
|
+
code: import("zod").ZodString;
|
|
5754
|
+
message: import("zod").ZodString;
|
|
5755
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
5756
|
+
code: string;
|
|
5757
|
+
message: string;
|
|
5758
|
+
}, {
|
|
5759
|
+
code: string;
|
|
5760
|
+
message: string;
|
|
5761
|
+
}>;
|
|
5762
|
+
};
|
|
5763
|
+
};
|
|
5672
5764
|
};
|
|
5673
5765
|
pathfinding: {
|
|
5674
5766
|
fetchTokenPaths: {
|
|
@@ -677,6 +677,30 @@ declare const PriceResponseSchema: z.ZodObject<{
|
|
|
677
677
|
price: number | null;
|
|
678
678
|
}>;
|
|
679
679
|
type PriceResponse = z.infer<typeof PriceResponseSchema>;
|
|
680
|
+
declare const TokenLogoResponseSchema: z.ZodObject<{
|
|
681
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
682
|
+
}, "strip", z.ZodTypeAny, {
|
|
683
|
+
logoUrl: string | null;
|
|
684
|
+
}, {
|
|
685
|
+
logoUrl: string | null;
|
|
686
|
+
}>;
|
|
687
|
+
type TokenLogoResponse = z.infer<typeof TokenLogoResponseSchema>;
|
|
688
|
+
declare const TokenLogosResponseSchema: z.ZodObject<{
|
|
689
|
+
logos: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
690
|
+
}, "strip", z.ZodTypeAny, {
|
|
691
|
+
logos: Record<string, string | null>;
|
|
692
|
+
}, {
|
|
693
|
+
logos: Record<string, string | null>;
|
|
694
|
+
}>;
|
|
695
|
+
type TokenLogosResponse = z.infer<typeof TokenLogosResponseSchema>;
|
|
696
|
+
declare const TokenLogosRequestSchema: z.ZodObject<{
|
|
697
|
+
addresses: z.ZodArray<z.ZodString, "many">;
|
|
698
|
+
}, "strip", z.ZodTypeAny, {
|
|
699
|
+
addresses: string[];
|
|
700
|
+
}, {
|
|
701
|
+
addresses: string[];
|
|
702
|
+
}>;
|
|
703
|
+
type TokenLogosRequest = z.infer<typeof TokenLogosRequestSchema>;
|
|
680
704
|
declare const marketContract: {
|
|
681
705
|
getEthPrice: {
|
|
682
706
|
description: "Get the current ETH price in USD";
|
|
@@ -2055,6 +2079,98 @@ declare const marketContract: {
|
|
|
2055
2079
|
}>;
|
|
2056
2080
|
};
|
|
2057
2081
|
};
|
|
2082
|
+
getTokenLogo: {
|
|
2083
|
+
description: "Get the logo URL for a single token. Returns null if no logo is found. Uses Base chain (8453) by default. Results are cached for 24 hours.";
|
|
2084
|
+
pathParams: z.ZodObject<{
|
|
2085
|
+
address: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2086
|
+
}, "strip", z.ZodTypeAny, {
|
|
2087
|
+
address: `0x${string}`;
|
|
2088
|
+
}, {
|
|
2089
|
+
address: string;
|
|
2090
|
+
}>;
|
|
2091
|
+
method: "GET";
|
|
2092
|
+
path: "/market/token-logo/:address";
|
|
2093
|
+
responses: {
|
|
2094
|
+
200: z.ZodObject<{
|
|
2095
|
+
result: z.ZodObject<{
|
|
2096
|
+
logoUrl: z.ZodNullable<z.ZodString>;
|
|
2097
|
+
}, "strip", z.ZodTypeAny, {
|
|
2098
|
+
logoUrl: string | null;
|
|
2099
|
+
}, {
|
|
2100
|
+
logoUrl: string | null;
|
|
2101
|
+
}>;
|
|
2102
|
+
}, "strip", z.ZodTypeAny, {
|
|
2103
|
+
result: {
|
|
2104
|
+
logoUrl: string | null;
|
|
2105
|
+
};
|
|
2106
|
+
}, {
|
|
2107
|
+
result: {
|
|
2108
|
+
logoUrl: string | null;
|
|
2109
|
+
};
|
|
2110
|
+
}>;
|
|
2111
|
+
500: z.ZodObject<{
|
|
2112
|
+
code: z.ZodString;
|
|
2113
|
+
message: z.ZodString;
|
|
2114
|
+
}, "strip", z.ZodTypeAny, {
|
|
2115
|
+
code: string;
|
|
2116
|
+
message: string;
|
|
2117
|
+
}, {
|
|
2118
|
+
code: string;
|
|
2119
|
+
message: string;
|
|
2120
|
+
}>;
|
|
2121
|
+
};
|
|
2122
|
+
};
|
|
2123
|
+
getTokenLogos: {
|
|
2124
|
+
description: "Get logo URLs for multiple tokens. Returns a map of addresses to logo URLs (null if not found). Uses Base chain (8453). Results are cached for 24 hours.";
|
|
2125
|
+
method: "POST";
|
|
2126
|
+
body: z.ZodObject<{
|
|
2127
|
+
addresses: z.ZodArray<z.ZodString, "many">;
|
|
2128
|
+
}, "strip", z.ZodTypeAny, {
|
|
2129
|
+
addresses: string[];
|
|
2130
|
+
}, {
|
|
2131
|
+
addresses: string[];
|
|
2132
|
+
}>;
|
|
2133
|
+
path: "/market/token-logos";
|
|
2134
|
+
responses: {
|
|
2135
|
+
200: z.ZodObject<{
|
|
2136
|
+
result: z.ZodObject<{
|
|
2137
|
+
logos: z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodString>>;
|
|
2138
|
+
}, "strip", z.ZodTypeAny, {
|
|
2139
|
+
logos: Record<string, string | null>;
|
|
2140
|
+
}, {
|
|
2141
|
+
logos: Record<string, string | null>;
|
|
2142
|
+
}>;
|
|
2143
|
+
}, "strip", z.ZodTypeAny, {
|
|
2144
|
+
result: {
|
|
2145
|
+
logos: Record<string, string | null>;
|
|
2146
|
+
};
|
|
2147
|
+
}, {
|
|
2148
|
+
result: {
|
|
2149
|
+
logos: Record<string, string | null>;
|
|
2150
|
+
};
|
|
2151
|
+
}>;
|
|
2152
|
+
400: z.ZodObject<{
|
|
2153
|
+
code: z.ZodString;
|
|
2154
|
+
message: z.ZodString;
|
|
2155
|
+
}, "strip", z.ZodTypeAny, {
|
|
2156
|
+
code: string;
|
|
2157
|
+
message: string;
|
|
2158
|
+
}, {
|
|
2159
|
+
code: string;
|
|
2160
|
+
message: string;
|
|
2161
|
+
}>;
|
|
2162
|
+
500: z.ZodObject<{
|
|
2163
|
+
code: z.ZodString;
|
|
2164
|
+
message: z.ZodString;
|
|
2165
|
+
}, "strip", z.ZodTypeAny, {
|
|
2166
|
+
code: string;
|
|
2167
|
+
message: string;
|
|
2168
|
+
}, {
|
|
2169
|
+
code: string;
|
|
2170
|
+
message: string;
|
|
2171
|
+
}>;
|
|
2172
|
+
};
|
|
2173
|
+
};
|
|
2058
2174
|
};
|
|
2059
|
-
export { marketContract, PoolStatsSchema, TokenStatsSchema, PriceResponseSchema, TimeIntervalDataSchema, TransactionsSchema, PriceChangePercentageSchema, VolumeUSDSchema };
|
|
2060
|
-
export type { PoolStats, TokenStats, PriceResponse };
|
|
2175
|
+
export { marketContract, PoolStatsSchema, TokenStatsSchema, PriceResponseSchema, TokenLogoResponseSchema, TokenLogosResponseSchema, TokenLogosRequestSchema, TimeIntervalDataSchema, TransactionsSchema, PriceChangePercentageSchema, VolumeUSDSchema };
|
|
2176
|
+
export type { PoolStats, TokenStats, PriceResponse, TokenLogoResponse, TokenLogosResponse, TokenLogosRequest };
|
|
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.VolumeUSDSchema = exports.PriceChangePercentageSchema = exports.TransactionsSchema = exports.TimeIntervalDataSchema = exports.PriceResponseSchema = exports.TokenStatsSchema = exports.PoolStatsSchema = exports.marketContract = void 0;
|
|
6
|
+
exports.VolumeUSDSchema = exports.PriceChangePercentageSchema = exports.TransactionsSchema = exports.TimeIntervalDataSchema = exports.TokenLogosRequestSchema = exports.TokenLogosResponseSchema = exports.TokenLogoResponseSchema = exports.PriceResponseSchema = exports.TokenStatsSchema = exports.PoolStatsSchema = exports.marketContract = void 0;
|
|
7
7
|
const core_1 = require("@ts-rest/core");
|
|
8
8
|
const zod_1 = __importDefault(require("zod"));
|
|
9
9
|
const types_1 = require("../types");
|
|
@@ -84,6 +84,18 @@ const PriceResponseSchema = zod_1.default.object({
|
|
|
84
84
|
price: zod_1.default.number().nullable().describe("Price in USD"),
|
|
85
85
|
});
|
|
86
86
|
exports.PriceResponseSchema = PriceResponseSchema;
|
|
87
|
+
const TokenLogoResponseSchema = zod_1.default.object({
|
|
88
|
+
logoUrl: zod_1.default.string().nullable().describe("Token logo image URL"),
|
|
89
|
+
});
|
|
90
|
+
exports.TokenLogoResponseSchema = TokenLogoResponseSchema;
|
|
91
|
+
const TokenLogosResponseSchema = zod_1.default.object({
|
|
92
|
+
logos: zod_1.default.record(zod_1.default.string(), zod_1.default.string().nullable()).describe("Map of token addresses to logo URLs"),
|
|
93
|
+
});
|
|
94
|
+
exports.TokenLogosResponseSchema = TokenLogosResponseSchema;
|
|
95
|
+
const TokenLogosRequestSchema = zod_1.default.object({
|
|
96
|
+
addresses: zod_1.default.array(zod_1.default.string()).min(1).max(50).describe("Array of token addresses (max 50)"),
|
|
97
|
+
});
|
|
98
|
+
exports.TokenLogosRequestSchema = TokenLogosRequestSchema;
|
|
87
99
|
const ErrorResponseSchema = zod_1.default.object({
|
|
88
100
|
code: zod_1.default.string(),
|
|
89
101
|
message: zod_1.default.string(),
|
|
@@ -188,6 +200,33 @@ const marketContract = contract.router({
|
|
|
188
200
|
},
|
|
189
201
|
description: "Get statistics for one or more tokens. Returns a single object for one token, or an array for multiple tokens.",
|
|
190
202
|
},
|
|
203
|
+
getTokenLogo: {
|
|
204
|
+
method: "GET",
|
|
205
|
+
path: "/token-logo/:address",
|
|
206
|
+
pathParams: zod_1.default.object({
|
|
207
|
+
address: types_1.hex.describe("Token contract address"),
|
|
208
|
+
}),
|
|
209
|
+
responses: {
|
|
210
|
+
200: zod_1.default.object({
|
|
211
|
+
result: TokenLogoResponseSchema,
|
|
212
|
+
}),
|
|
213
|
+
500: ErrorResponseSchema,
|
|
214
|
+
},
|
|
215
|
+
description: "Get the logo URL for a single token. Returns null if no logo is found. Uses Base chain (8453) by default. Results are cached for 24 hours.",
|
|
216
|
+
},
|
|
217
|
+
getTokenLogos: {
|
|
218
|
+
method: "POST",
|
|
219
|
+
path: "/token-logos",
|
|
220
|
+
body: TokenLogosRequestSchema,
|
|
221
|
+
responses: {
|
|
222
|
+
200: zod_1.default.object({
|
|
223
|
+
result: TokenLogosResponseSchema,
|
|
224
|
+
}),
|
|
225
|
+
400: ErrorResponseSchema,
|
|
226
|
+
500: ErrorResponseSchema,
|
|
227
|
+
},
|
|
228
|
+
description: "Get logo URLs for multiple tokens. Returns a map of addresses to logo URLs (null if not found). Uses Base chain (8453). Results are cached for 24 hours.",
|
|
229
|
+
},
|
|
191
230
|
}, {
|
|
192
231
|
pathPrefix: "/market",
|
|
193
232
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"market.contract.js","sourceRoot":"","sources":["../../src/contracts/market.contract.ts"],"names":[],"mappings":";;;;;;AAAA,wCAA6C;AAC7C,8CAAoB;AAEpB,oCAAwC;AAExC,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AAKhC,MAAM,sBAAsB,GAAG,aAAC,CAAC,MAAM,CAAC;IACpC,EAAE,EAAE,aAAC,CAAC,MAAM,EAAE;IACd,GAAG,EAAE,aAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,aAAC,CAAC,MAAM,EAAE;IACf,EAAE,EAAE,aAAC,CAAC,MAAM,EAAE;IACd,EAAE,EAAE,aAAC,CAAC,MAAM,EAAE;IACd,GAAG,EAAE,aAAC,CAAC,MAAM,EAAE;CAClB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"market.contract.js","sourceRoot":"","sources":["../../src/contracts/market.contract.ts"],"names":[],"mappings":"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"}
|