External APIs and IPFS
Squid processor is a usual node.js process, so one can fetch data from external APIs or IPFS gateways within the processor.run()
method. Normally, one uses API calls in combination with API keys set via secrets when deployed to the Aquarium cloud service.
Example
For example, one can enrich the indexed transaction with historical price data using the Coingecko API.
// ...
processor.run(new TypeormDatabase(), async (ctx) => {
const burns: Burn[] = []
for (let c of ctx.blocks) {
for (let i of c.items) {
assert(i.kind == 'transaction')
burns.push(new Burn({
id: formatID(c.header.height, i.transaction.hash),
block: c.header.height,
address: i.transaction.from,
value: i.transaction.value,
txHash: i.transaction.hash,
price: await getETHPriceByDate(c.header.timestamp)
}))
}
}
})
async function getETHPriceByDate(timestamp: number): Promise<bigint> {
const formatted = moment(new Date(timestamp).toISOString()).format("DD-MM-yyyy")
const res = await
axios.get(
`https://api.coingecko.com/api/v3/coins/ethereum/history?date=${formatted}&localization=false`
)
return res.data.market_data.current_price.usd
}
IPFS fetching
For reliable indexing of content stored on IPFS (e.g. NFT metadata) we recommend fetching from dedicated IPFS gateways, e.g. provided by Cloudflare.
For a more elaborate example of with IPFS gateway and external API calls, inspect the BAYC NFT indexing squid.
Example
// FIXME: replace with a dedicated gateway
export const BASE_URL = 'https://cloudflare-ipfs.com/ipfs/'
export const api = Axios.create({
baseURL: BASE_URL,
headers: {
'Content-Type': 'application/json',
},
withCredentials: false,
timeout: 5000,
httpsAgent: new https.Agent({ keepAlive: true }),
})
export const fetchMetadata = async (
ctx: BlockHandlerContext<Store>,
cid: string
): Promise<any | null> => {
try {
const { status, data } = await api.get(`${BASE_URL}/${cid}`)
ctx.log.info(`[IPFS] ${status} CID: ${cid}`)
if (status < 400) {
return data
}
} catch (e) {
ctx.log.warn(
`[IPFS] ERROR CID: ${cid} TRY ${(e as Error).message}`
)
}
return null
}
processor.run(new TypeormDatabase(), async (ctx) => {
for (let c of ctx.blocks) {
for (let i of c.items) {
// track and decode NFT events to get CID
// use fetchMetadata() to fetch metadata
}
}
})