Skip to content

Releases: burnt-labs/xion.js

@burnt-labs/[email protected]

21 Feb 16:49
5527d07
Compare
Choose a tag to compare
Pre-release

Minor Changes

@burnt-labs/[email protected]

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

Patch Changes

@burnt-labs/[email protected]

19 Feb 02:32
f94822c
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #92 a9a882a Thanks @Peartes! - Pull GranteeSignerClient into a separate "core" package to help others reproduce abstraxion functionality

Patch Changes

@burnt-labs/[email protected]

19 Feb 02:32
f94822c
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #92 a9a882a Thanks @Peartes! - Pull GranteeSignerClient into a separate "core" package to help others reproduce abstraxion functionality

@burnt-labs/[email protected]

15 Feb 17:42
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #89 874ef2b Thanks @justinbarry! - Return RPC to rpc.xion-testnet-1.burnt.com:443 to avoid proxy rate limiting

@burnt-labs/[email protected]

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

Minor Changes

@burnt-labs/[email protected]

15 Feb 17:42
Compare
Choose a tag to compare
Pre-release

Patch Changes

@burnt-labs/[email protected]

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

New Feature

A custom RPC provider can now be passed in by the dapp!

 <AbstraxionProvider
          config={{
            contracts: [
              "CONTRACT_ADDRESS",
              {
                address: "CONTRACT_ADDRESS_WHICH_NEEDS_TO_MOVE_FUNDS",
                amounts: [{ denom: "uxion", amount: "1000000" }],
              },
            ],
            rpcUrl: "https://somerpcendpoint.com"
          }}
        >
          {children}
</AbstraxionProvider>

Minor Changes

Patch Changes

@burnt-labs/[email protected]

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

New Features

Dapps can now request the ability to send funds to a contract along with exec messages. Along side the list of contract addresses provided to the AbstraxionProvider a developer can now provide a requested amount as shown below!

 <AbstraxionProvider
          config={{
            contracts: [
              "CONTRACT_ADDRESS",
              {
                address: "CONTRACT_ADDRESS_WHICH_NEEDS_TO_MOVE_FUNDS",
                amounts: [{ denom: "uxion", amount: "1000000" }],
              },
            ],
          }}
        >
          {children}
</AbstraxionProvider>

Minor Changes

  • #83 7dd82fe Thanks @justinbarry! - Add ability for a DAPP to request a token budget alongside contract exec privileges

@burnt-labs/[email protected]

05 Feb 21:35
7e49955
Compare
Choose a tag to compare
Pre-release

Minor Changes

  • #57 5e0d06f Thanks @BurntNerve! - Added font files and small ui tweaks

  • #65 39fabfe Thanks @justinbarry! - Now longer use a blanket export in package.json as it was causing some confusion for some bundlers. There is no longer a css alias for "@burnt-labs/abstraxion/style.css", dapps will need to import "@burnt-labs/abstraxion/dist/index.css" going forward.