1.12.1 • Published 8 months ago

crossbell v1.12.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 months ago

crossbell.js

A JavaScript SDK to interact with the Crossbell. It works for both browser and Node.js.

npm version npm downloads

Installation

npm install crossbell

Usage

Requirements

Node.js >= 18.0.0 or Node.js >= 16.14.0 with fetch polyfill

Contract

Connect with Metamask

import { createContract } from 'crossbell'

// Create a new contract instance with metamask provider
const provider = window.ethereum
const contract = new createContract(provider)

// Example API: Create a new character for an address
try {
  const result = await contract.character.create({
    owner: '0x1234567890123456789012345678901234567890',
    handle: 'Jason',
    metadataOrUri: 'ipfs://xxxx/metadata.json',
  })
  console.log(result.data) // '42' (characterId)
  console.log(result.transactionHash) // '0xabcdef...'
} catch (e) {
  console.error(e.message) // e.g. "execution reverted: Web3Entry: HandleExists"
}

Connect with Private Key

You can also connect with a private key directly.

import { createContract } from 'crossbell'

const privateKey =
  '0xabcdef0123456789012345678901234567890123456789012345678901234'
const contract = new createContract(provider)

Connect with Read-Only

You can also connect with a read-only provider. Note that in this case, you can't do write operations like createCharacter.

import { createContract } from 'crossbell'

const contract = new createContract(provider) // just pass nothing to use a read-only provider

For more contract api, see docs.

Indexer

You can fetch data from the crossbell indexer.

import { createIndexer } from 'crossbell'

const indexer = createIndexer()

// get a list of characters owned by a specific address
const res = await indexer.character.getMany(
  '0x1234567890123456789012345678901234567890',
)
console.log(res.list)

For more indexer api, see docs.

1.12.1

8 months ago

1.12.0

12 months ago

1.11.9

1 year ago

1.11.7

1 year ago

1.11.6

1 year ago

1.11.5

1 year ago

1.11.3

1 year ago

1.11.2

1 year ago

1.11.1

2 years ago

1.11.0

2 years ago

1.11.0-beta.0

2 years ago

1.8.2

2 years ago

1.6.4

2 years ago

1.5.5

2 years ago

1.9.0

2 years ago

1.8.1

2 years ago

1.7.2

2 years ago

1.6.3

2 years ago

1.8.0

2 years ago

1.7.1

2 years ago

1.6.2

2 years ago

1.5.3

2 years ago

1.7.0

2 years ago

1.6.1

2 years ago

1.5.1

2 years ago

1.4.2

2 years ago

1.5.0

2 years ago

1.5.10

2 years ago

1.5.9

2 years ago

1.5.8

2 years ago

1.5.7

2 years ago

1.10.1

2 years ago

1.10.0

2 years ago

1.4.1

2 years ago

1.4.0

2 years ago

1.2.0

2 years ago

1.3.0

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

1.0.0-rc.0

2 years ago

0.0.0

10 years ago