Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/osmosis-labs/osmojs
OsmosJS makes it easy to compose and broadcast Osmosis and Cosmos messages
https://github.com/osmosis-labs/osmojs
cosmos osmosis
Last synced: 5 days ago
JSON representation
OsmosJS makes it easy to compose and broadcast Osmosis and Cosmos messages
- Host: GitHub
- URL: https://github.com/osmosis-labs/osmojs
- Owner: osmosis-labs
- License: apache-2.0
- Created: 2022-07-10T03:13:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-24T11:43:25.000Z (6 months ago)
- Last Synced: 2024-10-30T08:22:11.100Z (about 2 months ago)
- Topics: cosmos, osmosis
- Language: TypeScript
- Homepage: https://cosmology.zone/products/osmojs
- Size: 18.3 MB
- Stars: 63
- Watchers: 8
- Forks: 32
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE-Apache
Awesome Lists containing this project
README
# OsmoJS
[OsmosJS](https://github.com/osmosis-labs/osmojs) makes it easy to compose and broadcast Osmosis and Cosmos messages, with all of the proto and amino encoding handled for you.
---
## install```sh
npm install osmojs
```## Table of contents
- [OsmoJS](#osmojs)
- [Install](#install)
- [Table of contents](#table-of-contents)
- [Usage](#usage)
- [RPC Clients](#rpc-clients)
- [Composing Messages](#composing-messages)
- Osmosis
- [Lockup](#lockup-messages)
- [Superfluid](#superfluid-messages)
- [Incentives](#incentives-messages)
- [Gamm](#gamm-messages)
- Cosmos, CosmWasm, and IBC
- [CosmWasm](#cosmwasm-messages)
- [IBC](#ibc-messages)
- [Cosmos](#cosmos-messages)
- [Calculating Fees](#calculating-fees)
- [Wallets and Signers](#connecting-with-wallets-and-signing-messages)
- [Stargate Client](#initializing-the-stargate-client)
- [Creating Signers](#creating-signers)
- [Broadcasting Messages](#broadcasting-messages)
- [Advanced Usage](#advanced-usage)
- [Developing](#developing)
- [Related](#related)
- [Credits](#credits)
- [Disclaimer](#disclaimer)## Usage
### RPC Clients
```js
import { osmosis } from 'osmojs';const { createRPCQueryClient } = osmosis.ClientFactory;
const client = await createRPCQueryClient({ rpcEndpoint: RPC_ENDPOINT });// now you can query the cosmos modules
const balance = await client.cosmos.bank.v1beta1
.allBalances({ address: 'osmo1addresshere' });// you can also query the osmosis pools
const response = await client.osmosis.gamm.v1beta1.pools();
```** Every RPC endpoint is available! Simply use vscode or another tool to visually explore through autocomplete all of the RPC endpoints available on the `RPCQueryClient`!
### Composing Messages
Import the `osmosis` object from `osmojs`.
In this case, we're show the messages available from the `osmosis.gamm.v1beta1` module:
```js
import { osmosis } from 'osmojs';const {
joinPool,
exitPool,
exitSwapExternAmountOut,
exitSwapShareAmountIn,
joinSwapExternAmountIn,
joinSwapShareAmountOut,
swapExactAmountIn,
swapExactAmountOut
} = osmosis.gamm.v1beta1.MessageComposer.withTypeUrl;
```To see a complete list of messages, see all the messages below.
Now you can construct messages. If you use vscode or another typescript-enabled IDE, you should also be able to use `ctrl+space` to see auto-completion of the fields required for the message.
```js
import { coin } from '@cosmjs/amino';const msg = swapExactAmountIn({
sender,
routes,
tokenIn: coin(amount, denom),
tokenOutMinAmount
});
```To calculate the routes and tokenOutMinAmount, you can use [@osmonauts/math](https://github.com/osmosis-labs/osmojs/tree/main/packages/math):
```js
import { getRoutesForTrade, calcAmountWithSlippage } from "@osmonauts/math";const routes = getRoutesForTrade({
trade: {
sell: {
denom: tokenIn.denom,
amount: tokenInAmount,
},
buy: {
denom: tokenOut.denom,
amount: tokenOutAmount,
},
},
pairs,
});const tokenOutMinAmount = calcAmountWithSlippage(tokenOutAmount, slippage);
```For more details, check out the [swap-tokens](https://github.com/cosmology-tech/create-cosmos-app/tree/main#swap-tokens) example.
### Lockup Messages
```js
import { osmosis } from 'osmojs';
const {
beginUnlocking,
beginUnlockingAll,
lockTokens
} = osmosis.lockup.MessageComposer.withTypeUrl;
```### Superfluid Messages
```js
import { osmosis } from 'osmojs';
const {
lockAndSuperfluidDelegate,
superfluidDelegate,
superfluidUnbondLock,
superfluidUndelegate
} = osmosis.superfluid.MessageComposer.withTypeUrl;
```### Incentives Messages
```js
import { osmosis } from 'osmojs';
const {
addToGauge,
createGauge
} = osmosis.incentives.MessageComposer.withTypeUrl;
```### Gamm Messages
```js
import { osmosis } from 'osmojs';
const {
joinPool,
exitPool,
exitSwapExternAmountOut,
exitSwapShareAmountIn,
joinSwapExternAmountIn,
joinSwapShareAmountOut,
swapExactAmountIn,
swapExactAmountOut
} = osmosis.gamm.v1beta1.MessageComposer.withTypeUrl;
```### CosmWasm Messages
```js
import { cosmwasm } from "osmojs";const {
clearAdmin,
executeContract,
instantiateContract,
migrateContract,
storeCode,
updateAdmin
} = cosmwasm.wasm.v1.MessageComposer.withTypeUrl;
```### IBC Messages
```js
import { ibc } from 'osmojs';const {
transfer
} = ibc.applications.transfer.v1.MessageComposer.withTypeUrl
```### Cosmos Messages
```js
import { cosmos } from 'osmojs';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;
```### Calculating Fees
Make sure to create a `fee` object in addition to your message.
For most messages, you can use the predefined fee objects.
```ts
import { FEES } from '@osmonauts/utils';const fee = FEES.osmosis.swapExactAmountIn();
```You can also specify `low`, `medium`, or `high` for fees:
```ts
const fee = FEES.osmosis.swapExactAmountIn('low');
const fee = FEES.osmosis.swapExactAmountIn('medium');
const fee = FEES.osmosis.swapExactAmountIn('high');
```Or you can construct manually if you wish:
```js
import { coins } from '@cosmjs/amino';const fee = {
amount: coins(0, 'uosmo'),
gas: '250000'
}
```if you are broadcasting multiple messages in a batch, you should `simulate` your tx and estimate the fee
```js
import { Dec, IntPretty } from '@keplr-wallet/unit';const gasEstimated = await stargateClient.simulate(address, msgs, memo);
const fee = {
amount: coins(0, 'uosmo'),
gas: new IntPretty(new Dec(gasEstimated).mul(new Dec(1.3)))
.maxDecimals(0)
.locale(false)
.toString()
};
```## Connecting with Wallets and Signing Messages
β‘οΈ For web interfaces, we recommend using [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit). Continue below to see how to manually construct signers and clients.
Here are the docs on [creating signers](https://github.com/cosmology-tech/cosmos-kit/tree/main/packages/react#signing-clients) in cosmos-kit that can be used with Keplr and other wallets.
### Initializing the Stargate Client
Use `getSigningOsmosisClient` to get your `SigningStargateClient`, with the Osmosis proto/amino messages full-loaded. No need to manually add amino types, just require and initialize the client:
```js
import { getSigningOsmosisClient } from 'osmojs';const client = await getSigningOsmosisClient({
rpcEndpoint,
signer // OfflineSigner
});
```### Creating Signers
To broadcast messages, you can create signers with a variety of options:
* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit/tree/main/packages/react#signing-clients) (recommended)
* [keplr](https://docs.keplr.app/api/cosmjs.html)
* [cosmjs](https://gist.github.com/webmaster128/8444d42a7eceeda2544c8a59fbd7e1d9)
### Amino SignerLikely you'll want to use the Amino, so unless you need proto, you should use this one:
```js
import { getOfflineSignerAmino as getOfflineSigner } from 'cosmjs-utils';
```
### Proto Signer```js
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.
```js
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 === 'osmosis');
const signer = await getOfflineSigner({
mnemonic,
chain
});
```
### Broadcasting messagesNow that you have your `client`, you can broadcast messages:
```js
const { send } = cosmos.bank.v1beta1.MessageComposer.withTypeUrl;const msg = send({
amount: [
{
denom: 'uosmo',
amount: '1000'
}
],
toAddress: address,
fromAddress: address
});const fee: StdFee = {
amount: [
{
denom: 'uosmo',
amount: '864'
}
],
gas: '86364'
};
const response = await stargateClient.signAndBroadcast(address, [msg], fee);
```## Advanced Usage
If you want to manually construct a stargate client
```js
import { OfflineSigner, GeneratedType, Registry } from "@cosmjs/proto-signing";
import { AminoTypes, SigningStargateClient } from "@cosmjs/stargate";import {
cosmosAminoConverters,
cosmosProtoRegistry,
cosmwasmAminoConverters,
cosmwasmProtoRegistry,
ibcProtoRegistry,
ibcAminoConverters,
osmosisAminoConverters,
osmosisProtoRegistry
} from 'osmojs';const signer: OfflineSigner = /* create your signer (see above) */
const rpcEndpoint = 'https://rpc.cosmos.directory/osmosis'; // or another URLconst protoRegistry: ReadonlyArray<[string, GeneratedType]> = [
...cosmosProtoRegistry,
...cosmwasmProtoRegistry,
...ibcProtoRegistry,
...osmosisProtoRegistry
];const aminoConverters = {
...cosmosAminoConverters,
...cosmwasmAminoConverters,
...ibcAminoConverters,
...osmosisAminoConverters
};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 build
```And then get all submodules if necessary:
```
git submodule update --init
```### Codegen
Contract schemas live in `./contracts`, and protos in `./proto`. Look inside of `scripts/codegen.js` and configure the settings for bundling your SDK and contracts into `osmojs`:
```
yarn codegen
```Note: please get all sub-modules before generating code, since some proto files within default config are included in sub-modules.
### Publishing
Build the types and then publish:
```
yarn build:ts
yarn publish
```## Related
Checkout these related projects:
* [@cosmology/telescope](https://github.com/cosmology-tech/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
* [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
* [chain-registry](https://github.com/cosmology-tech/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
* [cosmos-kit](https://github.com/cosmology-tech/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
* [create-cosmos-app](https://github.com/cosmology-tech/create-cosmos-app) Set up a modern Cosmos app by running one command.
* [interchain-ui](https://github.com/cosmology-tech/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
* [starship](https://github.com/cosmology-tech/starship) Unified Testing and Development for the Interchain.## Credits
π Built by Cosmology βΒ if you like our tools, please consider delegating to [our validator βοΈ](https://cosmology.zone/validator)
## 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.