Skip to content

Commit

Permalink
chore: update versions (alpha)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and justinbarry committed Feb 27, 2024
1 parent 6ea5c28 commit 116c3ed
Show file tree
Hide file tree
Showing 13 changed files with 196 additions and 108 deletions.
8 changes: 7 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"chilly-lamps-float",
"clever-vans-drop",
"cyan-readers-crash",
"dirty-years-love",
"dry-jobs-warn",
"fifty-flowers-happen",
"flat-trees-confess",
Expand All @@ -43,17 +44,22 @@
"rich-wolves-whisper",
"rotten-horses-teach",
"shiny-pandas-repeat",
"shy-planets-watch",
"silver-plants-rule",
"smart-deers-cough",
"sour-wasps-film",
"spotty-cats-wink",
"strange-pumpkins-raise",
"tame-cows-add",
"tasty-masks-kiss",
"three-oranges-retire",
"tough-dolls-count",
"twenty-carrots-occur",
"two-impalas-peel",
"unlucky-zebras-press",
"violet-foxes-clean",
"weak-ears-suffer",
"weak-glasses-rush"
"weak-glasses-rush",
"wicked-colts-reflect"
]
}
88 changes: 53 additions & 35 deletions apps/abstraxion-dashboard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,66 @@
# abstraxion-dashboard

## 0.2.0-alpha.16
## 0.2.0-alpha.17

