NEO N3 dAPI - NEP17
npm install neo3-dapiIn a browser - cdn 
`````
window.neo3Dapi
Install via npm 
`
npm i --save neo3-dapi
or
yarn add neo3-dapi
`
`
var neo3Dapi = require('neo3-dapi');
import neo3Dapi from 'neo3-dapi';
`
The following is an example of requesting the balances for a specific address.
`
import neo3Dapi from 'neo3-dapi';
neo3Dapi.getBalance([{
address: 'NfuwpaQ1A2xaeVbxWe8FRtaRgaMa8yF3YM',
contracts: ['NEO'],
}])
.then(balances => console.log(balances));
``