
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
apollo-link-ethereum
Advanced tools
`apollo-link-ethereum` allows you to use GraphQL to speak directly to a smart contract on the Ethereum blockchain. The package integrates with [Apollo Client](https://www.apollographql.com) as a "link". There are several "resolvers" so that you can reso
apollo-link-ethereum
allows you to use GraphQL to speak directly to a smart contract on the Ethereum blockchain. The package integrates with Apollo Client as a "link". There are several "resolvers" so that you can resolve web3 calls using either web3js 1.0 or Ethers.js. A separate mutations package is available to actually execute transactions.
Package | Description |
---|---|
apollo-link-ethereum | The base package |
apollo-link-ethereum-resolver-ethersjs | Resolve calls using Ethers.js |
apollo-link-ethereum-mutations-ethersjs | Send transactions with Ethers.js |
apollo-link-ethereum-resolver-web3js | Resolve calls using Web3js 1.0 |
To see a simple read-only app see the apollo-link-ethereum-example. Otherwise, for a more complex application have a look at ZeppelinOS Registry.
$ yarn add apollo-link-ethereum
You'll need to either install the Ethers.js package or the Web3.js package in order to make calls to Ethereum. Currently the Ethers.js resolver is more robust.
In your app, you'll need to add the EthereumLink to your Apollo Client:
import { EthersResolver } from 'apollo-link-ethereum-resolver-ethersjs'
import { EthereumLink, AbiMapping } from 'apollo-link-ethereum'
export const abiMapping = new AbiMapping()
abiMapping.addAbi('MKR', mkrAbi) // assuming mkrAbi is an ABI
abiMapping.addAddress('MKR', 1, '0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2')
const ethersProvider = new ethers.getDefaultProvider('homestead')
const ethersResolver = new EthersResolver({
abiMapping,
ethersProvider
})
const ethereumLink = new EthereumLink(ethersResolver)
export const apolloClient = new ApolloClient({
cache: new InMemoryCache(),
link: ethereumLink
})
The object that determines whether queries are Ethereum queries or not. It takes a resolver as an argument. You can use either one of the Web3.js or Ethers.js resolvers.
new EthereumLink(resolverInstance)
Creates a new EthereumLink with the given resolver.The object that stores the contract names, network addresses, and ABIs.
AbiMapping#addAbi(contractName, abi)
Adds an ABI that can be looked up by the contract name.AbiMapping#addAddress(contractName, networkId, address)
Adds a network-specific address for a contract name. This is used to automatically find contract addresses given a contract name.FAQs
`apollo-link-ethereum` allows you to use GraphQL to speak directly to a smart contract on the Ethereum blockchain. The package integrates with [Apollo Client](https://www.apollographql.com) as a "link". There are several "resolvers" so that you can reso
The npm package apollo-link-ethereum receives a total of 13 weekly downloads. As such, apollo-link-ethereum popularity was classified as not popular.
We found that apollo-link-ethereum demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.