Releases: burnt-labs/xion.js
Releases · burnt-labs/xion.js
@burnt-labs/[email protected]
Minor Changes
- #88
415f15a
Thanks @BurntNerve! - Added new class for signArb functionality
@burnt-labs/[email protected]
Patch Changes
- Updated dependencies [
9ff23cb
]:- @burnt-labs/[email protected]
@burnt-labs/[email protected]
Minor Changes
- #92
a9a882a
Thanks @Peartes! - Pull GranteeSignerClient into a separate "core" package to help others reproduce abstraxion functionality
Patch Changes
- Updated dependencies [
a9a882a
]:- @burnt-labs/[email protected]
@burnt-labs/[email protected]
@burnt-labs/[email protected]
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]
Minor Changes
- #85
e60fb47
Thanks @justinbarry! - Update to use a round robin rpc endpoint
@burnt-labs/[email protected]
Patch Changes
- Updated dependencies [
874ef2b
]:- @burnt-labs/[email protected]
@burnt-labs/[email protected]
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
- #87
f46fa86
Thanks @justinbarry! - Allow for dapp to pass in custom rpc url
Patch Changes
- Updated dependencies [
e60fb47
]:- @burnt-labs/[email protected]
@burnt-labs/[email protected]
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]
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 toimport "@burnt-labs/abstraxion/dist/index.css"
going forward.