Skip to content

Commit

Permalink
Merge pull request #263 from omnisat/dev
Browse files Browse the repository at this point in the history
fix pipeline
  • Loading branch information
hathbanger authored Nov 14, 2024
2 parents ead2f4f + 2625b6e commit 461db6e
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 12 deletions.
4 changes: 4 additions & 0 deletions packages/lasereyes-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -493,3 +493,7 @@ LaserEyes Core provides a robust and flexible interface for interacting with var







2 changes: 1 addition & 1 deletion packages/lasereyes-core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@omnisat/lasereyes-core",
"private": false,
"version": "0.0.45-rc.2",
"version": "0.0.45-rc.3",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
Expand Down
4 changes: 4 additions & 0 deletions packages/lasereyes-react/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,7 @@ Contributions are welcome! Feel free to submit pull requests or open issues in t
`@omnisat/lasereyes-react` is MIT licensed.
the ai release notes generator is so cool..
2 changes: 1 addition & 1 deletion packages/lasereyes-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@omnisat/lasereyes-react",
"private": false,
"version": "0.0.39-rc.0",
"version": "0.0.39-rc.1",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
Expand Down
10 changes: 5 additions & 5 deletions packages/lasereyes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pnpm add @omnisat/lasereyes
### Example Usage (React)

```typescript
import { LaserEyesProvider, useWallet } from '@omnisat/lasereyes-react';
import { LaserEyesProvider, useLaserEyes, UNISAT } from '@omnisat/lasereyes-react';

function App() {
return (
Expand All @@ -45,14 +45,14 @@ function App() {
}

function WalletInfo() {
const { wallet, connect } = useWallet();
const { address, connect } = useLaserEyes();

return (
<div>
{wallet ? (
<p>Connected: {wallet.address}</p>
{address ? (
<p>Connected: {address}</p>
) : (
<button onClick={connect}>Connect Wallet</button>
<button onClick={() => connect(UNISAT)}>Connect Wallet</button>
)}
</div>
);
Expand Down
6 changes: 3 additions & 3 deletions packages/lasereyes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"url": "https://github.com/omnisat/lasereyes-mono.git"
},
"private": false,
"version": "0.0.122-rc.1",
"version": "0.0.122-rc.4",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
Expand Down Expand Up @@ -48,8 +48,8 @@
"vite-plugin-dts": "^4.2.1"
},
"dependencies": {
"@omnisat/lasereyes-core": "0.0.45-rc.1",
"@omnisat/lasereyes-react": "0.0.38",
"@omnisat/lasereyes-core": "workspace:*",
"@omnisat/lasereyes-react": "workspace:*",
"bip39": "^3.1.0"
},
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 461db6e

Please sign in to comment.