Skip to content

Commit

Permalink
fix: contracts, missing provider, add changelog for beta update
Browse files Browse the repository at this point in the history
  • Loading branch information
kwiss committed Oct 14, 2024
1 parent 0a0a5c4 commit 8d298de
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
},
"changesets": [
"flat-chefs-repair",
"hungry-bobcats-push"
"hungry-bobcats-push",
"small-crabs-confess"
]
}
5 changes: 5 additions & 0 deletions .changeset/small-crabs-confess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ark-project/react": minor
---

Update for provider
9 changes: 2 additions & 7 deletions contracts.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
{
"sepolia": {
"messaging": "0x74f13f1dffb5ad3c051d535ba03514e653b6dcac68e30b2db66a0aa0217c815",
"executor": "0xb86ab357c15c12fb78f9b0a19fa974c730fcbab96f17881827dde871665f0b",
"orderbook": "0x795b605fa3144afd6f11a4499f71b9cf373bcba3f1b2835d51f65ab59392261",
"nftContract": "0x22abe2adf9238c059adc95900713868145d015e988df25075e7a222ee269844"
"executor": "0xb86ab357c15c12fb78f9b0a19fa974c730fcbab96f17881827dde871665f0b"
},
"mainnet": {
"messaging": "0x57d45cc46de463f7ae63b74ce9b6b6b496a1178b02e7ad04d7c307caa698b7b",
"executor": "0x7b42945bc47001db92fe1b9739d753925263f2f1036c2ae1f87536c916ee6a",
"orderbook": "0x5add3084bb8664eb2a641cf26a28f60588c3ccd63af0632aafefcbb2332c345"
"executor": "0x00b1019e1d1cc417778e96c21b7d86559ff58d458c7288436243c2ac123f461d"
}
}
4 changes: 2 additions & 2 deletions packages/core/src/contracts.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// This file is auto-generated. Do not edit directly.

export const SEPOLIA_CONTRACTS = {
executor: "0xb86ab357c15c12fb78f9b0a19fa974c730fcbab96f17881827dde871665f0b"
"executor": "0xb86ab357c15c12fb78f9b0a19fa974c730fcbab96f17881827dde871665f0b"
};
export const MAINNET_CONTRACTS = {
executor: "0x00b1019e1d1cc417778e96c21b7d86559ff58d458c7288436243c2ac123f461d"
"executor": "0x00b1019e1d1cc417778e96c21b7d86559ff58d458c7288436243c2ac123f461d"
};
6 changes: 6 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @ark-project/react

## 2.0.0-beta.2

### Minor Changes

- Update for provider

## 2.0.0-beta.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ark-project/react",
"version": "2.0.0-beta.1",
"version": "2.0.0-beta.2",
"description": "",
"main": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions packages/react/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from "./hooks";
export * from "./components";

0 comments on commit 8d298de

Please sign in to comment.