@mutopad/connex v0.0.42
Connex
The out of the box Connex implementation for browser.
Installation
Include in <script> tag
Just include the CDN link within a script tag. Connex will then be registered as a global variable.
<!-- install the latest v2 -->
<script src="https://unpkg.com/@mutopad/connex@2" />NPM
It's recommended when your project is a bit large.
npm i @mutopad/conneximport Connex from '@mutopad/connex'Startup
Create a Connex object connects to VeChain mainnet
const connex = new Connex({
node: 'https://mainnet.veblocks.net/', // veblocks public node, use your own if needed
network: 'main' // defaults to mainnet, so it can be omitted here
})Connect to testnet
const connex = new Connex({
node: 'https://testnet.veblocks.net/',
network: 'test'
})Or connect to private network
const connex = new Connex({
node: '<the API url of your node>',
// the genesis block of your private network
network: {
id: '0x...',
...
}
})Create Vendor module only
In some cases, e.g. the classic 'Buy me a coffee' demo, you don't need the ability to access the blockchain. You can opt-out Connex.Thor module, and just create Connex.Vendor module.
const vendor = new Connex.Vendor('main') //'main','test' or genesis ID if it's private networkUsing in Node.js environment
This package, @mutopad/connex is designed only work in the browser, if you are interested in running it in Node.js, try @mutopad/connex-framework.
License
This package is licensed under the GNU Lesser General Public License v3.0, also included in LICENSE file in the repository.
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago