Skip to content

Commit

Permalink
chore: policy support (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
joepegler authored Dec 4, 2024
1 parent ebe66df commit d1cb310
Show file tree
Hide file tree
Showing 28 changed files with 751 additions and 1,169 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @biconomy/sdk

## 0.0.12

### Patch Changes

- Policy support

## 0.0.11

### Patch Changes
Expand Down
30 changes: 28 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[![Biconomy](https://img.shields.io/badge/Made_with_%F0%9F%8D%8A_by-Biconomy-ff4e17?style=flat)](https://biconomy.io) [![License MIT](https://img.shields.io/badge/License-MIT-blue?&style=flat)](./LICENSE) [![codecov](https://codecov.io/github/bcnmy/sdk/graph/badge.svg?token=DTdIR5aBDA)](https://codecov.io/github/bcnmy/sdk)



# SDK 🚀

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/bcnmy/sdk)
Expand Down Expand Up @@ -55,6 +53,34 @@ const { status, transactionHash } = await nexusClient.waitForTransactionReceipt(

```

3. Testing

To run the tests, ensure you have the following prerequisites installed:

- Node.js v22 or higher
- [Bun](https://bun.sh/) package manager
- [Foundry](https://book.getfoundry.sh/getting-started/installation)

Install the dependencies:

```bash
bun install --frozen-lockfile
```

### Run all tests

```bash
bun run test
```

### Run tests for a specific module

```bash
bun run test -t=smartSessions
```

For detailed information about the testing framework, network configurations, and debugging guidelines, please refer to our [Testing Documentation](./src/test/README.md).

## Documentation and Resources

For a comprehensive understanding of our project and to contribute effectively, please refer to the following resources:
Expand Down
Binary file modified bun.lockb
Binary file not shown.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biconomy/sdk",
"version": "0.0.11",
"version": "0.0.12",
"author": "Biconomy",
"repository": "github:bcnmy/sdk",
"main": "./dist/_cjs/index.js",
Expand Down Expand Up @@ -37,12 +37,13 @@
"typedoc": "^0.25.9",
"viem": "2.21.6",
"vitest": "^1.3.1",
"yargs": "^17.7.2"
"yargs": "^17.7.2",
"@rhinestone/module-sdk": "^0.1.28"
},
"peerDependencies": {
"typescript": "^5",
"viem": "^2.20.0",
"@rhinestone/module-sdk": "^0.1.25"
"@rhinestone/module-sdk": "^0.1.28"
},
"exports": {
".": {
Expand Down
77 changes: 0 additions & 77 deletions src/sdk/clients/decorators/dan/Helpers.ts

This file was deleted.

149 changes: 0 additions & 149 deletions src/sdk/clients/decorators/dan/decorators/dan.decorators.test.ts

This file was deleted.

43 changes: 0 additions & 43 deletions src/sdk/clients/decorators/dan/decorators/index.ts

This file was deleted.

Loading

0 comments on commit d1cb310

Please sign in to comment.