Package Exports
- squarelink
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (squarelink) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Squarelink Web3 SDK
This is the Squarelink Web3 SDK which enables Squarelink enhancements to standard Web3 JSON RPC requests.
Check out the Squarelink Documentation for more information, quick-start guides, etc.
Installation
Node
$ npm install squarelink
CDN
<script src="https://squarelink.com/js/squarelink.min.js"></script>
Usage
First, register your application at dev.squarelink.com to obtain your CLIENT ID
import Web3 from 'web3'
import Squarelink from 'squarelink'
const sqlk = new Squarelink('<CLIENT ID>')
const web3 = new Web3(sqlk.getProvider())
// List Ethereum accounts owned by a Squarelink user
web3.eth.getAccounts().then(console.log)
Configuration
const sqlk = new Squarelink(clientId [, network])
Squarelink
-Object
- Initializes a Squarelink Web3 Provider for you
clientId
-String
- The Client ID provided to you when you register your DApp in the Squarelink Developer Consolenetwork
-String|Object
- Configures the RPC node you're connecting to. Read the docs for more info. Defaults to 'mainnet'.
Examples
// connect to the Ropsten network
new Squarelink('<CLIENT ID>', 'ropsten')
// connect to a custom private network
new Squarelink('<CLIENT ID>', {
url: 'https://localhost:8545',
chainId: 420
})
Documentation
License
MIT