Skip to content

Commit

Permalink
chore: update versions (alpha) (#108)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Feb 26, 2024
1 parent 2c33c31 commit 13139c5
Show file tree
Hide file tree
Showing 13 changed files with 175 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"calm-coats-approve",
"chilly-lamps-float",
"clever-vans-drop",
"cyan-readers-crash",
"dry-jobs-warn",
"fifty-flowers-happen",
"flat-trees-confess",
Expand All @@ -45,6 +46,7 @@
"silver-plants-rule",
"smart-deers-cough",
"sour-wasps-film",
"spotty-cats-wink",
"tame-cows-add",
"tasty-masks-kiss",
"three-oranges-retire",
Expand Down
51 changes: 51 additions & 0 deletions apps/abstraxion-dashboard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,56 @@
# abstraxion-dashboard

## 0.2.0-alpha.16

### Minor Changes

- [#78](https://github.com/burnt-labs/xion.js/pull/78) [`6de3996`](https://github.com/burnt-labs/xion.js/commit/6de39966e4a308c740ab8e66eb00a4c1f2d479b4) Thanks [@BurntVal](https://github.com/BurntVal)! - introduce the ability to add a secp256k1 authenticator (via Keplr) and use it as a signer for transactions

- # [#107](https://github.com/burnt-labs/xion.js/pull/107) [`2c33c31`](https://github.com/burnt-labs/xion.js/commit/2c33c3136280558ec505b401911244310432ebd3) Thanks [@justinbarry](https://github.com/justinbarry)! -

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.

```jsx
<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.

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

### Patch Changes

- Updated dependencies [[`6de3996`](https://github.com/burnt-labs/xion.js/commit/6de39966e4a308c740ab8e66eb00a4c1f2d479b4), [`2c33c31`](https://github.com/burnt-labs/xion.js/commit/2c33c3136280558ec505b401911244310432ebd3)]:
- @burnt-labs/signers@0.1.0-alpha.7
- @burnt-labs/ui@0.1.0-alpha.6
- @burnt-labs/abstraxion@1.0.0-alpha.35

## 0.2.0-alpha.15

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/abstraxion-dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "abstraxion-dashboard",
"version": "0.2.0-alpha.15",
"version": "0.2.0-alpha.16",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
49 changes: 49 additions & 0 deletions apps/demo-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,54 @@
# demo-app

## 1.1.0-alpha.20

### Minor Changes

- # [#107](https://github.com/burnt-labs/xion.js/pull/107) [`2c33c31`](https://github.com/burnt-labs/xion.js/commit/2c33c3136280558ec505b401911244310432ebd3) Thanks [@justinbarry](https://github.com/justinbarry)! -

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.

```jsx
<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.

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

### Patch Changes

- Updated dependencies [[`6de3996`](https://github.com/burnt-labs/xion.js/commit/6de39966e4a308c740ab8e66eb00a4c1f2d479b4), [`2c33c31`](https://github.com/burnt-labs/xion.js/commit/2c33c3136280558ec505b401911244310432ebd3)]:
- @burnt-labs/signers@0.1.0-alpha.7
- @burnt-labs/ui@0.1.0-alpha.6
- @burnt-labs/abstraxion@1.0.0-alpha.35

## 1.1.0-alpha.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/demo-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "demo-app",
"version": "1.1.0-alpha.19",
"version": "1.1.0-alpha.20",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
7 changes: 7 additions & 0 deletions packages/abstraxion-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @burnt-labs/abstraxion-core

## 1.0.0-alpha.33

### Patch Changes

- Updated dependencies [[`6de3996`](https://github.com/burnt-labs/xion.js/commit/6de39966e4a308c740ab8e66eb00a4c1f2d479b4)]:
- @burnt-labs/signers@0.1.0-alpha.7

## 1.0.0-alpha.32

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/abstraxion-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@burnt-labs/abstraxion-core",
"version": "1.0.0-alpha.32",
"version": "1.0.0-alpha.33",
"sideEffects": [
"**/*.css"
],
Expand Down
48 changes: 48 additions & 0 deletions packages/abstraxion/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# @burnt-labs/abstraxion

## 1.0.0-alpha.35

### Minor Changes

- # [#107](https://github.com/burnt-labs/xion.js/pull/107) [`2c33c31`](https://github.com/burnt-labs/xion.js/commit/2c33c3136280558ec505b401911244310432ebd3) Thanks [@justinbarry](https://github.com/justinbarry)! -

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.

```jsx
<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.

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

### Patch Changes

- Updated dependencies [[`6de3996`](https://github.com/burnt-labs/xion.js/commit/6de39966e4a308c740ab8e66eb00a4c1f2d479b4)]:
- @burnt-labs/signers@0.1.0-alpha.7
- @burnt-labs/ui@0.1.0-alpha.6
- @burnt-labs/abstraxion-core@1.0.0-alpha.33

## 1.0.0-alpha.34

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/abstraxion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@burnt-labs/abstraxion",
"version": "1.0.0-alpha.34",
"version": "1.0.0-alpha.35",
"sideEffects": [
"**/*.css"
],
Expand Down
6 changes: 6 additions & 0 deletions packages/signers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @burnt-labs/signers

## 0.1.0-alpha.7

### Minor Changes

- [#78](https://github.com/burnt-labs/xion.js/pull/78) [`6de3996`](https://github.com/burnt-labs/xion.js/commit/6de39966e4a308c740ab8e66eb00a4c1f2d479b4) Thanks [@BurntVal](https://github.com/BurntVal)! - introduce the ability to add a secp256k1 authenticator (via Keplr) and use it as a signer for transactions

## 0.1.0-alpha.6

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/signers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@burnt-labs/signers",
"version": "0.1.0-alpha.6",
"version": "0.1.0-alpha.7",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @burnt-labs/ui

## 0.1.0-alpha.6

### Minor Changes

- [#78](https://github.com/burnt-labs/xion.js/pull/78) [`6de3996`](https://github.com/burnt-labs/xion.js/commit/6de39966e4a308c740ab8e66eb00a4c1f2d479b4) Thanks [@BurntVal](https://github.com/BurntVal)! - introduce the ability to add a secp256k1 authenticator (via Keplr) and use it as a signer for transactions

## 0.1.0-alpha.5

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@burnt-labs/ui",
"version": "0.1.0-alpha.5",
"version": "0.1.0-alpha.6",
"sideEffects": [
"**/*.css"
],
Expand Down

0 comments on commit 13139c5

Please sign in to comment.