![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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 7 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.