@longdotxyz/shared 0.0.82 → 0.0.95
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/contracts/asset.contract.d.ts +955 -51
- package/dist/contracts/asset.contract.js +51 -16
- package/dist/contracts/asset.contract.js.map +1 -1
- package/dist/contracts/auction-template.contract.d.ts +30 -30
- package/dist/contracts/auction-template.contract.js +16 -16
- package/dist/contracts/auction-template.contract.js.map +1 -1
- package/dist/contracts/auction.contract.d.ts +1 -1
- package/dist/contracts/auction.contract.js +1 -1
- package/dist/contracts/auction.contract.js.map +1 -1
- package/dist/contracts/charts.contract.d.ts +214 -0
- package/dist/contracts/charts.contract.js +61 -0
- package/dist/contracts/charts.contract.js.map +1 -0
- package/dist/contracts/index.d.ts +2287 -66
- package/dist/contracts/index.js +6 -0
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/market.contract.d.ts +2060 -0
- package/dist/contracts/market.contract.js +195 -0
- package/dist/contracts/market.contract.js.map +1 -0
- package/dist/contracts/pathfinding.contract.d.ts +14 -14
- package/dist/contracts/pathfinding.contract.js +2 -2
- package/dist/contracts/pathfinding.contract.js.map +1 -1
- package/dist/contracts/sponsorship.contract.d.ts +2 -2
- package/dist/contracts/sponsorship.contract.js +2 -2
- package/dist/contracts/sponsorship.contract.js.map +1 -1
- package/dist/graphql/generated.d.ts +1433 -509
- package/dist/graphql/generated.js +162 -19
- package/dist/graphql/generated.js.map +1 -1
- package/dist/types/constants.d.ts +3 -1
- package/dist/types/constants.js +2 -0
- package/dist/types/constants.js.map +1 -1
- package/dist/types/hex.type.d.ts +1 -1
- package/dist/types/hex.type.js +2 -2
- package/dist/types/hex.type.js.map +1 -1
- package/dist/types/pool-key.type.d.ts +3 -3
- package/package.json +8 -8
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
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;
|
|
7
|
+
const core_1 = require("@ts-rest/core");
|
|
8
|
+
const zod_1 = __importDefault(require("zod"));
|
|
9
|
+
const types_1 = require("../types");
|
|
10
|
+
const contract = (0, core_1.initContract)();
|
|
11
|
+
const TimeIntervalDataSchema = zod_1.default.object({
|
|
12
|
+
m5: zod_1.default.number(),
|
|
13
|
+
m15: zod_1.default.number(),
|
|
14
|
+
m30: zod_1.default.number(),
|
|
15
|
+
h1: zod_1.default.number(),
|
|
16
|
+
h6: zod_1.default.number(),
|
|
17
|
+
h24: zod_1.default.number(),
|
|
18
|
+
});
|
|
19
|
+
exports.TimeIntervalDataSchema = TimeIntervalDataSchema;
|
|
20
|
+
const TransactionCountSchema = zod_1.default.object({
|
|
21
|
+
buys: zod_1.default.number(),
|
|
22
|
+
sells: zod_1.default.number(),
|
|
23
|
+
buyers: zod_1.default.number(),
|
|
24
|
+
sellers: zod_1.default.number(),
|
|
25
|
+
});
|
|
26
|
+
const TransactionsSchema = zod_1.default.object({
|
|
27
|
+
m5: TransactionCountSchema,
|
|
28
|
+
m15: TransactionCountSchema,
|
|
29
|
+
m30: TransactionCountSchema,
|
|
30
|
+
h1: TransactionCountSchema,
|
|
31
|
+
h6: TransactionCountSchema,
|
|
32
|
+
h24: TransactionCountSchema,
|
|
33
|
+
});
|
|
34
|
+
exports.TransactionsSchema = TransactionsSchema;
|
|
35
|
+
const PriceChangePercentageSchema = zod_1.default.object({
|
|
36
|
+
m5: zod_1.default.string(),
|
|
37
|
+
m15: zod_1.default.string(),
|
|
38
|
+
m30: zod_1.default.string(),
|
|
39
|
+
h1: zod_1.default.string(),
|
|
40
|
+
h6: zod_1.default.string(),
|
|
41
|
+
h24: zod_1.default.string(),
|
|
42
|
+
});
|
|
43
|
+
exports.PriceChangePercentageSchema = PriceChangePercentageSchema;
|
|
44
|
+
const VolumeUSDSchema = zod_1.default.object({
|
|
45
|
+
m5: zod_1.default.string(),
|
|
46
|
+
m15: zod_1.default.string(),
|
|
47
|
+
m30: zod_1.default.string(),
|
|
48
|
+
h1: zod_1.default.string(),
|
|
49
|
+
h6: zod_1.default.string(),
|
|
50
|
+
h24: zod_1.default.string(),
|
|
51
|
+
});
|
|
52
|
+
exports.VolumeUSDSchema = VolumeUSDSchema;
|
|
53
|
+
const PoolStatsSchema = zod_1.default.object({
|
|
54
|
+
address: zod_1.default.string().describe("Pool contract address"),
|
|
55
|
+
name: zod_1.default.string().describe("Pool name (e.g., 'TOKEN/WETH')"),
|
|
56
|
+
pool_created_at: zod_1.default.string().nullable().describe("Pool creation timestamp"),
|
|
57
|
+
base_token_price_usd: zod_1.default.string().describe("Base token price in USD"),
|
|
58
|
+
base_token_price_native_currency: zod_1.default.string().describe("Base token price in native currency"),
|
|
59
|
+
quote_token_price_usd: zod_1.default.string().describe("Quote token price in USD"),
|
|
60
|
+
quote_token_price_native_currency: zod_1.default.string().describe("Quote token price in native currency"),
|
|
61
|
+
base_token_price_quote_token: zod_1.default.string().describe("Base token price in quote token"),
|
|
62
|
+
quote_token_price_base_token: zod_1.default.string().describe("Quote token price in base token"),
|
|
63
|
+
fdv_usd: zod_1.default.string().describe("Fully diluted valuation in USD"),
|
|
64
|
+
market_cap_usd: zod_1.default.string().describe("Market cap in USD"),
|
|
65
|
+
price_change_percentage: PriceChangePercentageSchema.describe("Price change percentages at different intervals"),
|
|
66
|
+
transactions: TransactionsSchema.describe("Transaction counts at different intervals"),
|
|
67
|
+
volume_usd: VolumeUSDSchema.describe("Trading volume in USD at different intervals"),
|
|
68
|
+
reserve_in_usd: zod_1.default.string().describe("Total reserve value in USD"),
|
|
69
|
+
liquidity: zod_1.default.string().describe("Pool liquidity in USD"),
|
|
70
|
+
});
|
|
71
|
+
exports.PoolStatsSchema = PoolStatsSchema;
|
|
72
|
+
const TokenStatsSchema = zod_1.default.object({
|
|
73
|
+
address: zod_1.default.string().describe("Token contract address"),
|
|
74
|
+
name: zod_1.default.string().describe("Token name"),
|
|
75
|
+
symbol: zod_1.default.string().describe("Token symbol"),
|
|
76
|
+
decimals: zod_1.default.number().describe("Token decimals"),
|
|
77
|
+
price_usd: zod_1.default.string().describe("Current price in USD"),
|
|
78
|
+
fdv_usd: zod_1.default.string().describe("Fully diluted valuation in USD"),
|
|
79
|
+
market_cap_usd: zod_1.default.string().describe("Market cap in USD"),
|
|
80
|
+
volume_usd: TimeIntervalDataSchema.describe("Trading volume in USD at different intervals"),
|
|
81
|
+
});
|
|
82
|
+
exports.TokenStatsSchema = TokenStatsSchema;
|
|
83
|
+
const PriceResponseSchema = zod_1.default.object({
|
|
84
|
+
price: zod_1.default.number().nullable().describe("Price in USD"),
|
|
85
|
+
});
|
|
86
|
+
exports.PriceResponseSchema = PriceResponseSchema;
|
|
87
|
+
const ErrorResponseSchema = zod_1.default.object({
|
|
88
|
+
code: zod_1.default.string(),
|
|
89
|
+
message: zod_1.default.string(),
|
|
90
|
+
});
|
|
91
|
+
const marketContract = contract.router({
|
|
92
|
+
getEthPrice: {
|
|
93
|
+
method: "GET",
|
|
94
|
+
path: "/price/eth",
|
|
95
|
+
query: zod_1.default.object({
|
|
96
|
+
chainId: zod_1.default.coerce
|
|
97
|
+
.number()
|
|
98
|
+
.int()
|
|
99
|
+
.refine((val) => Object.values(types_1.ChainID).includes(val), {
|
|
100
|
+
message: "Invalid chain ID",
|
|
101
|
+
})
|
|
102
|
+
.optional()
|
|
103
|
+
.default(types_1.ChainID.BASE_MAINNET)
|
|
104
|
+
.describe("Chain ID (default: Base Mainnet)"),
|
|
105
|
+
}),
|
|
106
|
+
responses: {
|
|
107
|
+
200: zod_1.default.object({
|
|
108
|
+
result: PriceResponseSchema,
|
|
109
|
+
}),
|
|
110
|
+
500: ErrorResponseSchema,
|
|
111
|
+
},
|
|
112
|
+
description: "Get the current ETH price in USD",
|
|
113
|
+
},
|
|
114
|
+
getTokenPrice: {
|
|
115
|
+
method: "GET",
|
|
116
|
+
path: "/price/:tokenAddress",
|
|
117
|
+
pathParams: zod_1.default.object({
|
|
118
|
+
tokenAddress: types_1.hex.describe("Token contract address"),
|
|
119
|
+
}),
|
|
120
|
+
query: zod_1.default.object({
|
|
121
|
+
chainId: zod_1.default.coerce
|
|
122
|
+
.number()
|
|
123
|
+
.int()
|
|
124
|
+
.refine((val) => Object.values(types_1.ChainID).includes(val), {
|
|
125
|
+
message: "Invalid chain ID",
|
|
126
|
+
})
|
|
127
|
+
.optional()
|
|
128
|
+
.default(types_1.ChainID.BASE_MAINNET)
|
|
129
|
+
.describe("Chain ID (default: Base Mainnet)"),
|
|
130
|
+
}),
|
|
131
|
+
responses: {
|
|
132
|
+
200: zod_1.default.object({
|
|
133
|
+
result: PriceResponseSchema,
|
|
134
|
+
}),
|
|
135
|
+
500: ErrorResponseSchema,
|
|
136
|
+
},
|
|
137
|
+
description: "Get the current price of a token in USD by its contract address",
|
|
138
|
+
},
|
|
139
|
+
getPoolsStats: {
|
|
140
|
+
method: "GET",
|
|
141
|
+
path: "/pools/:poolAddresses/stats",
|
|
142
|
+
pathParams: zod_1.default.object({
|
|
143
|
+
poolAddresses: zod_1.default.string().describe("Comma-separated pool addresses (max 30)"),
|
|
144
|
+
}),
|
|
145
|
+
query: zod_1.default.object({
|
|
146
|
+
chainId: zod_1.default.coerce
|
|
147
|
+
.number()
|
|
148
|
+
.int()
|
|
149
|
+
.refine((val) => Object.values(types_1.ChainID).includes(val), {
|
|
150
|
+
message: "Invalid chain ID",
|
|
151
|
+
})
|
|
152
|
+
.optional()
|
|
153
|
+
.default(types_1.ChainID.BASE_MAINNET)
|
|
154
|
+
.describe("Chain ID (default: Base Mainnet)"),
|
|
155
|
+
}),
|
|
156
|
+
responses: {
|
|
157
|
+
200: zod_1.default.object({
|
|
158
|
+
result: zod_1.default.union([PoolStatsSchema, zod_1.default.array(PoolStatsSchema), zod_1.default.null()]),
|
|
159
|
+
}),
|
|
160
|
+
400: ErrorResponseSchema,
|
|
161
|
+
500: ErrorResponseSchema,
|
|
162
|
+
},
|
|
163
|
+
description: "Get statistics for one or more pools. Returns a single object for one pool, or an array for multiple pools.",
|
|
164
|
+
},
|
|
165
|
+
getTokensStats: {
|
|
166
|
+
method: "GET",
|
|
167
|
+
path: "/tokens/:tokenAddresses/stats",
|
|
168
|
+
pathParams: zod_1.default.object({
|
|
169
|
+
tokenAddresses: zod_1.default.string().describe("Comma-separated token addresses (max 30)"),
|
|
170
|
+
}),
|
|
171
|
+
query: zod_1.default.object({
|
|
172
|
+
chainId: zod_1.default.coerce
|
|
173
|
+
.number()
|
|
174
|
+
.int()
|
|
175
|
+
.refine((val) => Object.values(types_1.ChainID).includes(val), {
|
|
176
|
+
message: "Invalid chain ID",
|
|
177
|
+
})
|
|
178
|
+
.optional()
|
|
179
|
+
.default(types_1.ChainID.BASE_MAINNET)
|
|
180
|
+
.describe("Chain ID (default: Base Mainnet)"),
|
|
181
|
+
}),
|
|
182
|
+
responses: {
|
|
183
|
+
200: zod_1.default.object({
|
|
184
|
+
result: zod_1.default.union([TokenStatsSchema, zod_1.default.array(TokenStatsSchema), zod_1.default.null()]),
|
|
185
|
+
}),
|
|
186
|
+
400: ErrorResponseSchema,
|
|
187
|
+
500: ErrorResponseSchema,
|
|
188
|
+
},
|
|
189
|
+
description: "Get statistics for one or more tokens. Returns a single object for one token, or an array for multiple tokens.",
|
|
190
|
+
},
|
|
191
|
+
}, {
|
|
192
|
+
pathPrefix: "/market",
|
|
193
|
+
});
|
|
194
|
+
exports.marketContract = marketContract;
|
|
195
|
+
//# sourceMappingURL=market.contract.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"market.contract.js","sourceRoot":"","sources":["../../src/contracts/market.contract.ts"],"names":[],"mappings":"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"}
|
|
@@ -23,22 +23,22 @@ declare const FetchTokensPathsResponseSchema: z.ZodObject<{
|
|
|
23
23
|
fee: number | null;
|
|
24
24
|
hooks: string | null;
|
|
25
25
|
pool_address: string;
|
|
26
|
+
volume_usd: number | null;
|
|
26
27
|
token_in_address: string;
|
|
27
28
|
token_out_address: string;
|
|
28
29
|
protocol: string;
|
|
29
30
|
tick_spacing: number | null;
|
|
30
31
|
liquidity_usd: number | null;
|
|
31
|
-
volume_usd: number | null;
|
|
32
32
|
}, {
|
|
33
33
|
fee: number | null;
|
|
34
34
|
hooks: string | null;
|
|
35
35
|
pool_address: string;
|
|
36
|
+
volume_usd: number | null;
|
|
36
37
|
token_in_address: string;
|
|
37
38
|
token_out_address: string;
|
|
38
39
|
protocol: string;
|
|
39
40
|
tick_spacing: number | null;
|
|
40
41
|
liquidity_usd: number | null;
|
|
41
|
-
volume_usd: number | null;
|
|
42
42
|
}>, "many">;
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
44
|
start_token_address: string;
|
|
@@ -51,12 +51,12 @@ declare const FetchTokensPathsResponseSchema: z.ZodObject<{
|
|
|
51
51
|
fee: number | null;
|
|
52
52
|
hooks: string | null;
|
|
53
53
|
pool_address: string;
|
|
54
|
+
volume_usd: number | null;
|
|
54
55
|
token_in_address: string;
|
|
55
56
|
token_out_address: string;
|
|
56
57
|
protocol: string;
|
|
57
58
|
tick_spacing: number | null;
|
|
58
59
|
liquidity_usd: number | null;
|
|
59
|
-
volume_usd: number | null;
|
|
60
60
|
}[];
|
|
61
61
|
}, {
|
|
62
62
|
start_token_address: string;
|
|
@@ -69,12 +69,12 @@ declare const FetchTokensPathsResponseSchema: z.ZodObject<{
|
|
|
69
69
|
fee: number | null;
|
|
70
70
|
hooks: string | null;
|
|
71
71
|
pool_address: string;
|
|
72
|
+
volume_usd: number | null;
|
|
72
73
|
token_in_address: string;
|
|
73
74
|
token_out_address: string;
|
|
74
75
|
protocol: string;
|
|
75
76
|
tick_spacing: number | null;
|
|
76
77
|
liquidity_usd: number | null;
|
|
77
|
-
volume_usd: number | null;
|
|
78
78
|
}[];
|
|
79
79
|
}>, "many">;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -91,12 +91,12 @@ declare const FetchTokensPathsResponseSchema: z.ZodObject<{
|
|
|
91
91
|
fee: number | null;
|
|
92
92
|
hooks: string | null;
|
|
93
93
|
pool_address: string;
|
|
94
|
+
volume_usd: number | null;
|
|
94
95
|
token_in_address: string;
|
|
95
96
|
token_out_address: string;
|
|
96
97
|
protocol: string;
|
|
97
98
|
tick_spacing: number | null;
|
|
98
99
|
liquidity_usd: number | null;
|
|
99
|
-
volume_usd: number | null;
|
|
100
100
|
}[];
|
|
101
101
|
}[];
|
|
102
102
|
}, {
|
|
@@ -113,26 +113,26 @@ declare const FetchTokensPathsResponseSchema: z.ZodObject<{
|
|
|
113
113
|
fee: number | null;
|
|
114
114
|
hooks: string | null;
|
|
115
115
|
pool_address: string;
|
|
116
|
+
volume_usd: number | null;
|
|
116
117
|
token_in_address: string;
|
|
117
118
|
token_out_address: string;
|
|
118
119
|
protocol: string;
|
|
119
120
|
tick_spacing: number | null;
|
|
120
121
|
liquidity_usd: number | null;
|
|
121
|
-
volume_usd: number | null;
|
|
122
122
|
}[];
|
|
123
123
|
}[];
|
|
124
124
|
}>;
|
|
125
125
|
declare const pathfindingContract: {
|
|
126
126
|
fetchTokenPaths: {
|
|
127
127
|
pathParams: z.ZodObject<{
|
|
128
|
-
tokenInAddress: z.
|
|
128
|
+
tokenInAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
129
129
|
}, "strip", z.ZodTypeAny, {
|
|
130
130
|
tokenInAddress: `0x${string}`;
|
|
131
131
|
}, {
|
|
132
132
|
tokenInAddress: string;
|
|
133
133
|
}>;
|
|
134
134
|
method: "GET";
|
|
135
|
-
path: "paths/:tokenInAddress";
|
|
135
|
+
path: "/paths/:tokenInAddress";
|
|
136
136
|
responses: {
|
|
137
137
|
200: z.ZodObject<{
|
|
138
138
|
token_address: z.ZodString;
|
|
@@ -158,22 +158,22 @@ declare const pathfindingContract: {
|
|
|
158
158
|
fee: number | null;
|
|
159
159
|
hooks: string | null;
|
|
160
160
|
pool_address: string;
|
|
161
|
+
volume_usd: number | null;
|
|
161
162
|
token_in_address: string;
|
|
162
163
|
token_out_address: string;
|
|
163
164
|
protocol: string;
|
|
164
165
|
tick_spacing: number | null;
|
|
165
166
|
liquidity_usd: number | null;
|
|
166
|
-
volume_usd: number | null;
|
|
167
167
|
}, {
|
|
168
168
|
fee: number | null;
|
|
169
169
|
hooks: string | null;
|
|
170
170
|
pool_address: string;
|
|
171
|
+
volume_usd: number | null;
|
|
171
172
|
token_in_address: string;
|
|
172
173
|
token_out_address: string;
|
|
173
174
|
protocol: string;
|
|
174
175
|
tick_spacing: number | null;
|
|
175
176
|
liquidity_usd: number | null;
|
|
176
|
-
volume_usd: number | null;
|
|
177
177
|
}>, "many">;
|
|
178
178
|
}, "strip", z.ZodTypeAny, {
|
|
179
179
|
start_token_address: string;
|
|
@@ -186,12 +186,12 @@ declare const pathfindingContract: {
|
|
|
186
186
|
fee: number | null;
|
|
187
187
|
hooks: string | null;
|
|
188
188
|
pool_address: string;
|
|
189
|
+
volume_usd: number | null;
|
|
189
190
|
token_in_address: string;
|
|
190
191
|
token_out_address: string;
|
|
191
192
|
protocol: string;
|
|
192
193
|
tick_spacing: number | null;
|
|
193
194
|
liquidity_usd: number | null;
|
|
194
|
-
volume_usd: number | null;
|
|
195
195
|
}[];
|
|
196
196
|
}, {
|
|
197
197
|
start_token_address: string;
|
|
@@ -204,12 +204,12 @@ declare const pathfindingContract: {
|
|
|
204
204
|
fee: number | null;
|
|
205
205
|
hooks: string | null;
|
|
206
206
|
pool_address: string;
|
|
207
|
+
volume_usd: number | null;
|
|
207
208
|
token_in_address: string;
|
|
208
209
|
token_out_address: string;
|
|
209
210
|
protocol: string;
|
|
210
211
|
tick_spacing: number | null;
|
|
211
212
|
liquidity_usd: number | null;
|
|
212
|
-
volume_usd: number | null;
|
|
213
213
|
}[];
|
|
214
214
|
}>, "many">;
|
|
215
215
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -226,12 +226,12 @@ declare const pathfindingContract: {
|
|
|
226
226
|
fee: number | null;
|
|
227
227
|
hooks: string | null;
|
|
228
228
|
pool_address: string;
|
|
229
|
+
volume_usd: number | null;
|
|
229
230
|
token_in_address: string;
|
|
230
231
|
token_out_address: string;
|
|
231
232
|
protocol: string;
|
|
232
233
|
tick_spacing: number | null;
|
|
233
234
|
liquidity_usd: number | null;
|
|
234
|
-
volume_usd: number | null;
|
|
235
235
|
}[];
|
|
236
236
|
}[];
|
|
237
237
|
}, {
|
|
@@ -248,12 +248,12 @@ declare const pathfindingContract: {
|
|
|
248
248
|
fee: number | null;
|
|
249
249
|
hooks: string | null;
|
|
250
250
|
pool_address: string;
|
|
251
|
+
volume_usd: number | null;
|
|
251
252
|
token_in_address: string;
|
|
252
253
|
token_out_address: string;
|
|
253
254
|
protocol: string;
|
|
254
255
|
tick_spacing: number | null;
|
|
255
256
|
liquidity_usd: number | null;
|
|
256
|
-
volume_usd: number | null;
|
|
257
257
|
}[];
|
|
258
258
|
}[];
|
|
259
259
|
}>;
|
|
@@ -35,9 +35,9 @@ exports.FetchTokensPathsResponseSchema = FetchTokensPathsResponseSchema;
|
|
|
35
35
|
const pathfindingContract = contract.router({
|
|
36
36
|
fetchTokenPaths: {
|
|
37
37
|
method: "GET",
|
|
38
|
-
path: "paths/:tokenInAddress",
|
|
38
|
+
path: "/paths/:tokenInAddress",
|
|
39
39
|
pathParams: zod_1.default.object({
|
|
40
|
-
tokenInAddress:
|
|
40
|
+
tokenInAddress: types_1.hex,
|
|
41
41
|
}),
|
|
42
42
|
responses: {
|
|
43
43
|
200: FetchTokensPathsResponseSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pathfinding.contract.js","sourceRoot":"","sources":["../../src/contracts/pathfinding.contract.ts"],"names":[],"mappings":";;;;;;AAAA,wCAA6C;AAC7C,8CAAoB;AAEpB,oCAA+B;AAE/B,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AAEhC,MAAM,8BAA8B,GAAG,aAAC,CAAC,MAAM,CAAC;IAC5C,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE;IACzB,WAAW,EAAE,aAAC,CAAC,MAAM,EAAE;IACvB,KAAK,EAAE,aAAC,CAAC,KAAK,CACV,aAAC,CAAC,MAAM,CAAC;QACL,mBAAmB,EAAE,aAAC,CAAC,MAAM,EAAE;QAC/B,iBAAiB,EAAE,aAAC,CAAC,MAAM,EAAE;QAC7B,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qDAAqD,CAAC;QACjF,mBAAmB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wBAAwB,CAAC;QAClE,gBAAgB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;QAClF,wBAAwB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;QACzF,IAAI,EAAE,aAAC,CAAC,KAAK,CACT,aAAC,CAAC,MAAM,CAAC;YACL,YAAY,EAAE,aAAC,CAAC,MAAM,EAAE;YACxB,gBAAgB,EAAE,aAAC,CAAC,MAAM,EAAE;YAC5B,iBAAiB,EAAE,aAAC,CAAC,MAAM,EAAE;YAC7B,QAAQ,EAAE,aAAC,CAAC,MAAM,EAAE;YACpB,GAAG,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YAC1B,YAAY,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YACnC,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YAC5B,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YACpC,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SACpC,CAAC,CACL;KACJ,CAAC,CACL;CACJ,CAAC,CAAC;AAe2B,wEAA8B;AAb5D,MAAM,mBAAmB,GAAG,QAAQ,CAAC,MAAM,CAAC;IACxC,eAAe,EAAE;QACb,MAAM,EAAE,KAAK;QACb,IAAI,EAAE,
|
|
1
|
+
{"version":3,"file":"pathfinding.contract.js","sourceRoot":"","sources":["../../src/contracts/pathfinding.contract.ts"],"names":[],"mappings":";;;;;;AAAA,wCAA6C;AAC7C,8CAAoB;AAEpB,oCAA+B;AAE/B,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AAEhC,MAAM,8BAA8B,GAAG,aAAC,CAAC,MAAM,CAAC;IAC5C,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE;IACzB,WAAW,EAAE,aAAC,CAAC,MAAM,EAAE;IACvB,KAAK,EAAE,aAAC,CAAC,KAAK,CACV,aAAC,CAAC,MAAM,CAAC;QACL,mBAAmB,EAAE,aAAC,CAAC,MAAM,EAAE;QAC/B,iBAAiB,EAAE,aAAC,CAAC,MAAM,EAAE;QAC7B,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qDAAqD,CAAC;QACjF,mBAAmB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wBAAwB,CAAC;QAClE,gBAAgB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,2CAA2C,CAAC;QAClF,wBAAwB,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;QACzF,IAAI,EAAE,aAAC,CAAC,KAAK,CACT,aAAC,CAAC,MAAM,CAAC;YACL,YAAY,EAAE,aAAC,CAAC,MAAM,EAAE;YACxB,gBAAgB,EAAE,aAAC,CAAC,MAAM,EAAE;YAC5B,iBAAiB,EAAE,aAAC,CAAC,MAAM,EAAE;YAC7B,QAAQ,EAAE,aAAC,CAAC,MAAM,EAAE;YACpB,GAAG,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YAC1B,YAAY,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YACnC,KAAK,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YAC5B,aAAa,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;YACpC,UAAU,EAAE,aAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;SACpC,CAAC,CACL;KACJ,CAAC,CACL;CACJ,CAAC,CAAC;AAe2B,wEAA8B;AAb5D,MAAM,mBAAmB,GAAG,QAAQ,CAAC,MAAM,CAAC;IACxC,eAAe,EAAE;QACb,MAAM,EAAE,KAAK;QACb,IAAI,EAAE,wBAAwB;QAC9B,UAAU,EAAE,aAAC,CAAC,MAAM,CAAC;YACjB,cAAc,EAAE,WAAG;SACtB,CAAC;QACF,SAAS,EAAE;YACP,GAAG,EAAE,8BAA8B;SACtC;KACJ;CACJ,CAAC,CAAC;AAEM,kDAAmB"}
|
|
@@ -4,7 +4,7 @@ export declare const sponsorshipContract: {
|
|
|
4
4
|
description: "Broadcast a transaction with gas sponsorship using Privy server wallet";
|
|
5
5
|
method: "POST";
|
|
6
6
|
body: z.ZodObject<{
|
|
7
|
-
encoded_payload: z.
|
|
7
|
+
encoded_payload: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
9
9
|
encoded_payload: `0x${string}`;
|
|
10
10
|
}, {
|
|
@@ -14,7 +14,7 @@ export declare const sponsorshipContract: {
|
|
|
14
14
|
responses: {
|
|
15
15
|
200: z.ZodObject<{
|
|
16
16
|
result: z.ZodObject<{
|
|
17
|
-
transaction_hash: z.
|
|
17
|
+
transaction_hash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
19
|
transaction_hash: `0x${string}`;
|
|
20
20
|
}, {
|
|
@@ -13,12 +13,12 @@ exports.sponsorshipContract = contract.router({
|
|
|
13
13
|
method: "POST",
|
|
14
14
|
path: "",
|
|
15
15
|
body: zod_1.default.object({
|
|
16
|
-
encoded_payload:
|
|
16
|
+
encoded_payload: types_1.hex.describe("The encoded payload from the encode endpoint (in Hex format)"),
|
|
17
17
|
}),
|
|
18
18
|
responses: {
|
|
19
19
|
200: zod_1.default.object({
|
|
20
20
|
result: zod_1.default.object({
|
|
21
|
-
transaction_hash:
|
|
21
|
+
transaction_hash: types_1.hex.describe("The transaction hash of the broadcasted transaction"),
|
|
22
22
|
}),
|
|
23
23
|
}),
|
|
24
24
|
400: zod_1.default.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sponsorship.contract.js","sourceRoot":"","sources":["../../src/contracts/sponsorship.contract.ts"],"names":[],"mappings":";;;;;;AAAA,wCAA6C;AAC7C,8CAAoB;AAEpB,oCAA+B;AAE/B,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AAEnB,QAAA,mBAAmB,GAAG,QAAQ,CAAC,MAAM,CAC9C;IACI,kBAAkB,EAAE;QAChB,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,aAAC,CAAC,MAAM,CAAC;YACX,eAAe,EAAE,
|
|
1
|
+
{"version":3,"file":"sponsorship.contract.js","sourceRoot":"","sources":["../../src/contracts/sponsorship.contract.ts"],"names":[],"mappings":";;;;;;AAAA,wCAA6C;AAC7C,8CAAoB;AAEpB,oCAA+B;AAE/B,MAAM,QAAQ,GAAG,IAAA,mBAAY,GAAE,CAAC;AAEnB,QAAA,mBAAmB,GAAG,QAAQ,CAAC,MAAM,CAC9C;IACI,kBAAkB,EAAE;QAChB,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,EAAE;QACR,IAAI,EAAE,aAAC,CAAC,MAAM,CAAC;YACX,eAAe,EAAE,WAAG,CAAC,QAAQ,CAAC,8DAA8D,CAAC;SAChG,CAAC;QACF,SAAS,EAAE;YACP,GAAG,EAAE,aAAC,CAAC,MAAM,CAAC;gBACV,MAAM,EAAE,aAAC,CAAC,MAAM,CAAC;oBACb,gBAAgB,EAAE,WAAG,CAAC,QAAQ,CAAC,qDAAqD,CAAC;iBACxF,CAAC;aACL,CAAC;YACF,GAAG,EAAE,aAAC,CAAC,MAAM,CAAC;gBACV,OAAO,EAAE,aAAC,CAAC,MAAM,EAAE;aACtB,CAAC;YACF,GAAG,EAAE,aAAC,CAAC,MAAM,CAAC;gBACV,OAAO,EAAE,aAAC,CAAC,MAAM,EAAE;aACtB,CAAC;SACL;QACD,WAAW,EAAE,wEAAwE;KACxF;CACJ,EACD;IACI,UAAU,EAAE,cAAc;CAC7B,CACJ,CAAC"}
|