Skip to content

Releases: burnt-labs/xion.js

@burnt-labs/[email protected]

26 Feb 21:13
13139c5
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #78 6de3996 Thanks @BurntVal! - introduce the ability to add a secp256k1 authenticator (via Keplr) and use it as a signer for transactions

@burnt-labs/[email protected]

26 Feb 21:13
13139c5
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #78 6de3996 Thanks @BurntVal! - introduce the ability to add a secp256k1 authenticator (via Keplr) and use it as a signer for transactions

@burnt-labs/[email protected]

26 Feb 21:13
13139c5
Compare
Choose a tag to compare
Pre-release

Minor Changes

Staking Grants

Add the ability for dapps to request staking grants be give via the dashboard. To request a grant, the dapp will need to set the stake prop to true in the config of the abstraxion provider.

<AbstraxionProvider
  config={{
    stake: true,
  }}
>
  {children}
</AbstraxionProvider>

This will grant StakeAuthorization to delegate, undelegate, redelegate and a GenericAuthorization to exec a MsgWithdrawDelegatorReward msg along with a feegrant for these message to cover the fees.

Bank Send Grants

Add the ability for dapps to request bank send grants be give via the dashboard. To request a grant, the dapp will need to set pass the requested denom and amount to the config of the abstraxion provider.

<AbstraxionProvider
  config={{
    bank: [
      {
        denom: "uxion",
        amount: "1000000",
      },
    ],
  }}
>
  {children}
</AbstraxionProvider>

Patch Changes

@burnt-labs/[email protected]

26 Feb 21:13
13139c5
Compare
Choose a tag to compare
Pre-release

Patch Changes

@burnt-labs/[email protected]

22 Feb 04:48
fee42c8
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #94 c695fbf Thanks @justinbarry! - Update the following packages to the latest version:

    Package Version
    @cosmjs/cosmwasm-stargate ^0.32.2
    @cosmjs/proto-signing ^0.32.2
    @cosmjs/stargate ^0.32.2
    @cosmjs/tendermint-rpc ^0.32.2
    cosmjs-types ^0.9.0

@burnt-labs/[email protected]

22 Feb 19:10
cc0dbda
Compare
Choose a tag to compare
Pre-release

Minor Changes

@burnt-labs/[email protected]

22 Feb 04:48
fee42c8
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #94 c695fbf Thanks @justinbarry! - Update the following packages to the latest version:

    Package Version
    @cosmjs/cosmwasm-stargate ^0.32.2
    @cosmjs/proto-signing ^0.32.2
    @cosmjs/stargate ^0.32.2
    @cosmjs/tendermint-rpc ^0.32.2
    cosmjs-types ^0.9.0

Patch Changes

@burnt-labs/[email protected]

22 Feb 04:48
fee42c8
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #94 c695fbf Thanks @justinbarry! - Update the following packages to the latest version:

    Package Version
    @cosmjs/cosmwasm-stargate ^0.32.2
    @cosmjs/proto-signing ^0.32.2
    @cosmjs/stargate ^0.32.2
    @cosmjs/tendermint-rpc ^0.32.2
    cosmjs-types ^0.9.0

Patch Changes

@burnt-labs/[email protected]

21 Feb 21:03
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #97 9ff23cb Thanks @justinbarry! - Update default RPC/Rest Urls and allow for dapps to pass in rest url via the AbstraxionProvider.

            <AbstraxionProvider
              config={{
                restUrl: "https://api.example.com",
              }}
            >
              {children}
            </AbstraxionProvider>

@burnt-labs/[email protected]

21 Feb 21:03
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #97 9ff23cb Thanks @justinbarry! - Update default RPC/Rest Urls and allow for dapps to pass in rest url via the AbstraxionProvider.

            <AbstraxionProvider
              config={{
                restUrl: "https://api.example.com",
              }}
            >
              {children}
            </AbstraxionProvider>

Patch Changes