@blockscout/autoscout-types 0.0.8 → 0.0.9

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.
@@ -62,9 +62,22 @@ export interface DeployConfig {
62
62
  color_theme: ColorTheme;
63
63
  identicon: Identicon;
64
64
  chain_spec?: string | undefined;
65
+ /** https://github.com/blockscout/frontend/blob/e2081d49104c9626aff9cfbf864699f69db5b8d8/docs/ENVS.md#footer */
66
+ footer?: Footer | undefined;
65
67
  optimism?: OptimismConfig | undefined;
66
68
  arbitrum?: ArbitrumConfig | undefined;
67
69
  }
70
+ export interface Footer {
71
+ columns: FooterColumn[];
72
+ }
73
+ export interface FooterColumn {
74
+ title: string;
75
+ links: FooterLink[];
76
+ }
77
+ export interface FooterLink {
78
+ text: string;
79
+ url: string;
80
+ }
68
81
  /** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
69
82
  export interface OptimismConfig {
70
83
  /** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
@@ -90,7 +103,7 @@ export interface OptimismConfig {
90
103
  /** NEXT_PUBLIC_ROLLUP_L1_BASE_URL */
91
104
  l1_blockscout_url: string;
92
105
  /** NEXT_PUBLIC_ROLLUP_L2_WITHDRAWAL_URL */
93
- l2_withdrawal_url?: string | undefined;
106
+ l2_withdrawal_url: string;
94
107
  /** NEXT_PUBLIC_FAULT_PROOF_ENABLED */
95
108
  l2_fault_proof_enabled?: boolean | undefined;
96
109
  /** NEXT_PUBLIC_HAS_MUD_FRAMEWORK */
package/dist/v1/config.ts CHANGED
@@ -74,11 +74,29 @@ export interface DeployConfig {
74
74
  og_image_url?: string | undefined;
75
75
  color_theme: ColorTheme;
76
76
  identicon: Identicon;
77
- chain_spec?: string | undefined;
77
+ chain_spec?:
78
+ | string
79
+ | undefined;
80
+ /** https://github.com/blockscout/frontend/blob/e2081d49104c9626aff9cfbf864699f69db5b8d8/docs/ENVS.md#footer */
81
+ footer?: Footer | undefined;
78
82
  optimism?: OptimismConfig | undefined;
79
83
  arbitrum?: ArbitrumConfig | undefined;
80
84
  }
81
85
 
86
+ export interface Footer {
87
+ columns: FooterColumn[];
88
+ }
89
+
90
+ export interface FooterColumn {
91
+ title: string;
92
+ links: FooterLink[];
93
+ }
94
+
95
+ export interface FooterLink {
96
+ text: string;
97
+ url: string;
98
+ }
99
+
82
100
  /** https://github.com/blockscout/docs/blob/df6996a0f8e553c2d4b1c3dcda6ef2518a8b39f9/for-developers/information-and-settings/env-variables/backend-envs-chain-specific.md?plain=1#L102-L119 */
83
101
  export interface OptimismConfig {
84
102
  /** changes blockscout env INDEXER_OPTIMISM_L1_RPC */
@@ -124,9 +142,7 @@ export interface OptimismConfig {
124
142
  /** NEXT_PUBLIC_ROLLUP_L1_BASE_URL */
125
143
  l1_blockscout_url: string;
126
144
  /** NEXT_PUBLIC_ROLLUP_L2_WITHDRAWAL_URL */
127
- l2_withdrawal_url?:
128
- | string
129
- | undefined;
145
+ l2_withdrawal_url: string;
130
146
  /** NEXT_PUBLIC_FAULT_PROOF_ENABLED */
131
147
  l2_fault_proof_enabled?:
132
148
  | boolean
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockscout/autoscout-types",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "TypeScript definitions for Autoscout microservice",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",