Alchemy Provider

EthereumPolygonAlchemy

TIP

You can use Alchemy API for free (no rate limit disclosed).

You must register an Alchemy account and initialize with alchemyEthereumAPIKey and alchemyPolygonAPIKey to use this provider.

You can initialize with ipfsGateway to potentially get a faster response or higher stability.

API

const assets: Assets = await unidata.assets.get(options: {
    source: 'Ethereum NFT';
    identity: string;
    providers?: ['Alchemy'];
    limit?: number;
    cursor?: string[];
});

Live Demo

42 / 42
Code
const assets: Assets = await unidata.assets.get({
    source: 'Ethereum NFT',
    identity: '0xC8b960D09C0078c18Dcbe7eB9AB9d816BcCa8944',
    providers: ["Alchemy"],
});
View
Networks:
Providers:
Data
{
    "total": 0,
    "list": []
}