### 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
- [#112](https://github.com/burnt-labs/xion.js/pull/112) [`04f02b1`](https://github.com/burnt-labs/xion.js/commit/04f02b1dc2f689b318c642628f32bb22f536ec4e) Thanks [@justinbarry](https://github.com/justinbarry)! - Fix window.keplr error on startup when keplr is not installed

- [#111](https://github.com/burnt-labs/xion.js/pull/111) [`97685ba`](https://github.com/burnt-labs/xion.js/commit/97685bab1c531937a817c53bc314b079fe60cde8) Thanks [@icfor](https://github.com/icfor)! - Allow extra messages in the fee grant

- # [#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)! -
- [#109](https://github.com/burnt-labs/xion.js/pull/109) [`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77) Thanks [@BurntVal](https://github.com/BurntVal)! - Impl Ethereum authenticator and signer

Staking Grants
===
### Patch Changes

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.
- [#109](https://github.com/burnt-labs/xion.js/pull/109) [`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77) Thanks [@BurntVal](https://github.com/BurntVal)! - Move Keplr/Metamask signin buttons into an "advanced" dropdown panel.

```jsx
<AbstraxionProvider
config={{
stake: true,
}}
>
{children}
</AbstraxionProvider>
```
- Updated dependencies [[`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77), [`6ea5c28`](https://github.com/burnt-labs/xion.js/commit/6ea5c282a9cd4ca15068052a4b615cd902f6113d)]:
- @burnt-labs/abstraxion@1.0.0-alpha.36
- @burnt-labs/signers@0.1.0-alpha.8
- @burnt-labs/ui@0.1.0-alpha.7

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>
```
## 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

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.16",
"version": "0.2.0-alpha.17",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
86 changes: 53 additions & 33 deletions apps/demo-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,46 +1,66 @@
# demo-app

## 1.1.0-alpha.20
## 1.1.0-alpha.21

### 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)! -
- [#109](https://github.com/burnt-labs/xion.js/pull/109) [`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77) Thanks [@BurntVal](https://github.com/BurntVal)! - Impl Ethereum authenticator and signer

Staking Grants
===
- [#103](https://github.com/burnt-labs/xion.js/pull/103) [`ace50e5`](https://github.com/burnt-labs/xion.js/commit/ace50e507e5d33b75092e3c4823ba0c5c6ad04d2) Thanks [@BurntNerve](https://github.com/BurntNerve)! - Added sign arb demo to demo app and made granteeAddress readable in GranteeSignerClient.

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.
- [#113](https://github.com/burnt-labs/xion.js/pull/113) [`6ea5c28`](https://github.com/burnt-labs/xion.js/commit/6ea5c282a9cd4ca15068052a4b615cd902f6113d) Thanks [@justinbarry](https://github.com/justinbarry)! - Add a logout hook method to the `useAbstraxionSigningClient` hook.

```jsx
<AbstraxionProvider
config={{
stake: true,
}}
>
{children}
</AbstraxionProvider>
```typescript
const { client, signArb, logout } = useAbstraxionSigningClient();
```

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 [[`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77), [`6ea5c28`](https://github.com/burnt-labs/xion.js/commit/6ea5c282a9cd4ca15068052a4b615cd902f6113d)]:
- @burnt-labs/abstraxion@1.0.0-alpha.36
- @burnt-labs/signers@0.1.0-alpha.8
- @burnt-labs/ui@0.1.0-alpha.7

## 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

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.20",
"version": "1.1.0-alpha.21",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
13 changes: 13 additions & 0 deletions packages/abstraxion-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @burnt-labs/abstraxion-core

## 1.0.0-alpha.34

### Minor Changes

- [#109](https://github.com/burnt-labs/xion.js/pull/109) [`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77) Thanks [@BurntVal](https://github.com/BurntVal)! - Impl Ethereum authenticator and signer

- [#103](https://github.com/burnt-labs/xion.js/pull/103) [`ace50e5`](https://github.com/burnt-labs/xion.js/commit/ace50e507e5d33b75092e3c4823ba0c5c6ad04d2) Thanks [@BurntNerve](https://github.com/BurntNerve)! - Added sign arb demo to demo app and made granteeAddress readable in GranteeSignerClient.

### Patch Changes

- Updated dependencies [[`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77)]:
- @burnt-labs/signers@0.1.0-alpha.8

## 1.0.0-alpha.33

### Patch 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.33",
"version": "1.0.0-alpha.34",
"sideEffects": [
"**/*.css"
],
Expand Down
85 changes: 52 additions & 33 deletions packages/abstraxion/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,45 +1,64 @@
# @burnt-labs/abstraxion

## 1.0.0-alpha.35
## 1.0.0-alpha.36

### 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)! -
- [#109](https://github.com/burnt-labs/xion.js/pull/109) [`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77) Thanks [@BurntVal](https://github.com/BurntVal)! - Impl Ethereum authenticator and signer

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.
- [#113](https://github.com/burnt-labs/xion.js/pull/113) [`6ea5c28`](https://github.com/burnt-labs/xion.js/commit/6ea5c282a9cd4ca15068052a4b615cd902f6113d) Thanks [@justinbarry](https://github.com/justinbarry)! - Add a logout hook method to the `useAbstraxionSigningClient` hook.

```jsx
<AbstraxionProvider
config={{
stake: true,
}}
>
{children}
</AbstraxionProvider>
```typescript
const { client, signArb, logout } = useAbstraxionSigningClient();
```

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 [[`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77), [`ace50e5`](https://github.com/burnt-labs/xion.js/commit/ace50e507e5d33b75092e3c4823ba0c5c6ad04d2)]:
- @burnt-labs/abstraxion-core@1.0.0-alpha.34
- @burnt-labs/signers@0.1.0-alpha.8
- @burnt-labs/ui@0.1.0-alpha.7

## 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

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.35",
"version": "1.0.0-alpha.36",
"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.8

### Minor Changes

- [#109](https://github.com/burnt-labs/xion.js/pull/109) [`4594b46`](https://github.com/burnt-labs/xion.js/commit/4594b46fa3c668e02c5ccade8d3b7aae2e7c0d77) Thanks [@BurntVal](https://github.com/BurntVal)! - Impl Ethereum authenticator and signer

## 0.1.0-alpha.7

### Minor Changes
Expand Down
Loading

0 comments on commit 116c3ed

Please sign in to comment.