@hugomrdias/foxer 0.0.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.
Files changed (311) hide show
  1. package/README.md +56 -0
  2. package/dist/src/api/index.d.ts +2 -0
  3. package/dist/src/api/index.d.ts.map +1 -0
  4. package/dist/src/api/index.js +2 -0
  5. package/dist/src/api/index.js.map +1 -0
  6. package/dist/src/api/runner.d.ts +12 -0
  7. package/dist/src/api/runner.d.ts.map +1 -0
  8. package/dist/src/api/runner.js +29 -0
  9. package/dist/src/api/runner.js.map +1 -0
  10. package/dist/src/api/server.d.ts +18 -0
  11. package/dist/src/api/server.d.ts.map +1 -0
  12. package/dist/src/api/server.js +21 -0
  13. package/dist/src/api/server.js.map +1 -0
  14. package/dist/src/api/sql-middleware.d.ts +7 -0
  15. package/dist/src/api/sql-middleware.d.ts.map +1 -0
  16. package/dist/src/api/sql-middleware.js +95 -0
  17. package/dist/src/api/sql-middleware.js.map +1 -0
  18. package/dist/src/api/sql.d.ts +14 -0
  19. package/dist/src/api/sql.d.ts.map +1 -0
  20. package/dist/src/api/sql.js +108 -0
  21. package/dist/src/api/sql.js.map +1 -0
  22. package/dist/src/api/sse.d.ts +3 -0
  23. package/dist/src/api/sse.d.ts.map +1 -0
  24. package/dist/src/api/sse.js +11 -0
  25. package/dist/src/api/sse.js.map +1 -0
  26. package/dist/src/bin/dev.d.ts +3 -0
  27. package/dist/src/bin/dev.d.ts.map +1 -0
  28. package/dist/src/bin/dev.js +76 -0
  29. package/dist/src/bin/dev.js.map +1 -0
  30. package/dist/src/bin/flags.d.ts +32 -0
  31. package/dist/src/bin/flags.d.ts.map +1 -0
  32. package/dist/src/bin/flags.js +55 -0
  33. package/dist/src/bin/flags.js.map +1 -0
  34. package/dist/src/bin/index.d.ts +3 -0
  35. package/dist/src/bin/index.d.ts.map +1 -0
  36. package/dist/src/bin/index.js +22 -0
  37. package/dist/src/bin/index.js.map +1 -0
  38. package/dist/src/bin/utils.d.ts +4 -0
  39. package/dist/src/bin/utils.d.ts.map +1 -0
  40. package/dist/src/bin/utils.js +52 -0
  41. package/dist/src/bin/utils.js.map +1 -0
  42. package/dist/src/client/index.d.ts +18 -0
  43. package/dist/src/client/index.d.ts.map +1 -0
  44. package/dist/src/client/index.js +150 -0
  45. package/dist/src/client/index.js.map +1 -0
  46. package/dist/src/config/config.d.ts +157 -0
  47. package/dist/src/config/config.d.ts.map +1 -0
  48. package/dist/src/config/config.js +65 -0
  49. package/dist/src/config/config.js.map +1 -0
  50. package/dist/src/config/env.d.ts +25 -0
  51. package/dist/src/config/env.d.ts.map +1 -0
  52. package/dist/src/config/env.js +21 -0
  53. package/dist/src/config/env.js.map +1 -0
  54. package/dist/src/contants.d.ts +4 -0
  55. package/dist/src/contants.d.ts.map +1 -0
  56. package/dist/src/contants.js +4 -0
  57. package/dist/src/contants.js.map +1 -0
  58. package/dist/src/db/actions/blocks.d.ts +44 -0
  59. package/dist/src/db/actions/blocks.d.ts.map +1 -0
  60. package/dist/src/db/actions/blocks.js +152 -0
  61. package/dist/src/db/actions/blocks.js.map +1 -0
  62. package/dist/src/db/actions/index.d.ts +2 -0
  63. package/dist/src/db/actions/index.d.ts.map +1 -0
  64. package/dist/src/db/actions/index.js +2 -0
  65. package/dist/src/db/actions/index.js.map +1 -0
  66. package/dist/src/db/actions/transactions.d.ts +11 -0
  67. package/dist/src/db/actions/transactions.d.ts.map +1 -0
  68. package/dist/src/db/actions/transactions.js +22 -0
  69. package/dist/src/db/actions/transactions.js.map +1 -0
  70. package/dist/src/db/client.d.ts +329 -0
  71. package/dist/src/db/client.d.ts.map +1 -0
  72. package/dist/src/db/client.js +108 -0
  73. package/dist/src/db/client.js.map +1 -0
  74. package/dist/src/db/column-types.d.ts +132 -0
  75. package/dist/src/db/column-types.d.ts.map +1 -0
  76. package/dist/src/db/column-types.js +86 -0
  77. package/dist/src/db/column-types.js.map +1 -0
  78. package/dist/src/db/encode.d.ts +10 -0
  79. package/dist/src/db/encode.d.ts.map +1 -0
  80. package/dist/src/db/encode.js +79 -0
  81. package/dist/src/db/encode.js.map +1 -0
  82. package/dist/src/db/migrate.d.ts +31 -0
  83. package/dist/src/db/migrate.d.ts.map +1 -0
  84. package/dist/src/db/migrate.js +147 -0
  85. package/dist/src/db/migrate.js.map +1 -0
  86. package/dist/src/db/schema/blocks.d.ts +369 -0
  87. package/dist/src/db/schema/blocks.d.ts.map +1 -0
  88. package/dist/src/db/schema/blocks.js +24 -0
  89. package/dist/src/db/schema/blocks.js.map +1 -0
  90. package/dist/src/db/schema/index.d.ts +1415 -0
  91. package/dist/src/db/schema/index.d.ts.map +1 -0
  92. package/dist/src/db/schema/index.js +18 -0
  93. package/dist/src/db/schema/index.js.map +1 -0
  94. package/dist/src/db/schema/transactions.d.ts +336 -0
  95. package/dist/src/db/schema/transactions.d.ts.map +1 -0
  96. package/dist/src/db/schema/transactions.js +33 -0
  97. package/dist/src/db/schema/transactions.js.map +1 -0
  98. package/dist/src/db/transaction.d.ts +7 -0
  99. package/dist/src/db/transaction.d.ts.map +1 -0
  100. package/dist/src/db/transaction.js +8 -0
  101. package/dist/src/db/transaction.js.map +1 -0
  102. package/dist/src/hooks/default-hooks.d.ts +2 -0
  103. package/dist/src/hooks/default-hooks.d.ts.map +1 -0
  104. package/dist/src/hooks/default-hooks.js +107 -0
  105. package/dist/src/hooks/default-hooks.js.map +1 -0
  106. package/dist/src/hooks/registry.d.ts +51 -0
  107. package/dist/src/hooks/registry.d.ts.map +1 -0
  108. package/dist/src/hooks/registry.js +32 -0
  109. package/dist/src/hooks/registry.js.map +1 -0
  110. package/dist/src/index.d.ts +10 -0
  111. package/dist/src/index.d.ts.map +1 -0
  112. package/dist/src/index.js +4 -0
  113. package/dist/src/index.js.map +1 -0
  114. package/dist/src/indexer/backfill.d.ts +15 -0
  115. package/dist/src/indexer/backfill.d.ts.map +1 -0
  116. package/dist/src/indexer/backfill.js +95 -0
  117. package/dist/src/indexer/backfill.js.map +1 -0
  118. package/dist/src/indexer/live.d.ts +20 -0
  119. package/dist/src/indexer/live.d.ts.map +1 -0
  120. package/dist/src/indexer/live.js +51 -0
  121. package/dist/src/indexer/live.js.map +1 -0
  122. package/dist/src/indexer/process-block.d.ts +29 -0
  123. package/dist/src/indexer/process-block.d.ts.map +1 -0
  124. package/dist/src/indexer/process-block.js +91 -0
  125. package/dist/src/indexer/process-block.js.map +1 -0
  126. package/dist/src/indexer/queue-block.d.ts +18 -0
  127. package/dist/src/indexer/queue-block.d.ts.map +1 -0
  128. package/dist/src/indexer/queue-block.js +38 -0
  129. package/dist/src/indexer/queue-block.js.map +1 -0
  130. package/dist/src/indexer/reorg.d.ts +24 -0
  131. package/dist/src/indexer/reorg.d.ts.map +1 -0
  132. package/dist/src/indexer/reorg.js +83 -0
  133. package/dist/src/indexer/reorg.js.map +1 -0
  134. package/dist/src/indexer/runner.d.ts +14 -0
  135. package/dist/src/indexer/runner.d.ts.map +1 -0
  136. package/dist/src/indexer/runner.js +22 -0
  137. package/dist/src/indexer/runner.js.map +1 -0
  138. package/dist/src/rpc/client.d.ts +11 -0
  139. package/dist/src/rpc/client.d.ts.map +1 -0
  140. package/dist/src/rpc/client.js +18 -0
  141. package/dist/src/rpc/client.js.map +1 -0
  142. package/dist/src/rpc/get-block.d.ts +16 -0
  143. package/dist/src/rpc/get-block.d.ts.map +1 -0
  144. package/dist/src/rpc/get-block.js +77 -0
  145. package/dist/src/rpc/get-block.js.map +1 -0
  146. package/dist/src/rpc/get-logs.d.ts +11 -0
  147. package/dist/src/rpc/get-logs.d.ts.map +1 -0
  148. package/dist/src/rpc/get-logs.js +23 -0
  149. package/dist/src/rpc/get-logs.js.map +1 -0
  150. package/dist/src/schema.d.ts +3 -0
  151. package/dist/src/schema.d.ts.map +1 -0
  152. package/dist/src/schema.js +9 -0
  153. package/dist/src/schema.js.map +1 -0
  154. package/dist/src/types.d.ts +22 -0
  155. package/dist/src/types.d.ts.map +1 -0
  156. package/dist/src/types.js +1 -0
  157. package/dist/src/types.js.map +1 -0
  158. package/dist/src/utils/bloom.d.ts +6 -0
  159. package/dist/src/utils/bloom.d.ts.map +1 -0
  160. package/dist/src/utils/bloom.js +30 -0
  161. package/dist/src/utils/bloom.js.map +1 -0
  162. package/dist/src/utils/build-conflict-columns.d.ts +4 -0
  163. package/dist/src/utils/build-conflict-columns.d.ts.map +1 -0
  164. package/dist/src/utils/build-conflict-columns.js +14 -0
  165. package/dist/src/utils/build-conflict-columns.js.map +1 -0
  166. package/dist/src/utils/common.d.ts +2 -0
  167. package/dist/src/utils/common.d.ts.map +1 -0
  168. package/dist/src/utils/common.js +4 -0
  169. package/dist/src/utils/common.js.map +1 -0
  170. package/dist/src/utils/cursor.d.ts +5 -0
  171. package/dist/src/utils/cursor.d.ts.map +1 -0
  172. package/dist/src/utils/cursor.js +8 -0
  173. package/dist/src/utils/cursor.js.map +1 -0
  174. package/dist/src/utils/format.d.ts +2 -0
  175. package/dist/src/utils/format.d.ts.map +1 -0
  176. package/dist/src/utils/format.js +16 -0
  177. package/dist/src/utils/format.js.map +1 -0
  178. package/dist/src/utils/hash.d.ts +9 -0
  179. package/dist/src/utils/hash.d.ts.map +1 -0
  180. package/dist/src/utils/hash.js +15 -0
  181. package/dist/src/utils/hash.js.map +1 -0
  182. package/dist/src/utils/json.d.ts +5 -0
  183. package/dist/src/utils/json.d.ts.map +1 -0
  184. package/dist/src/utils/json.js +11 -0
  185. package/dist/src/utils/json.js.map +1 -0
  186. package/dist/src/utils/logger.d.ts +11 -0
  187. package/dist/src/utils/logger.d.ts.map +1 -0
  188. package/dist/src/utils/logger.js +111 -0
  189. package/dist/src/utils/logger.js.map +1 -0
  190. package/dist/src/utils/shutdown.d.ts +9 -0
  191. package/dist/src/utils/shutdown.d.ts.map +1 -0
  192. package/dist/src/utils/shutdown.js +24 -0
  193. package/dist/src/utils/shutdown.js.map +1 -0
  194. package/dist/src/utils/timer.d.ts +6 -0
  195. package/dist/src/utils/timer.d.ts.map +1 -0
  196. package/dist/src/utils/timer.js +9 -0
  197. package/dist/src/utils/timer.js.map +1 -0
  198. package/dist/src/utils/types.d.ts +39 -0
  199. package/dist/src/utils/types.d.ts.map +1 -0
  200. package/dist/src/utils/types.js +1 -0
  201. package/dist/src/utils/types.js.map +1 -0
  202. package/dist/tsconfig.tsbuildinfo +1 -0
  203. package/hello/apps/foc-api/README.md +69 -0
  204. package/hello/apps/foc-api/biome.json +8 -0
  205. package/hello/apps/foc-api/index.html +13 -0
  206. package/hello/apps/foc-api/package.json +39 -0
  207. package/hello/apps/foc-api/public/vite.svg +1 -0
  208. package/hello/apps/foc-api/src/app.css +45 -0
  209. package/hello/apps/foc-api/src/app.tsx +43 -0
  210. package/hello/apps/foc-api/src/assets/Cloudflare_Logo.svg +51 -0
  211. package/hello/apps/foc-api/src/assets/react.svg +1 -0
  212. package/hello/apps/foc-api/src/client.ts +41 -0
  213. package/hello/apps/foc-api/src/components/account.tsx +100 -0
  214. package/hello/apps/foc-api/src/components/wallet-options.tsx +43 -0
  215. package/hello/apps/foc-api/src/index.css +68 -0
  216. package/hello/apps/foc-api/src/main.tsx +38 -0
  217. package/hello/apps/foc-api/src/vite-env.d.ts +1 -0
  218. package/hello/apps/foc-api/tsconfig.app.json +44 -0
  219. package/hello/apps/foc-api/tsconfig.json +17 -0
  220. package/hello/apps/foc-api/tsconfig.node.json +25 -0
  221. package/hello/apps/foc-api/tsconfig.worker.json +8 -0
  222. package/hello/apps/foc-api/vite.config.ts +8 -0
  223. package/hello/apps/foc-api/worker/capabilities.ts +25 -0
  224. package/hello/apps/foc-api/worker/index.ts +64 -0
  225. package/hello/apps/foc-api/worker/router.ts +35 -0
  226. package/hello/apps/foc-api/worker-configuration.d.ts +7357 -0
  227. package/hello/apps/foc-api/wrangler.jsonc +50 -0
  228. package/hello/apps/foc-app/README.md +69 -0
  229. package/hello/apps/foc-app/biome.json +8 -0
  230. package/hello/apps/foc-app/index.html +13 -0
  231. package/hello/apps/foc-app/package.json +39 -0
  232. package/hello/apps/foc-app/public/vite.svg +1 -0
  233. package/hello/apps/foc-app/src/app.css +45 -0
  234. package/hello/apps/foc-app/src/app.tsx +43 -0
  235. package/hello/apps/foc-app/src/assets/Cloudflare_Logo.svg +51 -0
  236. package/hello/apps/foc-app/src/assets/react.svg +1 -0
  237. package/hello/apps/foc-app/src/client.ts +41 -0
  238. package/hello/apps/foc-app/src/components/account.tsx +100 -0
  239. package/hello/apps/foc-app/src/components/wallet-options.tsx +43 -0
  240. package/hello/apps/foc-app/src/index.css +68 -0
  241. package/hello/apps/foc-app/src/main.tsx +38 -0
  242. package/hello/apps/foc-app/src/vite-env.d.ts +1 -0
  243. package/hello/apps/foc-app/tsconfig.app.json +44 -0
  244. package/hello/apps/foc-app/tsconfig.json +17 -0
  245. package/hello/apps/foc-app/tsconfig.node.json +25 -0
  246. package/hello/apps/foc-app/tsconfig.worker.json +8 -0
  247. package/hello/apps/foc-app/vite.config.ts +8 -0
  248. package/hello/apps/foc-app/worker/capabilities.ts +25 -0
  249. package/hello/apps/foc-app/worker/index.ts +64 -0
  250. package/hello/apps/foc-app/worker/router.ts +35 -0
  251. package/hello/apps/foc-app/worker-configuration.d.ts +7357 -0
  252. package/hello/apps/foc-app/wrangler.jsonc +50 -0
  253. package/hello/biome.json +50 -0
  254. package/hello/package.json +22 -0
  255. package/hello/pnpm-workspace.yaml +3 -0
  256. package/hello/tsconfig.json +37 -0
  257. package/package.json +78 -0
  258. package/src/api/index.ts +1 -0
  259. package/src/api/runner.ts +43 -0
  260. package/src/api/server.ts +38 -0
  261. package/src/api/sql-middleware.ts +131 -0
  262. package/src/api/sql.ts +149 -0
  263. package/src/api/sse.ts +12 -0
  264. package/src/bin/create.ts +199 -0
  265. package/src/bin/dev.ts +91 -0
  266. package/src/bin/flags.ts +65 -0
  267. package/src/bin/index.ts +28 -0
  268. package/src/bin/utils.ts +55 -0
  269. package/src/config/config.ts +221 -0
  270. package/src/config/env.ts +28 -0
  271. package/src/contants.ts +3 -0
  272. package/src/db/actions/blocks.ts +209 -0
  273. package/src/db/actions/index.ts +1 -0
  274. package/src/db/actions/transactions.ts +32 -0
  275. package/src/db/client.ts +186 -0
  276. package/src/db/column-types.ts +105 -0
  277. package/src/db/encode.ts +99 -0
  278. package/src/db/migrate.ts +222 -0
  279. package/src/db/schema/blocks.ts +24 -0
  280. package/src/db/schema/index.ts +21 -0
  281. package/src/db/schema/transactions.ts +39 -0
  282. package/src/db/transaction.ts +20 -0
  283. package/src/hooks/registry.ts +107 -0
  284. package/src/index.ts +9 -0
  285. package/src/indexer/backfill.ts +133 -0
  286. package/src/indexer/live.ts +76 -0
  287. package/src/indexer/process-block.ts +142 -0
  288. package/src/indexer/queue-block.ts +74 -0
  289. package/src/indexer/reorg.ts +120 -0
  290. package/src/indexer/runner.ts +35 -0
  291. package/src/rpc/client.ts +27 -0
  292. package/src/rpc/get-block.ts +100 -0
  293. package/src/rpc/get-logs.ts +38 -0
  294. package/src/schema.ts +10 -0
  295. package/src/types.ts +32 -0
  296. package/src/utils/bloom.ts +41 -0
  297. package/src/utils/build-conflict-columns.ts +26 -0
  298. package/src/utils/common.ts +3 -0
  299. package/src/utils/cursor.ts +7 -0
  300. package/src/utils/format.ts +18 -0
  301. package/src/utils/hash.ts +17 -0
  302. package/src/utils/json.ts +11 -0
  303. package/src/utils/logger.ts +149 -0
  304. package/src/utils/shutdown.ts +36 -0
  305. package/src/utils/timer.ts +8 -0
  306. package/src/utils/types.ts +87 -0
  307. package/template/biome.json +50 -0
  308. package/template/package.json +22 -0
  309. package/template/pnpm-workspace.yaml +3 -0
  310. package/template/tsconfig.json +37 -0
  311. package/tsconfig.json +8 -0
