Discussions
Alchemy Rate Limits
I am on growth tier and my Alchemy dApp is currently being rate limited. What are rate limits and what is my limit?
Posted by Aniket Gupta 13 days ago
What are the limits for eth_getLogs requests?
I am making large eth_getLogs requests and want to know the limitations.
Posted by Elan about 1 month ago
How do I get ENS domain transfers using Alchemy Transfers API (alchemy_getAssetTransfers)?
I'm using the Transfers API (Tx History) -- Internal Eth Transfers, but i cant get ENS txns in its response.
Here is the json rpc request I'm making:
```
{
"jsonrpc": "2.0",
"id": 0,
"method": "alchemy_getAssetTransfers",
"params": [
{
"fromAddress": "0xDce63CBee5E3f5d30729b777a11385B58b711a3c",
"excludeZeroValue": true,
"withMetadata": true,
"category": [
"internal",
"erc20",
"erc721",
"erc1155",
"specialnft"
]
}
]
}
```
I expect the ENS domain transfer that shows up in this transaction hash (`0xc97431eec5791405982b3d1873ed38062e5ea2542997aad9468efb28075bc88f`) to appear in the api call response, but it isn't there.
How can I debug this?
Posted by Aniket Gupta 12 days ago
EVM_Snapshot error
I am getting this error when I test my smart contract on rinkeby
ProviderError: Unsupported method: evm_snapshot. See available methods at https://docs.alchemy.com/alchemy/documentation/apis
I am using this RPC url
RINKEBY_RPC_URL_OLD=https://eth-rinkeby.alchemyapi.io/v2/BG92v2ejEUplKTgsKpmUiW8miuV6aGIO
Is it because of deprication of rinkeby testnet? Should I test on Goerli?
I am also using Chainlink VRF/Keepers in my code. Chainlink keepers do not support Goerli. What are the other options for me?
Posted by Meenu 9 days ago
Does Alchemy's Solana endpoint support logsSubscribe ?
I was trying to query logsSubscribe using solana cli using the below command
`solana logs <address> --ws wss://solana-devnet.g.alchemy.com/v2/<My-Alchemy-API-Key>`
but it returns the below error
```
Streaming transaction logs mentioning 9SNdwhMrxADTVkakYPUe6pDD9rXdbQn4eFUGwoSrhuns. Confirmed commitment
Error: unexpected message format: {"error": Object({"code": Number(-32601), "message": String("Unsupported subscription method: logsSubscribe")}), "id": Number(1), "jsonrpc": String("2.0")}
```
Posted by Aniket Gupta 11 days ago
Address blacklisted
Hello.
I can't seem to execute smart contract method on a smart contract. Alchemy endpoint returns this:
`ProviderError: Address <xxx> is blacklisted.`
Why is that? Why would an address on ethereum be "blacklisted"?
Posted by Egor Egorov 5 days ago
How do I enable archive access on Alchemy?
I want to use the free archive data feature on Alchemy Supernode
Posted by Elan about 1 month ago
I'm new to blockchain development, how should I get started?
I want to hear about any helpful resources for getting started with Web3 development
Posted by Elan about 1 month ago
Does Alchemy have a token?
Does Alchemy have a token?
Posted by Elan about 1 month ago
Is getNftsForOwner not a function?
I'm getting an error with the Alchemy SDK when running the below code
```
const nftsForOwner = await alchemy.getNftsForOwner(account, {
contractAddresses: [
"0xe361f10965542ee57D39043C9c3972B77841F581",
],
withMetadata: true,
});
```
The error I'm getting is `TypeError: alchemy.getNftsForOwner is not a function`
This is being run as an API request on next.js to keep the API Key environment variable hidden.
Posted by Aniket Gupta 11 days ago