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

feat: add mav2 signer #1203

Merged
merged 5 commits into from
Dec 13, 2024
Merged
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

### Bug Fixes

- correctly align protected by copy ([#1186](https://github.com/alchemyplatform/aa-sdk/issues/1186)) ([63be696](https://github.com/alchemyplatform/aa-sdk/commit/63be696199882b42fbad7eb7fa22aa823984c225))
- rn stamper was returning stamp instead of response ([#1201](https://github.com/alchemyplatform/aa-sdk/issues/1201)) ([70a18df](https://github.com/alchemyplatform/aa-sdk/commit/70a18dfc2a5a751e3e08830673d0d293bbca05e2))

### Features

- add react-native usage docs ([#1181](https://github.com/alchemyplatform/aa-sdk/issues/1181)) ([fb3e73b](https://github.com/alchemyplatform/aa-sdk/commit/fb3e73b184231bb731e838e9fb5cced719772e32))

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Bug Fixes
Expand Down
4 changes: 4 additions & 0 deletions aa-sdk/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

**Note:** Version bump only for package @aa-sdk/core

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Features
Expand Down
2 changes: 1 addition & 1 deletion aa-sdk/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aa-sdk/core",
"license": "MIT",
"version": "4.6.0",
"version": "4.6.1",
"description": "viem based SDK that enables interactions with ERC-4337 Smart Accounts. ABIs are based off the definitions generated in @account-abstraction/contracts",
"author": "Alchemy",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion aa-sdk/core/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file is autogenerated by inject-version.ts. Any changes will be
// overwritten on commit!
export const VERSION = "4.5.1";
export const VERSION = "4.6.1";
4 changes: 4 additions & 0 deletions aa-sdk/ethers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

**Note:** Version bump only for package @aa-sdk/ethers

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

**Note:** Version bump only for package @aa-sdk/ethers
Expand Down
6 changes: 3 additions & 3 deletions aa-sdk/ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aa-sdk/ethers",
"license": "MIT",
"version": "4.6.0",
"version": "4.6.1",
"description": "Ethers.js wrapper for @aa-sdk/core",
"author": "Alchemy",
"type": "module",
Expand Down Expand Up @@ -41,15 +41,15 @@
"test:run": "vitest run"
},
"devDependencies": {
"@account-kit/smart-contracts": "^4.6.0",
"@account-kit/smart-contracts": "^4.6.1",
"alchemy-sdk": "^3.0.0",
"dotenv": "^16.0.3",
"typescript": "^5.0.4",
"typescript-template": "*",
"vitest": "^2.0.4"
},
"dependencies": {
"@aa-sdk/core": "^4.6.0",
"@aa-sdk/core": "^4.6.1",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
Expand Down
4 changes: 4 additions & 0 deletions account-kit/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

**Note:** Version bump only for package @account-kit/core

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Features
Expand Down
10 changes: 5 additions & 5 deletions account-kit/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@account-kit/core",
"version": "4.6.0",
"version": "4.6.1",
"description": "Core library for account kit that provides state management and framework indepednent abstractions across infra, Alchemy Signer, and Smart Contracts",
"author": "Alchemy",
"license": "MIT",
Expand Down Expand Up @@ -45,10 +45,10 @@
"vitest": "^2.0.4"
},
"dependencies": {
"@account-kit/infra": "^4.6.0",
"@account-kit/logging": "^4.6.0",
"@account-kit/signer": "^4.6.0",
"@account-kit/smart-contracts": "^4.6.0",
"@account-kit/infra": "^4.6.1",
"@account-kit/logging": "^4.6.1",
"@account-kit/signer": "^4.6.1",
"@account-kit/smart-contracts": "^4.6.1",
"js-cookie": "^3.0.5",
"zod": "^3.22.4",
"zustand": "^5.0.0-rc.2"
Expand Down
2 changes: 1 addition & 1 deletion account-kit/core/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file is autogenerated by inject-version.ts. Any changes will be
// overwritten on commit!
export const VERSION = "4.6.0";
export const VERSION = "4.6.1";
4 changes: 4 additions & 0 deletions account-kit/infra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

**Note:** Version bump only for package @account-kit/infra

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Features
Expand Down
6 changes: 3 additions & 3 deletions account-kit/infra/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@account-kit/infra",
"version": "4.6.0",
"version": "4.6.1",
"description": "adapters for @aa-sdk/core for interacting with alchemy services",
"author": "Alchemy",
"license": "MIT",
Expand Down Expand Up @@ -44,8 +44,8 @@
"vitest": "^2.0.4"
},
"dependencies": {
"@aa-sdk/core": "^4.6.0",
"@account-kit/logging": "^4.6.0",
"@aa-sdk/core": "^4.6.1",
"@account-kit/logging": "^4.6.1",
"eventemitter3": "^5.0.1",
"zod": "^3.22.4"
},
Expand Down
2 changes: 1 addition & 1 deletion account-kit/infra/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file is autogenerated by inject-version.ts. Any changes will be
// overwritten on commit!
export const VERSION = "4.5.1";
export const VERSION = "4.6.1";
4 changes: 4 additions & 0 deletions account-kit/logging/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

**Note:** Version bump only for package @account-kit/logging

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Features
Expand Down
2 changes: 1 addition & 1 deletion account-kit/logging/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@account-kit/logging",
"version": "4.6.0",
"version": "4.6.1",
"description": "Core logging library for Account Kit packages",
"author": "Alchemy",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion account-kit/logging/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file is autogenerated by inject-version.ts. Any changes will be
// overwritten on commit!
export const VERSION = "4.5.1";
export const VERSION = "4.6.1";
4 changes: 4 additions & 0 deletions account-kit/plugingen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

**Note:** Version bump only for package @account-kit/plugingen

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Features
Expand Down
4 changes: 2 additions & 2 deletions account-kit/plugingen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@account-kit/plugingen",
"version": "4.6.0",
"version": "4.6.1",
"description": "A CLI tool that enables you to generate TS code for your ERC-6900 plugins",
"author": "Alchemy",
"license": "MIT",
Expand Down Expand Up @@ -60,7 +60,7 @@
},
"homepage": "https://github.com/alchemyplatform/aa-sdk#readme",
"dependencies": {
"@aa-sdk/core": "^4.6.0",
"@aa-sdk/core": "^4.6.1",
"bundle-require": "^4.0.2",
"cac": "^6.7.14",
"change-case": "^5.4.3",
Expand Down
2 changes: 1 addition & 1 deletion account-kit/plugingen/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file is autogenerated by inject-version.ts. Any changes will be
// overwritten on commit!
export const VERSION = "4.5.1";
export const VERSION = "4.6.1";
6 changes: 6 additions & 0 deletions account-kit/react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

### Bug Fixes

- correctly align protected by copy ([#1186](https://github.com/alchemyplatform/aa-sdk/issues/1186)) ([63be696](https://github.com/alchemyplatform/aa-sdk/commit/63be696199882b42fbad7eb7fa22aa823984c225))

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Bug Fixes
Expand Down
10 changes: 5 additions & 5 deletions account-kit/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@account-kit/react",
"version": "4.6.0",
"version": "4.6.1",
"description": "React components and hooks for using Account Kit",
"author": "Alchemy",
"license": "MIT",
Expand Down Expand Up @@ -66,10 +66,10 @@
"vitest": "^2.0.4"
},
"dependencies": {
"@account-kit/core": "^4.6.0",
"@account-kit/infra": "^4.6.0",
"@account-kit/logging": "^4.6.0",
"@account-kit/signer": "^4.6.0",
"@account-kit/core": "^4.6.1",
"@account-kit/infra": "^4.6.1",
"@account-kit/logging": "^4.6.1",
"@account-kit/signer": "^4.6.1",
"@tanstack/react-form": "^0.33.0",
"@tanstack/zod-form-adapter": "^0.33.0",
"@wagmi/connectors": "^5.1.15",
Expand Down
2 changes: 1 addition & 1 deletion account-kit/react/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file is autogenerated by inject-version.ts. Any changes will be
// overwritten on commit!
export const VERSION = "4.6.0";
export const VERSION = "4.6.1";
6 changes: 6 additions & 0 deletions account-kit/rn-signer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

### Bug Fixes

- rn stamper was returning stamp instead of response ([#1201](https://github.com/alchemyplatform/aa-sdk/issues/1201)) ([70a18df](https://github.com/alchemyplatform/aa-sdk/commit/70a18dfc2a5a751e3e08830673d0d293bbca05e2))

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class NativeTEKStamperModule(reactContext: ReactApplicationContext) :
"stampHeaderValue",
stamp.stampHeaderValue
)
return promise.resolve(stamp)
return promise.resolve(response)
} catch (e: Exception) {
promise.reject(e)
}
Expand Down
6 changes: 3 additions & 3 deletions account-kit/rn-signer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@account-kit/react-native-signer",
"version": "4.6.0",
"version": "4.6.1",
"description": "React Native compatible Account Kit signer",
"source": "./src/index.tsx",
"main": "./lib/commonjs/index.js",
Expand Down Expand Up @@ -146,8 +146,8 @@
"version": "0.42.2"
},
"dependencies": {
"@aa-sdk/core": "^4.6.0",
"@account-kit/signer": "^4.6.0",
"@aa-sdk/core": "^4.6.1",
"@account-kit/signer": "^4.6.1",
"viem": "^2.21.40"
}
}
4 changes: 4 additions & 0 deletions account-kit/signer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

**Note:** Version bump only for package @account-kit/signer

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Features
Expand Down
6 changes: 3 additions & 3 deletions account-kit/signer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@account-kit/signer",
"version": "4.6.0",
"version": "4.6.1",
"description": "Core interfaces and clients for interfacing with the Alchemy Signer API",
"author": "Alchemy",
"license": "MIT",
Expand Down Expand Up @@ -48,8 +48,8 @@
"vitest": "^2.0.4"
},
"dependencies": {
"@aa-sdk/core": "^4.6.0",
"@account-kit/logging": "^4.6.0",
"@aa-sdk/core": "^4.6.1",
"@account-kit/logging": "^4.6.1",
"@turnkey/http": "^2.6.2",
"@turnkey/iframe-stamper": "^1.0.0",
"@turnkey/viem": "^0.4.8",
Expand Down
2 changes: 1 addition & 1 deletion account-kit/signer/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file is autogenerated by inject-version.ts. Any changes will be
// overwritten on commit!
export const VERSION = "4.5.1";
export const VERSION = "4.6.1";
4 changes: 4 additions & 0 deletions account-kit/smart-contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [4.6.1](https://github.com/alchemyplatform/aa-sdk/compare/v4.6.0...v4.6.1) (2024-12-10)

**Note:** Version bump only for package @account-kit/smart-contracts

# [4.6.0](https://github.com/alchemyplatform/aa-sdk/compare/v4.5.1...v4.6.0) (2024-12-03)

### Features
Expand Down
8 changes: 4 additions & 4 deletions account-kit/smart-contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@account-kit/smart-contracts",
"version": "4.6.0",
"version": "4.6.1",
"description": "aa-sdk compatible interfaces for Alchemy Smart Accounts",
"author": "Alchemy",
"license": "MIT",
Expand Down Expand Up @@ -46,7 +46,7 @@
"test:run": "vitest run"
},
"devDependencies": {
"@account-kit/plugingen": "^4.6.0",
"@account-kit/plugingen": "^4.6.1",
"change-case": "^5.1.2",
"dedent": "^1.5.1",
"dotenv": "^16.3.1",
Expand All @@ -68,8 +68,8 @@
"homepage": "https://github.com/alchemyplatform/aa-sdk#readme",
"gitHead": "ee46e8bb857de3b631044fa70714ea706d9e317d",
"dependencies": {
"@aa-sdk/core": "^4.6.0",
"@account-kit/infra": "^4.6.0"
"@aa-sdk/core": "^4.6.1",
"@account-kit/infra": "^4.6.1"
},
"peerDependencies": {
"viem": "^2.20.0"
Expand Down
Loading
Loading