Skip to content

Commit 9a328ed

Browse files
authored
Merge pull request #123 from AbstractSDK/adair/update0.23
Update to abstract 0.23
2 parents d58dc89 + 7e2373c commit 9a328ed

File tree

19 files changed

+163
-105
lines changed

19 files changed

+163
-105
lines changed

examples/wagemos-cosmoskit-nextjs/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# wagemos-cosmoskit-nextjs
22

3+
## 0.3.25
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @abstract-money/core@1.4.0
9+
- @abstract-money/react@1.4.0
10+
- @abstract-money/provider-cosmoskit@6.0.0
11+
312
## 0.3.24
413

514
### Patch Changes

examples/wagemos-cosmoskit-nextjs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wagemos-cosmoskit-nextjs",
3-
"version": "0.3.24",
3+
"version": "0.3.25",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -13,7 +13,7 @@
1313
"@abstract-money/core": "workspace:*",
1414
"@abstract-money/provider-cosmoskit": "workspace:*",
1515
"@abstract-money/react": "workspace:*",
16-
"@chain-registry/types": "^0.13.1",
16+
"@chain-registry/types": "^0.45.50",
1717
"@cosmjs/stargate": "^0.32.3",
1818
"@cosmos-kit/keplr": "^2.4.15",
1919
"@cosmos-kit/react": "^2.6.0",
@@ -25,7 +25,7 @@
2525
"@radix-ui/react-slot": "^1.0.2",
2626
"@radix-ui/react-toast": "^1.1.5",
2727
"@tanstack/react-query": "^4",
28-
"chain-registry": "^1.18.1",
28+
"chain-registry": "^1.63.60",
2929
"class-variance-authority": "^0.7.0",
3030
"clsx": "^2.0.0",
3131
"cosmjs-types": "^0.9.0",

examples/wagemos-graz-nextjs/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# wagemos-graz-nextjs
22

3+
## 0.3.25
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @abstract-money/core@1.4.0
9+
- @abstract-money/react@1.4.0
10+
- @abstract-money/provider-graz@6.0.0
11+
312
## 0.3.24
413

514
### Patch Changes

examples/wagemos-graz-nextjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wagemos-graz-nextjs",
3-
"version": "0.3.24",
3+
"version": "0.3.25",
44
"private": true,
55
"scripts": {
66
"dev": "NODE_OPTIONS='--inspect' next dev",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"type": "module",
3737
"dependencies": {
3838
"@abstract-money/bundle-require": "workspace:*",
39-
"@abstract-money/ts-codegen": "^0.35.8",
39+
"@abstract-money/ts-codegen": "0.36.0-beta-1",
4040
"@cosmjs/cosmwasm-stargate": "^0.32.3",
4141
"@cosmjs/stargate": "^0.32.3",
4242
"abort-controller": "^3.0.0",

packages/core/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
## 0.1.0
22

3+
## 1.4.0
4+
5+
### Minor Changes
6+
7+
- Update Abstract to 0.23
8+
9+
This change updates:
10+
11+
- Abstract to 0.23
12+
- Chain registry to 0.60.60
13+
14+
Breaking changes:
15+
16+
- `Manager.proposeOwnership` has been removed
17+
18+
Semi-breaking changes:
19+
20+
- Chain registry updating means that consumers will also need to update their chain registry + types
21+
- Raw manager ownership query results have changed types.
22+
323
## 1.3.4
424

525
### Patch Changes

packages/core/abstract.config.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,31 @@ import { registry, vanilla } from '@abstract-money/cli/plugins'
44
const contractsConfig = [
55
{
66
name: 'manager',
7-
version: '0.23.0-beta.0',
7+
version: '0.23.0',
88
},
99
{
1010
name: 'proxy',
11-
version: '0.23.0-beta.0',
11+
version: '0.23.0',
1212
},
1313
{
1414
name: 'module-factory',
15-
version: '0.23.0-beta.0',
15+
version: '0.23.0',
1616
},
1717
{
1818
name: 'version-control',
19-
version: '0.23.0-beta.0',
19+
version: '0.23.0',
2020
},
2121
{
2222
name: 'ans-host',
23-
version: '0.23.0-beta.0',
23+
version: '0.23.0',
2424
},
2525
{
2626
name: 'account-factory',
27-
version: '0.23.0-beta.0',
27+
version: '0.23.0',
2828
},
2929
{
3030
name: 'ibc-client',
31-
version: '0.23.0-beta.0',
31+
version: '0.23.0',
3232
},
3333
]
3434

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@abstract-money/core",
3-
"version": "1.3.4",
3+
"version": "1.4.0",
44
"description": "Typings for Abstract smart contracts",
55
"homepage": "https://github.com/AbstractSDK/abstract.js#readme",
66
"author": "adairrr <[email protected]>",
@@ -27,15 +27,15 @@
2727
},
2828
"dependencies": {
2929
"@abstract-money/cosmwasm-utils": "workspace:*",
30-
"@chain-registry/types": "^0.13.1",
30+
"@chain-registry/types": "^0.45.50",
3131
"@cosmjs/cosmwasm-stargate": "^0.32.3",
3232
"@cosmjs/encoding": "^0.32.3",
3333
"@cosmjs/proto-signing": "^0.32.3",
3434
"@cosmjs/stargate": "^0.32.3",
3535
"@cosmjs/tendermint-rpc": "^0.32.3",
3636
"@rimbu/bimap": "^1.1.1",
3737
"bech32": "^2.0.0",
38-
"chain-registry": "^1.18.1",
38+
"chain-registry": "^1.63.60",
3939
"cosmjs-types": "^0.9.0",
4040
"graphql-request": "^6.1.0",
4141
"lodash": "^4.17.21",

packages/core/src/actions/account/wallet/propose-owner.ts

Lines changed: 0 additions & 29 deletions
This file was deleted.

packages/core/src/actions/account/wallet/update-ownership.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
import { ManagerClient } from '../../../codegen/abstract'
2-
import { Action } from '../../../codegen/abstract/cosmwasm-codegen/Manager.types'
1+
import { GovAction } from '../../../codegen/abstract/cosmwasm-codegen/Manager.types'
32
import { WithCosmWasmSignOptions } from '../../../types/parameters'
43
import { getManagerClientFromApi } from './get-manager-client-from-api'
54
import { BaseAccountWalletParameters } from './types'
65

76
export type UpdateOwnershipParameters = WithCosmWasmSignOptions<
87
BaseAccountWalletParameters & {
9-
update: Action
8+
update: GovAction
109
}
1110
>
1211

0 commit comments

Comments
 (0)