Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove DataUtils module from Prime SDK and introduce it as standalone package #130

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Changelog
## [1.8.2] - 2024-06-18

### Breaking changes
- The `DataUtils` module has been removed from the Prime SDK and will now be available as a separate package.

## [1.8.1] - 2024-05-14
### New
- Added signTypedData method to all providers supported
Expand Down
7 changes: 7 additions & 0 deletions data-utils/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
dist
coverage
__snapshots__
src/sdk/contracts/**/*.ts
src/sdk/base/HttpRpcClient.ts
src/sdk/state/state.service.ts
25 changes: 25 additions & 0 deletions data-utils/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
],
env: {
node: true,
jest: true,
},
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/ban-types': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
},
};
42 changes: 42 additions & 0 deletions data-utils/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# OS
.DS_Store

# IDEs
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
*.code-workspace
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
workspace.code-workspace

# node
node_modules

# dist
dist

# develop
.graphqlconfig
.cache
bak
docs
demo
test.js
yarn.lock

# .env file
.env

# config
examples/config.json

# contracts exposed
src/contracts/factories/contracts-exposed/
57 changes: 57 additions & 0 deletions data-utils/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<div align="center">
<h1 align="center">Etherspot Data Utils</h1>
</div>

<div align="center">
<img src="https://public.etherspot.io/assets/etherspot.gif" width="200" height="200">
</div>

--------------

>[!IMPORTANT]
>This repo/software is under active development.


## 🐞 Etherspot Data Utils


## ⚙ Get started

You can either get started by installing the packages yourself here:

```bash
npm i @etherspot/data-utils
```

## 📖 Documentation

- [Quick Start](https://etherspot.fyi/getting-started)
- [Instantiate the SDK](https://etherspot.fyi/prime-sdk/instantiation)
- [Running SDK examples](https://etherspot.fyi/examples/intro)
- [Function List](https://etherspot.fyi/prime-sdk/function)
- [Batching Transactions](https://etherspot.fyi/prime-sdk/batching-transactions)

## 🔗 Important Links

- [Skandha Bundler](https://etherspot.fyi/skandha/intro)
- [Arka Paymaster](https://etherspot.fyi/arka/intro)
- [SDK Reference](https://sdk.etherspot.io/)

## 🏌️‍♂️ Contributions

Please feel free to open issues or PRs to this repo.

## 🔐 Security

To report security issues please follow [guide](./SECURITY.md)

## 💬 Contact

If you have any questions or feedback about Etherspot Prime, please feel free to reach out to us.

- [Follow on Twitter](https://twitter.com/etherspot)
- [Join our discord](https://discord.etherspot.io/)

## 📄 License

Licensed under the [MIT License](https://github.com/etherspot/etherspot-prime-sdk/blob/master/LICENSE).
Loading
Loading