@@ -0,0 +1,1415 @@
1
+ export declare const relations: import("drizzle-orm").ExtractTablesWithRelations<{
2
+ blocks: {
3
+ transactions: import("drizzle-orm").Many<"transactions">;
4
+ };
5
+ transactions: {
6
+ block: import("drizzle-orm").One<"blocks", true>;
7
+ };
8
+ }, import("drizzle-orm").ExtractTablesFromSchema<{
9
+ blocks: import("drizzle-orm/pg-core").PgTableWithColumns<{
10
+ name: "blocks";
11
+ schema: undefined;
12
+ columns: {
13
+ number: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
14
+ dataType: "custom";
15
+ data: bigint;
16
+ driverParam: string;
17
+ }>>>, {
18
+ name: string;
19
+ tableName: "blocks";
20
+ dataType: "custom";
21
+ data: bigint;
22
+ driverParam: string;
23
+ notNull: true;
24
+ hasDefault: false;
25
+ isPrimaryKey: false;
26
+ isAutoincrement: false;
27
+ hasRuntimeDefault: false;
28
+ enumValues: undefined;
29
+ identity: undefined;
30
+ generated: undefined;
31
+ }>;
32
+ timestamp: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
33
+ dataType: "custom";
34
+ data: bigint;
35
+ driverParam: string;
36
+ }>>, {
37
+ name: string;
38
+ tableName: "blocks";
39
+ dataType: "custom";
40
+ data: bigint;
41
+ driverParam: string;
42
+ notNull: true;
43
+ hasDefault: false;
44
+ isPrimaryKey: false;
45
+ isAutoincrement: false;
46
+ hasRuntimeDefault: false;
47
+ enumValues: undefined;
48
+ identity: undefined;
49
+ generated: undefined;
50
+ }>;
51
+ hash: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
52
+ dataType: "custom";
53
+ data: `0x${string}`;
54
+ driverParam: string;
55
+ }>>, {
56
+ name: string;
57
+ tableName: "blocks";
58
+ dataType: "custom";
59
+ data: `0x${string}`;
60
+ driverParam: string;
61
+ notNull: true;
62
+ hasDefault: false;
63
+ isPrimaryKey: false;
64
+ isAutoincrement: false;
65
+ hasRuntimeDefault: false;
66
+ enumValues: undefined;
67
+ identity: undefined;
68
+ generated: undefined;
69
+ }>;
70
+ parentHash: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
71
+ dataType: "custom";
72
+ data: `0x${string}`;
73
+ driverParam: string;
74
+ }>>, {
75
+ name: string;
76
+ tableName: "blocks";
77
+ dataType: "custom";
78
+ data: `0x${string}`;
79
+ driverParam: string;
80
+ notNull: true;
81
+ hasDefault: false;
82
+ isPrimaryKey: false;
83
+ isAutoincrement: false;
84
+ hasRuntimeDefault: false;
85
+ enumValues: undefined;
86
+ identity: undefined;
87
+ generated: undefined;
88
+ }>;
89
+ logsBloom: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
90
+ dataType: "custom";
91
+ data: `0x${string}`;
92
+ driverParam: Buffer<ArrayBufferLike>;
93
+ }>>, {
94
+ name: string;
95
+ tableName: "blocks";
96
+ dataType: "custom";
97
+ data: `0x${string}`;
98
+ driverParam: Buffer<ArrayBufferLike>;
99
+ notNull: true;
100
+ hasDefault: false;
101
+ isPrimaryKey: false;
102
+ isAutoincrement: false;
103
+ hasRuntimeDefault: false;
104
+ enumValues: undefined;
105
+ identity: undefined;
106
+ generated: undefined;
107
+ }>;
108
+ miner: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
109
+ dataType: "custom";
110
+ data: `0x${string}`;
111
+ driverParam: string;
112
+ }>>, {
113
+ name: string;
114
+ tableName: "blocks";
115
+ dataType: "custom";
116
+ data: `0x${string}`;
117
+ driverParam: string;
118
+ notNull: true;
119
+ hasDefault: false;
120
+ isPrimaryKey: false;
121
+ isAutoincrement: false;
122
+ hasRuntimeDefault: false;
123
+ enumValues: undefined;
124
+ identity: undefined;
125
+ generated: undefined;
126
+ }>;
127
+ gasUsed: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
128
+ dataType: "custom";
129
+ data: bigint;
130
+ driverParam: string;
131
+ }>>, {
132
+ name: string;
133
+ tableName: "blocks";
134
+ dataType: "custom";
135
+ data: bigint;
136
+ driverParam: string;
137
+ notNull: true;
138
+ hasDefault: false;
139
+ isPrimaryKey: false;
140
+ isAutoincrement: false;
141
+ hasRuntimeDefault: false;
142
+ enumValues: undefined;
143
+ identity: undefined;
144
+ generated: undefined;
145
+ }>;
146
+ gasLimit: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
147
+ dataType: "custom";
148
+ data: bigint;
149
+ driverParam: string;
150
+ }>>, {
151
+ name: string;
152
+ tableName: "blocks";
153
+ dataType: "custom";
154
+ data: bigint;
155
+ driverParam: string;
156
+ notNull: true;
157
+ hasDefault: false;
158
+ isPrimaryKey: false;
159
+ isAutoincrement: false;
160
+ hasRuntimeDefault: false;
161
+ enumValues: undefined;
162
+ identity: undefined;
163
+ generated: undefined;
164
+ }>;
165
+ baseFeePerGas: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
166
+ dataType: "custom";
167
+ data: bigint;
168
+ driverParam: string;
169
+ }>, {
170
+ name: string;
171
+ tableName: "blocks";
172
+ dataType: "custom";
173
+ data: bigint;
174
+ driverParam: string;
175
+ notNull: false;
176
+ hasDefault: false;
177
+ isPrimaryKey: false;
178
+ isAutoincrement: false;
179
+ hasRuntimeDefault: false;
180
+ enumValues: undefined;
181
+ identity: undefined;
182
+ generated: undefined;
183
+ }>;
184
+ nonce: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
185
+ dataType: "custom";
186
+ data: `0x${string}`;
187
+ driverParam: Buffer<ArrayBufferLike>;
188
+ }>>, {
189
+ name: string;
190
+ tableName: "blocks";
191
+ dataType: "custom";
192
+ data: `0x${string}`;
193
+ driverParam: Buffer<ArrayBufferLike>;
194
+ notNull: true;
195
+ hasDefault: false;
196
+ isPrimaryKey: false;
197
+ isAutoincrement: false;
198
+ hasRuntimeDefault: false;
199
+ enumValues: undefined;
200
+ identity: undefined;
201
+ generated: undefined;
202
+ }>;
203
+ mixHash: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
204
+ dataType: "custom";
205
+ data: `0x${string}`;
206
+ driverParam: Buffer<ArrayBufferLike>;
207
+ }>>, {
208
+ name: string;
209
+ tableName: "blocks";
210
+ dataType: "custom";
211
+ data: `0x${string}`;
212
+ driverParam: Buffer<ArrayBufferLike>;
213
+ notNull: true;
214
+ hasDefault: false;
215
+ isPrimaryKey: false;
216
+ isAutoincrement: false;
217
+ hasRuntimeDefault: false;
218
+ enumValues: undefined;
219
+ identity: undefined;
220
+ generated: undefined;
221
+ }>;
222
+ stateRoot: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
223
+ dataType: "custom";
224
+ data: `0x${string}`;
225
+ driverParam: Buffer<ArrayBufferLike>;
226
+ }>>, {
227
+ name: string;
228
+ tableName: "blocks";
229
+ dataType: "custom";
230
+ data: `0x${string}`;
231
+ driverParam: Buffer<ArrayBufferLike>;
232
+ notNull: true;
233
+ hasDefault: false;
234
+ isPrimaryKey: false;
235
+ isAutoincrement: false;
236
+ hasRuntimeDefault: false;
237
+ enumValues: undefined;
238
+ identity: undefined;
239
+ generated: undefined;
240
+ }>;
241
+ receiptsRoot: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
242
+ dataType: "custom";
243
+ data: `0x${string}`;
244
+ driverParam: Buffer<ArrayBufferLike>;
245
+ }>>, {
246
+ name: string;
247
+ tableName: "blocks";
248
+ dataType: "custom";
249
+ data: `0x${string}`;
250
+ driverParam: Buffer<ArrayBufferLike>;
251
+ notNull: true;
252
+ hasDefault: false;
253
+ isPrimaryKey: false;
254
+ isAutoincrement: false;
255
+ hasRuntimeDefault: false;
256
+ enumValues: undefined;
257
+ identity: undefined;
258
+ generated: undefined;
259
+ }>;
260
+ transactionsRoot: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
261
+ dataType: "custom";
262
+ data: `0x${string}`;
263
+ driverParam: Buffer<ArrayBufferLike>;
264
+ }>>, {
265
+ name: string;
266
+ tableName: "blocks";
267
+ dataType: "custom";
268
+ data: `0x${string}`;
269
+ driverParam: Buffer<ArrayBufferLike>;
270
+ notNull: true;
271
+ hasDefault: false;
272
+ isPrimaryKey: false;
273
+ isAutoincrement: false;
274
+ hasRuntimeDefault: false;
275
+ enumValues: undefined;
276
+ identity: undefined;
277
+ generated: undefined;
278
+ }>;
279
+ sha3Uncles: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
280
+ dataType: "custom";
281
+ data: `0x${string}`;
282
+ driverParam: Buffer<ArrayBufferLike>;
283
+ }>>, {
284
+ name: string;
285
+ tableName: "blocks";
286
+ dataType: "custom";
287
+ data: `0x${string}`;
288
+ driverParam: Buffer<ArrayBufferLike>;
289
+ notNull: true;
290
+ hasDefault: false;
291
+ isPrimaryKey: false;
292
+ isAutoincrement: false;
293
+ hasRuntimeDefault: false;
294
+ enumValues: undefined;
295
+ identity: undefined;
296
+ generated: undefined;
297
+ }>;
298
+ size: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
299
+ dataType: "custom";
300
+ data: bigint;
301
+ driverParam: string;
302
+ }>>, {
303
+ name: string;
304
+ tableName: "blocks";
305
+ dataType: "custom";
306
+ data: bigint;
307
+ driverParam: string;
308
+ notNull: true;
309
+ hasDefault: false;
310
+ isPrimaryKey: false;
311
+ isAutoincrement: false;
312
+ hasRuntimeDefault: false;
313
+ enumValues: undefined;
314
+ identity: undefined;
315
+ generated: undefined;
316
+ }>;
317
+ difficulty: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
318
+ dataType: "custom";
319
+ data: bigint;
320
+ driverParam: string;
321
+ }>>, {
322
+ name: string;
323
+ tableName: "blocks";
324
+ dataType: "custom";
325
+ data: bigint;
326
+ driverParam: string;
327
+ notNull: true;
328
+ hasDefault: false;
329
+ isPrimaryKey: false;
330
+ isAutoincrement: false;
331
+ hasRuntimeDefault: false;
332
+ enumValues: undefined;
333
+ identity: undefined;
334
+ generated: undefined;
335
+ }>;
336
+ totalDifficulty: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
337
+ dataType: "custom";
338
+ data: bigint;
339
+ driverParam: string;
340
+ }>, {
341
+ name: string;
342
+ tableName: "blocks";
343
+ dataType: "custom";
344
+ data: bigint;
345
+ driverParam: string;
346
+ notNull: false;
347
+ hasDefault: false;
348
+ isPrimaryKey: false;
349
+ isAutoincrement: false;
350
+ hasRuntimeDefault: false;
351
+ enumValues: undefined;
352
+ identity: undefined;
353
+ generated: undefined;
354
+ }>;
355
+ extraData: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
356
+ dataType: "custom";
357
+ data: `0x${string}`;
358
+ driverParam: Buffer<ArrayBufferLike>;
359
+ }>>, {
360
+ name: string;
361
+ tableName: "blocks";
362
+ dataType: "custom";
363
+ data: `0x${string}`;
364
+ driverParam: Buffer<ArrayBufferLike>;
365
+ notNull: true;
366
+ hasDefault: false;
367
+ isPrimaryKey: false;
368
+ isAutoincrement: false;
369
+ hasRuntimeDefault: false;
370
+ enumValues: undefined;
371
+ identity: undefined;
372
+ generated: undefined;
373
+ }>;
374
+ };
375
+ dialect: "pg";
376
+ }>;
377
+ transactions: import("drizzle-orm/pg-core").PgTableWithColumns<{
378
+ name: "transactions";
379
+ schema: undefined;
380
+ columns: {
381
+ hash: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
382
+ dataType: "custom";
383
+ data: `0x${string}`;
384
+ driverParam: string;
385
+ }>>, {
386
+ name: string;
387
+ tableName: "transactions";
388
+ dataType: "custom";
389
+ data: `0x${string}`;
390
+ driverParam: string;
391
+ notNull: true;
392
+ hasDefault: false;
393
+ isPrimaryKey: false;
394
+ isAutoincrement: false;
395
+ hasRuntimeDefault: false;
396
+ enumValues: undefined;
397
+ identity: undefined;
398
+ generated: undefined;
399
+ }>;
400
+ blockNumber: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
401
+ dataType: "custom";
402
+ data: bigint;
403
+ driverParam: string;
404
+ }>>, {
405
+ name: string;
406
+ tableName: "transactions";
407
+ dataType: "custom";
408
+ data: bigint;
409
+ driverParam: string;
410
+ notNull: true;
411
+ hasDefault: false;
412
+ isPrimaryKey: false;
413
+ isAutoincrement: false;
414
+ hasRuntimeDefault: false;
415
+ enumValues: undefined;
416
+ identity: undefined;
417
+ generated: undefined;
418
+ }>;
419
+ transactionIndex: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>, {
420
+ name: string;
421
+ tableName: "transactions";
422
+ dataType: "number int32";
423
+ data: number;
424
+ driverParam: string | number;
425
+ notNull: true;
426
+ hasDefault: false;
427
+ isPrimaryKey: false;
428
+ isAutoincrement: false;
429
+ hasRuntimeDefault: false;
430
+ enumValues: undefined;
431
+ identity: undefined;
432
+ generated: undefined;
433
+ }>;
434
+ blockHash: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
435
+ dataType: "custom";
436
+ data: `0x${string}`;
437
+ driverParam: string;
438
+ }>>, {
439
+ name: string;
440
+ tableName: "transactions";
441
+ dataType: "custom";
442
+ data: `0x${string}`;
443
+ driverParam: string;
444
+ notNull: true;
445
+ hasDefault: false;
446
+ isPrimaryKey: false;
447
+ isAutoincrement: false;
448
+ hasRuntimeDefault: false;
449
+ enumValues: undefined;
450
+ identity: undefined;
451
+ generated: undefined;
452
+ }>;
453
+ from: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
454
+ dataType: "custom";
455
+ data: `0x${string}`;
456
+ driverParam: string;
457
+ }>>, {
458
+ name: string;
459
+ tableName: "transactions";
460
+ dataType: "custom";
461
+ data: `0x${string}`;
462
+ driverParam: string;
463
+ notNull: true;
464
+ hasDefault: false;
465
+ isPrimaryKey: false;
466
+ isAutoincrement: false;
467
+ hasRuntimeDefault: false;
468
+ enumValues: undefined;
469
+ identity: undefined;
470
+ generated: undefined;
471
+ }>;
472
+ to: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
473
+ dataType: "custom";
474
+ data: `0x${string}`;
475
+ driverParam: string;
476
+ }>, {
477
+ name: string;
478
+ tableName: "transactions";
479
+ dataType: "custom";
480
+ data: `0x${string}`;
481
+ driverParam: string;
482
+ notNull: false;
483
+ hasDefault: false;
484
+ isPrimaryKey: false;
485
+ isAutoincrement: false;
486
+ hasRuntimeDefault: false;
487
+ enumValues: undefined;
488
+ identity: undefined;
489
+ generated: undefined;
490
+ }>;
491
+ input: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
492
+ dataType: "custom";
493
+ data: `0x${string}`;
494
+ driverParam: Buffer<ArrayBufferLike>;
495
+ }>>, {
496
+ name: string;
497
+ tableName: "transactions";
498
+ dataType: "custom";
499
+ data: `0x${string}`;
500
+ driverParam: Buffer<ArrayBufferLike>;
501
+ notNull: true;
502
+ hasDefault: false;
503
+ isPrimaryKey: false;
504
+ isAutoincrement: false;
505
+ hasRuntimeDefault: false;
506
+ enumValues: undefined;
507
+ identity: undefined;
508
+ generated: undefined;
509
+ }>;
510
+ value: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
511
+ dataType: "custom";
512
+ data: bigint;
513
+ driverParam: string;
514
+ }>>, {
515
+ name: string;
516
+ tableName: "transactions";
517
+ dataType: "custom";
518
+ data: bigint;
519
+ driverParam: string;
520
+ notNull: true;
521
+ hasDefault: false;
522
+ isPrimaryKey: false;
523
+ isAutoincrement: false;
524
+ hasRuntimeDefault: false;
525
+ enumValues: undefined;
526
+ identity: undefined;
527
+ generated: undefined;
528
+ }>;
529
+ nonce: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>, {
530
+ name: string;
531
+ tableName: "transactions";
532
+ dataType: "number int32";
533
+ data: number;
534
+ driverParam: string | number;
535
+ notNull: true;
536
+ hasDefault: false;
537
+ isPrimaryKey: false;
538
+ isAutoincrement: false;
539
+ hasRuntimeDefault: false;
540
+ enumValues: undefined;
541
+ identity: undefined;
542
+ generated: undefined;
543
+ }>;
544
+ r: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
545
+ dataType: "custom";
546
+ data: `0x${string}`;
547
+ driverParam: Buffer<ArrayBufferLike>;
548
+ }>>, {
549
+ name: string;
550
+ tableName: "transactions";
551
+ dataType: "custom";
552
+ data: `0x${string}`;
553
+ driverParam: Buffer<ArrayBufferLike>;
554
+ notNull: true;
555
+ hasDefault: false;
556
+ isPrimaryKey: false;
557
+ isAutoincrement: false;
558
+ hasRuntimeDefault: false;
559
+ enumValues: undefined;
560
+ identity: undefined;
561
+ generated: undefined;
562
+ }>;
563
+ s: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
564
+ dataType: "custom";
565
+ data: `0x${string}`;
566
+ driverParam: Buffer<ArrayBufferLike>;
567
+ }>>, {
568
+ name: string;
569
+ tableName: "transactions";
570
+ dataType: "custom";
571
+ data: `0x${string}`;
572
+ driverParam: Buffer<ArrayBufferLike>;
573
+ notNull: true;
574
+ hasDefault: false;
575
+ isPrimaryKey: false;
576
+ isAutoincrement: false;
577
+ hasRuntimeDefault: false;
578
+ enumValues: undefined;
579
+ identity: undefined;
580
+ generated: undefined;
581
+ }>;
582
+ v: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
583
+ dataType: "custom";
584
+ data: bigint;
585
+ driverParam: string;
586
+ }>>, {
587
+ name: string;
588
+ tableName: "transactions";
589
+ dataType: "custom";
590
+ data: bigint;
591
+ driverParam: string;
592
+ notNull: true;
593
+ hasDefault: false;
594
+ isPrimaryKey: false;
595
+ isAutoincrement: false;
596
+ hasRuntimeDefault: false;
597
+ enumValues: undefined;
598
+ identity: undefined;
599
+ generated: undefined;
600
+ }>;
601
+ type: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgEnumColumnBuilder<["legacy", "eip1559", "eip2930", "eip4844", "eip7702"]>>, {
602
+ name: string;
603
+ tableName: "transactions";
604
+ dataType: "string enum";
605
+ data: "legacy" | "eip1559" | "eip2930" | "eip4844" | "eip7702";
606
+ driverParam: string;
607
+ notNull: true;
608
+ hasDefault: false;
609
+ isPrimaryKey: false;
610
+ isAutoincrement: false;
611
+ hasRuntimeDefault: false;
612
+ enumValues: ["legacy", "eip1559", "eip2930", "eip4844", "eip7702"];
613
+ identity: undefined;
614
+ generated: undefined;
615
+ }>;
616
+ gas: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
617
+ dataType: "custom";
618
+ data: bigint;
619
+ driverParam: string;
620
+ }>>, {
621
+ name: string;
622
+ tableName: "transactions";
623
+ dataType: "custom";
624
+ data: bigint;
625
+ driverParam: string;
626
+ notNull: true;
627
+ hasDefault: false;
628
+ isPrimaryKey: false;
629
+ isAutoincrement: false;
630
+ hasRuntimeDefault: false;
631
+ enumValues: undefined;
632
+ identity: undefined;
633
+ generated: undefined;
634
+ }>;
635
+ gasPrice: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
636
+ dataType: "custom";
637
+ data: bigint;
638
+ driverParam: string;
639
+ }>, {
640
+ name: string;
641
+ tableName: "transactions";
642
+ dataType: "custom";
643
+ data: bigint;
644
+ driverParam: string;
645
+ notNull: false;
646
+ hasDefault: false;
647
+ isPrimaryKey: false;
648
+ isAutoincrement: false;
649
+ hasRuntimeDefault: false;
650
+ enumValues: undefined;
651
+ identity: undefined;
652
+ generated: undefined;
653
+ }>;
654
+ maxFeePerGas: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
655
+ dataType: "custom";
656
+ data: bigint;
657
+ driverParam: string;
658
+ }>, {
659
+ name: string;
660
+ tableName: "transactions";
661
+ dataType: "custom";
662
+ data: bigint;
663
+ driverParam: string;
664
+ notNull: false;
665
+ hasDefault: false;
666
+ isPrimaryKey: false;
667
+ isAutoincrement: false;
668
+ hasRuntimeDefault: false;
669
+ enumValues: undefined;
670
+ identity: undefined;
671
+ generated: undefined;
672
+ }>;
673
+ maxPriorityFeePerGas: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
674
+ dataType: "custom";
675
+ data: bigint;
676
+ driverParam: string;
677
+ }>, {
678
+ name: string;
679
+ tableName: "transactions";
680
+ dataType: "custom";
681
+ data: bigint;
682
+ driverParam: string;
683
+ notNull: false;
684
+ hasDefault: false;
685
+ isPrimaryKey: false;
686
+ isAutoincrement: false;
687
+ hasRuntimeDefault: false;
688
+ enumValues: undefined;
689
+ identity: undefined;
690
+ generated: undefined;
691
+ }>;
692
+ accessList: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").Set$Type<import("drizzle-orm/pg-core").PgJsonbBuilder, import("viem").AccessList>, {
693
+ name: string;
694
+ tableName: "transactions";
695
+ dataType: "object json";
696
+ data: import("viem").AccessList;
697
+ driverParam: unknown;
698
+ notNull: false;
699
+ hasDefault: false;
700
+ isPrimaryKey: false;
701
+ isAutoincrement: false;
702
+ hasRuntimeDefault: false;
703
+ enumValues: undefined;
704
+ identity: undefined;
705
+ generated: undefined;
706
+ }>;
707
+ };
708
+ dialect: "pg";
709
+ }>;
710
+ }>>;
711
+ export declare const schema: {
712
+ blocks: import("drizzle-orm/pg-core").PgTableWithColumns<{
713
+ name: "blocks";
714
+ schema: undefined;
715
+ columns: {
716
+ number: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
717
+ dataType: "custom";
718
+ data: bigint;
719
+ driverParam: string;
720
+ }>>>, {
721
+ name: string;
722
+ tableName: "blocks";
723
+ dataType: "custom";
724
+ data: bigint;
725
+ driverParam: string;
726
+ notNull: true;
727
+ hasDefault: false;
728
+ isPrimaryKey: false;
729
+ isAutoincrement: false;
730
+ hasRuntimeDefault: false;
731
+ enumValues: undefined;
732
+ identity: undefined;
733
+ generated: undefined;
734
+ }>;
735
+ timestamp: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
736
+ dataType: "custom";
737
+ data: bigint;
738
+ driverParam: string;
739
+ }>>, {
740
+ name: string;
741
+ tableName: "blocks";
742
+ dataType: "custom";
743
+ data: bigint;
744
+ driverParam: string;
745
+ notNull: true;
746
+ hasDefault: false;
747
+ isPrimaryKey: false;
748
+ isAutoincrement: false;
749
+ hasRuntimeDefault: false;
750
+ enumValues: undefined;
751
+ identity: undefined;
752
+ generated: undefined;
753
+ }>;
754
+ hash: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
755
+ dataType: "custom";
756
+ data: `0x${string}`;
757
+ driverParam: string;
758
+ }>>, {
759
+ name: string;
760
+ tableName: "blocks";
761
+ dataType: "custom";
762
+ data: `0x${string}`;
763
+ driverParam: string;
764
+ notNull: true;
765
+ hasDefault: false;
766
+ isPrimaryKey: false;
767
+ isAutoincrement: false;
768
+ hasRuntimeDefault: false;
769
+ enumValues: undefined;
770
+ identity: undefined;
771
+ generated: undefined;
772
+ }>;
773
+ parentHash: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
774
+ dataType: "custom";
775
+ data: `0x${string}`;
776
+ driverParam: string;
777
+ }>>, {
778
+ name: string;
779
+ tableName: "blocks";
780
+ dataType: "custom";
781
+ data: `0x${string}`;
782
+ driverParam: string;
783
+ notNull: true;
784
+ hasDefault: false;
785
+ isPrimaryKey: false;
786
+ isAutoincrement: false;
787
+ hasRuntimeDefault: false;
788
+ enumValues: undefined;
789
+ identity: undefined;
790
+ generated: undefined;
791
+ }>;
792
+ logsBloom: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
793
+ dataType: "custom";
794
+ data: `0x${string}`;
795
+ driverParam: Buffer<ArrayBufferLike>;
796
+ }>>, {
797
+ name: string;
798
+ tableName: "blocks";
799
+ dataType: "custom";
800
+ data: `0x${string}`;
801
+ driverParam: Buffer<ArrayBufferLike>;
802
+ notNull: true;
803
+ hasDefault: false;
804
+ isPrimaryKey: false;
805
+ isAutoincrement: false;
806
+ hasRuntimeDefault: false;
807
+ enumValues: undefined;
808
+ identity: undefined;
809
+ generated: undefined;
810
+ }>;
811
+ miner: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
812
+ dataType: "custom";
813
+ data: `0x${string}`;
814
+ driverParam: string;
815
+ }>>, {
816
+ name: string;
817
+ tableName: "blocks";
818
+ dataType: "custom";
819
+ data: `0x${string}`;
820
+ driverParam: string;
821
+ notNull: true;
822
+ hasDefault: false;
823
+ isPrimaryKey: false;
824
+ isAutoincrement: false;
825
+ hasRuntimeDefault: false;
826
+ enumValues: undefined;
827
+ identity: undefined;
828
+ generated: undefined;
829
+ }>;
830
+ gasUsed: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
831
+ dataType: "custom";
832
+ data: bigint;
833
+ driverParam: string;
834
+ }>>, {
835
+ name: string;
836
+ tableName: "blocks";
837
+ dataType: "custom";
838
+ data: bigint;
839
+ driverParam: string;
840
+ notNull: true;
841
+ hasDefault: false;
842
+ isPrimaryKey: false;
843
+ isAutoincrement: false;
844
+ hasRuntimeDefault: false;
845
+ enumValues: undefined;
846
+ identity: undefined;
847
+ generated: undefined;
848
+ }>;
849
+ gasLimit: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
850
+ dataType: "custom";
851
+ data: bigint;
852
+ driverParam: string;
853
+ }>>, {
854
+ name: string;
855
+ tableName: "blocks";
856
+ dataType: "custom";
857
+ data: bigint;
858
+ driverParam: string;
859
+ notNull: true;
860
+ hasDefault: false;
861
+ isPrimaryKey: false;
862
+ isAutoincrement: false;
863
+ hasRuntimeDefault: false;
864
+ enumValues: undefined;
865
+ identity: undefined;
866
+ generated: undefined;
867
+ }>;
868
+ baseFeePerGas: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
869
+ dataType: "custom";
870
+ data: bigint;
871
+ driverParam: string;
872
+ }>, {
873
+ name: string;
874
+ tableName: "blocks";
875
+ dataType: "custom";
876
+ data: bigint;
877
+ driverParam: string;
878
+ notNull: false;
879
+ hasDefault: false;
880
+ isPrimaryKey: false;
881
+ isAutoincrement: false;
882
+ hasRuntimeDefault: false;
883
+ enumValues: undefined;
884
+ identity: undefined;
885
+ generated: undefined;
886
+ }>;
887
+ nonce: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
888
+ dataType: "custom";
889
+ data: `0x${string}`;
890
+ driverParam: Buffer<ArrayBufferLike>;
891
+ }>>, {
892
+ name: string;
893
+ tableName: "blocks";
894
+ dataType: "custom";
895
+ data: `0x${string}`;
896
+ driverParam: Buffer<ArrayBufferLike>;
897
+ notNull: true;
898
+ hasDefault: false;
899
+ isPrimaryKey: false;
900
+ isAutoincrement: false;
901
+ hasRuntimeDefault: false;
902
+ enumValues: undefined;
903
+ identity: undefined;
904
+ generated: undefined;
905
+ }>;
906
+ mixHash: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
907
+ dataType: "custom";
908
+ data: `0x${string}`;
909
+ driverParam: Buffer<ArrayBufferLike>;
910
+ }>>, {
911
+ name: string;
912
+ tableName: "blocks";
913
+ dataType: "custom";
914
+ data: `0x${string}`;
915
+ driverParam: Buffer<ArrayBufferLike>;
916
+ notNull: true;
917
+ hasDefault: false;
918
+ isPrimaryKey: false;
919
+ isAutoincrement: false;
920
+ hasRuntimeDefault: false;
921
+ enumValues: undefined;
922
+ identity: undefined;
923
+ generated: undefined;
924
+ }>;
925
+ stateRoot: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
926
+ dataType: "custom";
927
+ data: `0x${string}`;
928
+ driverParam: Buffer<ArrayBufferLike>;
929
+ }>>, {
930
+ name: string;
931
+ tableName: "blocks";
932
+ dataType: "custom";
933
+ data: `0x${string}`;
934
+ driverParam: Buffer<ArrayBufferLike>;
935
+ notNull: true;
936
+ hasDefault: false;
937
+ isPrimaryKey: false;
938
+ isAutoincrement: false;
939
+ hasRuntimeDefault: false;
940
+ enumValues: undefined;
941
+ identity: undefined;
942
+ generated: undefined;
943
+ }>;
944
+ receiptsRoot: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
945
+ dataType: "custom";
946
+ data: `0x${string}`;
947
+ driverParam: Buffer<ArrayBufferLike>;
948
+ }>>, {
949
+ name: string;
950
+ tableName: "blocks";
951
+ dataType: "custom";
952
+ data: `0x${string}`;
953
+ driverParam: Buffer<ArrayBufferLike>;
954
+ notNull: true;
955
+ hasDefault: false;
956
+ isPrimaryKey: false;
957
+ isAutoincrement: false;
958
+ hasRuntimeDefault: false;
959
+ enumValues: undefined;
960
+ identity: undefined;
961
+ generated: undefined;
962
+ }>;
963
+ transactionsRoot: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
964
+ dataType: "custom";
965
+ data: `0x${string}`;
966
+ driverParam: Buffer<ArrayBufferLike>;
967
+ }>>, {
968
+ name: string;
969
+ tableName: "blocks";
970
+ dataType: "custom";
971
+ data: `0x${string}`;
972
+ driverParam: Buffer<ArrayBufferLike>;
973
+ notNull: true;
974
+ hasDefault: false;
975
+ isPrimaryKey: false;
976
+ isAutoincrement: false;
977
+ hasRuntimeDefault: false;
978
+ enumValues: undefined;
979
+ identity: undefined;
980
+ generated: undefined;
981
+ }>;
982
+ sha3Uncles: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
983
+ dataType: "custom";
984
+ data: `0x${string}`;
985
+ driverParam: Buffer<ArrayBufferLike>;
986
+ }>>, {
987
+ name: string;
988
+ tableName: "blocks";
989
+ dataType: "custom";
990
+ data: `0x${string}`;
991
+ driverParam: Buffer<ArrayBufferLike>;
992
+ notNull: true;
993
+ hasDefault: false;
994
+ isPrimaryKey: false;
995
+ isAutoincrement: false;
996
+ hasRuntimeDefault: false;
997
+ enumValues: undefined;
998
+ identity: undefined;
999
+ generated: undefined;
1000
+ }>;
1001
+ size: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1002
+ dataType: "custom";
1003
+ data: bigint;
1004
+ driverParam: string;
1005
+ }>>, {
1006
+ name: string;
1007
+ tableName: "blocks";
1008
+ dataType: "custom";
1009
+ data: bigint;
1010
+ driverParam: string;
1011
+ notNull: true;
1012
+ hasDefault: false;
1013
+ isPrimaryKey: false;
1014
+ isAutoincrement: false;
1015
+ hasRuntimeDefault: false;
1016
+ enumValues: undefined;
1017
+ identity: undefined;
1018
+ generated: undefined;
1019
+ }>;
1020
+ difficulty: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1021
+ dataType: "custom";
1022
+ data: bigint;
1023
+ driverParam: string;
1024
+ }>>, {
1025
+ name: string;
1026
+ tableName: "blocks";
1027
+ dataType: "custom";
1028
+ data: bigint;
1029
+ driverParam: string;
1030
+ notNull: true;
1031
+ hasDefault: false;
1032
+ isPrimaryKey: false;
1033
+ isAutoincrement: false;
1034
+ hasRuntimeDefault: false;
1035
+ enumValues: undefined;
1036
+ identity: undefined;
1037
+ generated: undefined;
1038
+ }>;
1039
+ totalDifficulty: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1040
+ dataType: "custom";
1041
+ data: bigint;
1042
+ driverParam: string;
1043
+ }>, {
1044
+ name: string;
1045
+ tableName: "blocks";
1046
+ dataType: "custom";
1047
+ data: bigint;
1048
+ driverParam: string;
1049
+ notNull: false;
1050
+ hasDefault: false;
1051
+ isPrimaryKey: false;
1052
+ isAutoincrement: false;
1053
+ hasRuntimeDefault: false;
1054
+ enumValues: undefined;
1055
+ identity: undefined;
1056
+ generated: undefined;
1057
+ }>;
1058
+ extraData: import("drizzle-orm/pg-core").PgBuildColumn<"blocks", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1059
+ dataType: "custom";
1060
+ data: `0x${string}`;
1061
+ driverParam: Buffer<ArrayBufferLike>;
1062
+ }>>, {
1063
+ name: string;
1064
+ tableName: "blocks";
1065
+ dataType: "custom";
1066
+ data: `0x${string}`;
1067
+ driverParam: Buffer<ArrayBufferLike>;
1068
+ notNull: true;
1069
+ hasDefault: false;
1070
+ isPrimaryKey: false;
1071
+ isAutoincrement: false;
1072
+ hasRuntimeDefault: false;
1073
+ enumValues: undefined;
1074
+ identity: undefined;
1075
+ generated: undefined;
1076
+ }>;
1077
+ };
1078
+ dialect: "pg";
1079
+ }>;
1080
+ transactions: import("drizzle-orm/pg-core").PgTableWithColumns<{
1081
+ name: "transactions";
1082
+ schema: undefined;
1083
+ columns: {
1084
+ hash: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1085
+ dataType: "custom";
1086
+ data: `0x${string}`;
1087
+ driverParam: string;
1088
+ }>>, {
1089
+ name: string;
1090
+ tableName: "transactions";
1091
+ dataType: "custom";
1092
+ data: `0x${string}`;
1093
+ driverParam: string;
1094
+ notNull: true;
1095
+ hasDefault: false;
1096
+ isPrimaryKey: false;
1097
+ isAutoincrement: false;
1098
+ hasRuntimeDefault: false;
1099
+ enumValues: undefined;
1100
+ identity: undefined;
1101
+ generated: undefined;
1102
+ }>;
1103
+ blockNumber: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1104
+ dataType: "custom";
1105
+ data: bigint;
1106
+ driverParam: string;
1107
+ }>>, {
1108
+ name: string;
1109
+ tableName: "transactions";
1110
+ dataType: "custom";
1111
+ data: bigint;
1112
+ driverParam: string;
1113
+ notNull: true;
1114
+ hasDefault: false;
1115
+ isPrimaryKey: false;
1116
+ isAutoincrement: false;
1117
+ hasRuntimeDefault: false;
1118
+ enumValues: undefined;
1119
+ identity: undefined;
1120
+ generated: undefined;
1121
+ }>;
1122
+ transactionIndex: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>, {
1123
+ name: string;
1124
+ tableName: "transactions";
1125
+ dataType: "number int32";
1126
+ data: number;
1127
+ driverParam: string | number;
1128
+ notNull: true;
1129
+ hasDefault: false;
1130
+ isPrimaryKey: false;
1131
+ isAutoincrement: false;
1132
+ hasRuntimeDefault: false;
1133
+ enumValues: undefined;
1134
+ identity: undefined;
1135
+ generated: undefined;
1136
+ }>;
1137
+ blockHash: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1138
+ dataType: "custom";
1139
+ data: `0x${string}`;
1140
+ driverParam: string;
1141
+ }>>, {
1142
+ name: string;
1143
+ tableName: "transactions";
1144
+ dataType: "custom";
1145
+ data: `0x${string}`;
1146
+ driverParam: string;
1147
+ notNull: true;
1148
+ hasDefault: false;
1149
+ isPrimaryKey: false;
1150
+ isAutoincrement: false;
1151
+ hasRuntimeDefault: false;
1152
+ enumValues: undefined;
1153
+ identity: undefined;
1154
+ generated: undefined;
1155
+ }>;
1156
+ from: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1157
+ dataType: "custom";
1158
+ data: `0x${string}`;
1159
+ driverParam: string;
1160
+ }>>, {
1161
+ name: string;
1162
+ tableName: "transactions";
1163
+ dataType: "custom";
1164
+ data: `0x${string}`;
1165
+ driverParam: string;
1166
+ notNull: true;
1167
+ hasDefault: false;
1168
+ isPrimaryKey: false;
1169
+ isAutoincrement: false;
1170
+ hasRuntimeDefault: false;
1171
+ enumValues: undefined;
1172
+ identity: undefined;
1173
+ generated: undefined;
1174
+ }>;
1175
+ to: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1176
+ dataType: "custom";
1177
+ data: `0x${string}`;
1178
+ driverParam: string;
1179
+ }>, {
1180
+ name: string;
1181
+ tableName: "transactions";
1182
+ dataType: "custom";
1183
+ data: `0x${string}`;
1184
+ driverParam: string;
1185
+ notNull: false;
1186
+ hasDefault: false;
1187
+ isPrimaryKey: false;
1188
+ isAutoincrement: false;
1189
+ hasRuntimeDefault: false;
1190
+ enumValues: undefined;
1191
+ identity: undefined;
1192
+ generated: undefined;
1193
+ }>;
1194
+ input: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1195
+ dataType: "custom";
1196
+ data: `0x${string}`;
1197
+ driverParam: Buffer<ArrayBufferLike>;
1198
+ }>>, {
1199
+ name: string;
1200
+ tableName: "transactions";
1201
+ dataType: "custom";
1202
+ data: `0x${string}`;
1203
+ driverParam: Buffer<ArrayBufferLike>;
1204
+ notNull: true;
1205
+ hasDefault: false;
1206
+ isPrimaryKey: false;
1207
+ isAutoincrement: false;
1208
+ hasRuntimeDefault: false;
1209
+ enumValues: undefined;
1210
+ identity: undefined;
1211
+ generated: undefined;
1212
+ }>;
1213
+ value: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1214
+ dataType: "custom";
1215
+ data: bigint;
1216
+ driverParam: string;
1217
+ }>>, {
1218
+ name: string;
1219
+ tableName: "transactions";
1220
+ dataType: "custom";
1221
+ data: bigint;
1222
+ driverParam: string;
1223
+ notNull: true;
1224
+ hasDefault: false;
1225
+ isPrimaryKey: false;
1226
+ isAutoincrement: false;
1227
+ hasRuntimeDefault: false;
1228
+ enumValues: undefined;
1229
+ identity: undefined;
1230
+ generated: undefined;
1231
+ }>;
1232
+ nonce: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgIntegerBuilder>, {
1233
+ name: string;
1234
+ tableName: "transactions";
1235
+ dataType: "number int32";
1236
+ data: number;
1237
+ driverParam: string | number;
1238
+ notNull: true;
1239
+ hasDefault: false;
1240
+ isPrimaryKey: false;
1241
+ isAutoincrement: false;
1242
+ hasRuntimeDefault: false;
1243
+ enumValues: undefined;
1244
+ identity: undefined;
1245
+ generated: undefined;
1246
+ }>;
1247
+ r: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1248
+ dataType: "custom";
1249
+ data: `0x${string}`;
1250
+ driverParam: Buffer<ArrayBufferLike>;
1251
+ }>>, {
1252
+ name: string;
1253
+ tableName: "transactions";
1254
+ dataType: "custom";
1255
+ data: `0x${string}`;
1256
+ driverParam: Buffer<ArrayBufferLike>;
1257
+ notNull: true;
1258
+ hasDefault: false;
1259
+ isPrimaryKey: false;
1260
+ isAutoincrement: false;
1261
+ hasRuntimeDefault: false;
1262
+ enumValues: undefined;
1263
+ identity: undefined;
1264
+ generated: undefined;
1265
+ }>;
1266
+ s: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1267
+ dataType: "custom";
1268
+ data: `0x${string}`;
1269
+ driverParam: Buffer<ArrayBufferLike>;
1270
+ }>>, {
1271
+ name: string;
1272
+ tableName: "transactions";
1273
+ dataType: "custom";
1274
+ data: `0x${string}`;
1275
+ driverParam: Buffer<ArrayBufferLike>;
1276
+ notNull: true;
1277
+ hasDefault: false;
1278
+ isPrimaryKey: false;
1279
+ isAutoincrement: false;
1280
+ hasRuntimeDefault: false;
1281
+ enumValues: undefined;
1282
+ identity: undefined;
1283
+ generated: undefined;
1284
+ }>;
1285
+ v: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1286
+ dataType: "custom";
1287
+ data: bigint;
1288
+ driverParam: string;
1289
+ }>>, {
1290
+ name: string;
1291
+ tableName: "transactions";
1292
+ dataType: "custom";
1293
+ data: bigint;
1294
+ driverParam: string;
1295
+ notNull: true;
1296
+ hasDefault: false;
1297
+ isPrimaryKey: false;
1298
+ isAutoincrement: false;
1299
+ hasRuntimeDefault: false;
1300
+ enumValues: undefined;
1301
+ identity: undefined;
1302
+ generated: undefined;
1303
+ }>;
1304
+ type: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgEnumColumnBuilder<["legacy", "eip1559", "eip2930", "eip4844", "eip7702"]>>, {
1305
+ name: string;
1306
+ tableName: "transactions";
1307
+ dataType: "string enum";
1308
+ data: "legacy" | "eip1559" | "eip2930" | "eip4844" | "eip7702";
1309
+ driverParam: string;
1310
+ notNull: true;
1311
+ hasDefault: false;
1312
+ isPrimaryKey: false;
1313
+ isAutoincrement: false;
1314
+ hasRuntimeDefault: false;
1315
+ enumValues: ["legacy", "eip1559", "eip2930", "eip4844", "eip7702"];
1316
+ identity: undefined;
1317
+ generated: undefined;
1318
+ }>;
1319
+ gas: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1320
+ dataType: "custom";
1321
+ data: bigint;
1322
+ driverParam: string;
1323
+ }>>, {
1324
+ name: string;
1325
+ tableName: "transactions";
1326
+ dataType: "custom";
1327
+ data: bigint;
1328
+ driverParam: string;
1329
+ notNull: true;
1330
+ hasDefault: false;
1331
+ isPrimaryKey: false;
1332
+ isAutoincrement: false;
1333
+ hasRuntimeDefault: false;
1334
+ enumValues: undefined;
1335
+ identity: undefined;
1336
+ generated: undefined;
1337
+ }>;
1338
+ gasPrice: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1339
+ dataType: "custom";
1340
+ data: bigint;
1341
+ driverParam: string;
1342
+ }>, {
1343
+ name: string;
1344
+ tableName: "transactions";
1345
+ dataType: "custom";
1346
+ data: bigint;
1347
+ driverParam: string;
1348
+ notNull: false;
1349
+ hasDefault: false;
1350
+ isPrimaryKey: false;
1351
+ isAutoincrement: false;
1352
+ hasRuntimeDefault: false;
1353
+ enumValues: undefined;
1354
+ identity: undefined;
1355
+ generated: undefined;
1356
+ }>;
1357
+ maxFeePerGas: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1358
+ dataType: "custom";
1359
+ data: bigint;
1360
+ driverParam: string;
1361
+ }>, {
1362
+ name: string;
1363
+ tableName: "transactions";
1364
+ dataType: "custom";
1365
+ data: bigint;
1366
+ driverParam: string;
1367
+ notNull: false;
1368
+ hasDefault: false;
1369
+ isPrimaryKey: false;
1370
+ isAutoincrement: false;
1371
+ hasRuntimeDefault: false;
1372
+ enumValues: undefined;
1373
+ identity: undefined;
1374
+ generated: undefined;
1375
+ }>;
1376
+ maxPriorityFeePerGas: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").PgCustomColumnBuilder<{
1377
+ dataType: "custom";
1378
+ data: bigint;
1379
+ driverParam: string;
1380
+ }>, {
1381
+ name: string;
1382
+ tableName: "transactions";
1383
+ dataType: "custom";
1384
+ data: bigint;
1385
+ driverParam: string;
1386
+ notNull: false;
1387
+ hasDefault: false;
1388
+ isPrimaryKey: false;
1389
+ isAutoincrement: false;
1390
+ hasRuntimeDefault: false;
1391
+ enumValues: undefined;
1392
+ identity: undefined;
1393
+ generated: undefined;
1394
+ }>;
1395
+ accessList: import("drizzle-orm/pg-core").PgBuildColumn<"transactions", import("drizzle-orm/pg-core").Set$Type<import("drizzle-orm/pg-core").PgJsonbBuilder, import("viem").AccessList>, {
1396
+ name: string;
1397
+ tableName: "transactions";
1398
+ dataType: "object json";
1399
+ data: import("viem").AccessList;
1400
+ driverParam: unknown;
1401
+ notNull: false;
1402
+ hasDefault: false;
1403
+ isPrimaryKey: false;
1404
+ isAutoincrement: false;
1405
+ hasRuntimeDefault: false;
1406
+ enumValues: undefined;
1407
+ identity: undefined;
1408
+ generated: undefined;
1409
+ }>;
1410
+ };
1411
+ dialect: "pg";
1412
+ }>;
1413
+ };
1414
+ export type Schema = typeof schema;
1415
+ //# sourceMappingURL=index.d.ts.map