@bze/bzejs
v1.9.1
Published
BeeZee JS library
Readme
bzejs
install
npm install bzejsTable of contents
- bzejs
- Usage
- Wallets and Signers
- Advanced Usage
- Developing
- Codegen
- Publishing
- Related
- Credits
Usage
RPC Clients
import { beezee } from 'bzejs';
const { createRPCQueryClient } = beezee.ClientFactory;
const client = await createRPCQueryClient({ rpcEndpoint: RPC_ENDPOINT });
// now you can query the cosmos modules
const balance = await client.cosmos.bank.v1beta1
.allBalances({ address: 'beezee1addresshere' });
// you can also query the beezee modules
const balances = await client.beezee.exchange.v1beta1
.exchangeBalances()Composing Messages
Import the beezee object from bzejs.
import { beezee } from 'bzejs';
const {
createSpotLimitOrder,
createSpotMarketOrder,
deposit
} = beezee.exchange.v1beta1.MessageComposer.withTypeUrl;CosmWasm Messages
import { cosmwasm } from "bzejs";
const {
clearAdmin,
executeContract,
instantiateContract,
migrateContract,
storeCode,
updateAdmin
} = cosmwasm.wasm.v1.MessageComposer.withTypeUrl;IBC Messages
import { ibc } from 'bzejs';
const {
transfer
} = ibc.applications.transfer.v1.MessageComposer.withTypeUrlCosmos Messages
import { cosmos } from 'bzejs';
const {
fundCommunityPool,
setWithdrawAddress,
withdrawDelegatorReward,
withdrawValidatorCommission
} = cosmos.distribution.v1beta1.MessageComposer.fromPartial;
const {
multiSend,
send
} = cosmos.bank.v1beta1.MessageComposer.fromPartial;
const {
beginRedelegate,
createValidator,
delegate,
editValidator,
undelegate
} = cosmos.staking.v1beta1.MessageComposer.fromPartial;
const {
deposit,
submitProposal,
vote,
voteWeighted
} = cosmos.gov.v1beta1.MessageComposer.fromPartial;Connecting with Wallets and Signing Messages
⚡️ For web interfaces, we recommend using interchain-kit. Continue below to see how to manually construct signers and clients.
Here are the docs on creating signers in interchain-kit that can be used with Keplr and other wallets.
Initializing the Stargate Client
Use getSigningBeeZeeClient to get your SigningStargateClient, with the proto/amino messages full-loaded. No need to manually add amino types, just require and initialize the client:
import { getSigningBeeZeeClient } from 'bzejs';
const stargateClient = await getSigningBeeZeeClient({
rpcEndpoint,
signer // OfflineSigner
});Creating Signers
To broadcast messages, you can create signers with a variety of options:
- interchain-kit (recommended)
- keplr
- cosmjs
Amino Signer
Likely you'll want to use the Amino, so unless you need proto, you should use this one:
import { getOfflineSignerAmino as getOfflineSigner } from 'cosmjs-utils';Proto Signer
import { getOfflineSignerProto as getOfflineSigner } from 'cosmjs-utils';WARNING: NOT RECOMMENDED TO USE PLAIN-TEXT MNEMONICS. Please take care of your security and use best practices such as AES encryption and/or methods from 12factor applications.
import { chains } from 'chain-registry';
const mnemonic =
'unfold client turtle either pilot stock floor glow toward bullet car science';
const chain = chains.find(({ chain_name }) => chain_name === 'beezee');
const signer = await getOfflineSigner({
mnemonic,
chain
});Broadcasting Messages
Now that you have your stargateClient, you can broadcast messages:
const { send } = cosmos.bank.v1beta1.MessageComposer.withTypeUrl;
const msg = send({
amount: [
{
denom: 'coin',
amount: '1000'
}
],
toAddress: address,
fromAddress: address
});
const fee: StdFee = {
amount: [
{
denom: 'coin',
amount: '864'
}
],
gas: '86364'
};
const response = await stargateClient.signAndBroadcast(address, [msg], fee);Advanced Usage
If you want to manually construct a stargate client
import { OfflineSigner, GeneratedType, Registry } from "@cosmjs/proto-signing";
import { AminoTypes, SigningStargateClient } from "@cosmjs/stargate";
import {
cosmosAminoConverters,
cosmosProtoRegistry,
cosmwasmAminoConverters,
cosmwasmProtoRegistry,
ibcProtoRegistry,
ibcAminoConverters,
beezeeAminoConverters,
beezeeProtoRegistry
} from 'bzejs';
const signer: OfflineSigner = /* create your signer (see above) */
const rpcEndpint = 'https://rpc.cosmos.directory/beezee'; // or another URL
const protoRegistry: ReadonlyArray<[string, GeneratedType]> = [
...cosmosProtoRegistry,
...cosmwasmProtoRegistry,
...ibcProtoRegistry,
...beezeeProtoRegistry
];
const aminoConverters = {
...cosmosAminoConverters,
...cosmwasmAminoConverters,
...ibcAminoConverters,
...beezeeAminoConverters
};
const registry = new Registry(protoRegistry);
const aminoTypes = new AminoTypes(aminoConverters);
const stargateClient = await SigningStargateClient.connectWithSigner(rpcEndpoint, signer, {
registry,
aminoTypes
});Developing
When first cloning the repo:
yarn
yarn buildCodegen
Look inside of scripts/codegen.ts and configure the settings for bundling your SDK and contracts into bzejs:
yarn codegenPublishing
To publish, use lerna:
lerna publishYou can publish patch, minor, or major versions:
lerna publish minorIf you absolutely need to publish manually using npm, ensure to do it this way, and publish from the dist/ directory for proper tree-shaking module paths:
cd ./packages/<your-telescope-module>
yarn build
cd dist
npm publishInterchain JavaScript Stack
A unified toolkit for building applications and smart contracts in the Interchain ecosystem ⚛️
| Category | Tools | Description | |----------------------|------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------| | Chain Information | Chain Registry, Utils, Client | Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application. | | Wallet Connectors| Interchain Kitbeta, Cosmos Kit | Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface. | | Signing Clients | InterchainJSbeta, CosmJS | A single, universal signing interface for any network | | SDK Clients | Telescope | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. | | Starter Kits | Create Interchain Appbeta, Create Cosmos App | Set up a modern Interchain app by running one command. | | UI Kits | Interchain UI | The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit. | | Testing Frameworks | Starship | Unified Testing and Development for the Interchain. | | TypeScript Smart Contracts | Create Hyperweb App | Build and deploy full-stack blockchain applications with TypeScript | | CosmWasm Contracts | CosmWasm TS Codegen | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |
Credits
🛠 Built by Hyperweb (formerly Cosmology) — if you like our tools, please checkout and contribute to our github ⚛️
Disclaimer
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
