@@ -9,14 +9,17 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
99 {
1010 name : "Get events" ,
1111 path : "/v1/events" ,
12+ deprecated : false ,
1213 } ,
1314 {
1415 name : "Get contract events" ,
1516 path : "/v1/events/{contractAddress}" ,
17+ deprecated : false ,
1618 } ,
1719 {
1820 name : "Get contract events with specific signature" ,
1921 path : "/v1/events/{contractAddress}/{signature}" ,
22+ deprecated : false ,
2023 } ,
2124 ] ,
2225 } ,
@@ -27,14 +30,17 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
2730 {
2831 name : "Get transactions" ,
2932 path : "/v1/transactions" ,
33+ deprecated : false ,
3034 } ,
3135 {
3236 name : "Get contract transactions" ,
3337 path : "/v1/transactions/{contractAddress}" ,
38+ deprecated : false ,
3439 } ,
3540 {
3641 name : "Get contract transactions with specific signature" ,
3742 path : "/v1/transactions/{contractAddress}/{signature}" ,
43+ deprecated : false ,
3844 } ,
3945 ] ,
4046 } ,
@@ -45,6 +51,7 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
4551 {
4652 name : "Get blocks" ,
4753 path : "/v1/blocks" ,
54+ deprecated : false ,
4855 } ,
4956 ] ,
5057 } ,
@@ -55,38 +62,47 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
5562 {
5663 name : "Get token transfers by transaction" ,
5764 path : "/v1/tokens/transfers/transaction/{transaction_hash}" ,
65+ deprecated : false ,
5866 } ,
5967 {
6068 name : "Get token transfers by contract" ,
6169 path : "/v1/tokens/transfers/{contract_address}" ,
70+ deprecated : false ,
6271 } ,
6372 {
6473 name : "Get token transfers" ,
6574 path : "/v1/tokens/transfers" ,
75+ deprecated : false ,
6676 } ,
6777 {
6878 name : "Get ERC-20 balances by address" ,
6979 path : "/v1/tokens/erc20/{ownerAddress}" ,
80+ deprecated : false ,
7081 } ,
7182 {
7283 name : "Get ERC-721 balances by address" ,
7384 path : "/v1/tokens/erc721/{ownerAddress}" ,
85+ deprecated : true ,
7486 } ,
7587 {
7688 name : "Get ERC-1155 balances by address" ,
7789 path : "/v1/tokens/erc1155/{ownerAddress}" ,
90+ deprecated : true ,
7891 } ,
7992 {
8093 name : "Get supported tokens for price data" ,
8194 path : "/v1/tokens/price/supported" ,
95+ deprecated : false ,
8296 } ,
8397 {
8498 name : "Get token price" ,
8599 path : "/v1/tokens/price" ,
100+ deprecated : false ,
86101 } ,
87102 {
88103 name : "Token lookup" ,
89104 path : "/v1/tokens/lookup" ,
105+ deprecated : false ,
90106 } ,
91107 ] ,
92108 } ,
@@ -97,54 +113,67 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
97113 {
98114 name : "Get NFT balances by address" ,
99115 path : "/v1/nfts/balance/{ownerAddress}" ,
116+ deprecated : false ,
100117 } ,
101118 {
102119 name : "Get collection" ,
103120 path : "/v1/nfts/collections/{contract_address}" ,
121+ deprecated : false ,
104122 } ,
105123 {
106124 name : "Get NFTs by owner" ,
107125 path : "/v1/nfts" ,
126+ deprecated : false ,
108127 } ,
109128 {
110129 name : "Get NFT owners by contract" ,
111130 path : "/v1/nfts/owners/{contract_address}" ,
131+ deprecated : false ,
112132 } ,
113133 {
114134 name : "Get NFT owners by token" ,
115135 path : "/v1/nfts/owners/{contract_address}/{token_id}" ,
136+ deprecated : false ,
116137 } ,
117138 {
118139 name : "Get NFT transfers" ,
119140 path : "/v1/nfts/transfers" ,
141+ deprecated : false ,
120142 } ,
121143 {
122144 name : "Get NFT transfers by transaction" ,
123145 path : "/v1/nfts/transfers/transaction/{transaction_hash}" ,
146+ deprecated : false ,
124147 } ,
125148 {
126149 name : "Get NFT transfers by contract" ,
127150 path : "/v1/nfts/transfers/{contract_address}" ,
151+ deprecated : false ,
128152 } ,
129153 {
130154 name : "Get NFTs by contract" ,
131155 path : "/v1/nfts/{contract_address}" ,
156+ deprecated : false ,
132157 } ,
133158 {
134159 name : "Get NFT transfers by token" ,
135160 path : "/v1/nfts/transfers/{contract_address}/{token_id}" ,
161+ deprecated : false ,
136162 } ,
137163 {
138164 name : "Get NFT by token ID" ,
139165 path : "/v1/nfts/{contract_address}/{token_id}" ,
166+ deprecated : false ,
140167 } ,
141168 {
142169 name : "Force refresh collection metadata" ,
143170 path : "/v1/nfts/metadata/refresh/{contract_address}" ,
171+ deprecated : false ,
144172 } ,
145173 {
146174 name : "Force refresh token metadata" ,
147175 path : "/v1/nfts/metadata/refresh/{contract_address}/{token_id}" ,
176+ deprecated : false ,
148177 } ,
149178 ] ,
150179 } ,
@@ -155,6 +184,7 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
155184 {
156185 name : "Get wallet transactions" ,
157186 path : "/v1/wallets/{wallet_address}/transactions" ,
187+ deprecated : false ,
158188 } ,
159189 ] ,
160190 } ,
@@ -165,10 +195,12 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
165195 {
166196 name : "Get contract ABI" ,
167197 path : "/v1/contracts/abi/{contractAddress}" ,
198+ deprecated : false ,
168199 } ,
169200 {
170201 name : "Get contract metadata" ,
171202 path : "/v1/contracts/metadata/{contractAddress}" ,
203+ deprecated : false ,
172204 } ,
173205 ] ,
174206 } ,
@@ -179,6 +211,7 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
179211 {
180212 name : "Decode logs and transactions" ,
181213 path : "/v1/decode/{contractAddress}" ,
214+ deprecated : false ,
182215 } ,
183216 ] ,
184217 } ,
@@ -189,6 +222,7 @@ export const insightBlueprints: MinimalBlueprintSpec[] = [
189222 {
190223 name : "Resolve" ,
191224 path : "/v1/resolve/{input}" ,
225+ deprecated : false ,
192226 } ,
193227 ] ,
194228 } ,
0 commit comments