@paxoslabs/amplify-sdk 0.2.2 → 0.2.3-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +0 -6
- package/dist/index.d.mts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,12 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
<!-- auto-changelog-above -->
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
## [0.2.2](///compare/v0.2.0-beta.4...v0.2.2) (2026-01-09)
|
|
12
|
-
## [0.2.0-beta.4](///compare/v0.2.0-beta.4...v0.2.2) (2026-01-09)
|
|
13
|
-
## [0.2.0](///compare/v0.2.0-beta.4...v0.2.2) (2026-01-05)
|
|
14
|
-
|
|
15
|
-
## [0.2.0](///compare/v0.2.0-beta.2...v0.2.0) (2026-01-05)
|
|
16
|
-
|
|
17
11
|
## [0.1.1](///compare/v0.1.1-beta.1...v0.1.1) (2025-12-10)
|
|
18
12
|
|
|
19
13
|
## [0.1.1-beta.0](///compare/v0.1.1-alpha.5...v0.1.1-beta.0) (2025-12-10)
|
package/dist/index.d.mts
CHANGED
|
@@ -1092,10 +1092,10 @@ declare function prepareDepositTxData(params: PrepareDepositTxDataParams): Promi
|
|
|
1092
1092
|
|
|
1093
1093
|
/**
|
|
1094
1094
|
* EIP-712 domain separator conforming to the EIP-712 TypedData JSON schema
|
|
1095
|
-
* Compatible with standard EIP-712 signing libraries
|
|
1095
|
+
* Compatible with viem's TypedDataDomain and standard EIP-712 signing libraries
|
|
1096
1096
|
*
|
|
1097
|
-
* This interface matches
|
|
1098
|
-
*
|
|
1097
|
+
* This interface matches viem/abitype's TypedDataDomain for seamless integration
|
|
1098
|
+
* with viem's signTypedData() and wagmi's signTypedDataAsync().
|
|
1099
1099
|
*
|
|
1100
1100
|
* @see {@link https://eips.ethereum.org/EIPS/eip-712#specification-of-the-eth_signtypeddata-json-rpc EIP-712 Specification}
|
|
1101
1101
|
*
|
|
@@ -1103,14 +1103,14 @@ declare function prepareDepositTxData(params: PrepareDepositTxDataParams): Promi
|
|
|
1103
1103
|
* @property version - Version of the signing domain
|
|
1104
1104
|
* @property chainId - Ethereum chain ID as a number (not bigint)
|
|
1105
1105
|
* @property verifyingContract - Address of the contract that will verify the signature
|
|
1106
|
-
* @property salt - Optional salt for disambiguation
|
|
1106
|
+
* @property salt - Optional salt for disambiguation (hex string)
|
|
1107
1107
|
*/
|
|
1108
1108
|
interface EIP712Domain {
|
|
1109
1109
|
name?: string;
|
|
1110
1110
|
version?: string;
|
|
1111
1111
|
chainId?: number;
|
|
1112
|
-
verifyingContract?:
|
|
1113
|
-
salt?:
|
|
1112
|
+
verifyingContract?: Address;
|
|
1113
|
+
salt?: Hex;
|
|
1114
1114
|
}
|
|
1115
1115
|
/**
|
|
1116
1116
|
* T008: EIP-2612 Permit type definition
|
package/dist/index.d.ts
CHANGED
|
@@ -1092,10 +1092,10 @@ declare function prepareDepositTxData(params: PrepareDepositTxDataParams): Promi
|
|
|
1092
1092
|
|
|
1093
1093
|
/**
|
|
1094
1094
|
* EIP-712 domain separator conforming to the EIP-712 TypedData JSON schema
|
|
1095
|
-
* Compatible with standard EIP-712 signing libraries
|
|
1095
|
+
* Compatible with viem's TypedDataDomain and standard EIP-712 signing libraries
|
|
1096
1096
|
*
|
|
1097
|
-
* This interface matches
|
|
1098
|
-
*
|
|
1097
|
+
* This interface matches viem/abitype's TypedDataDomain for seamless integration
|
|
1098
|
+
* with viem's signTypedData() and wagmi's signTypedDataAsync().
|
|
1099
1099
|
*
|
|
1100
1100
|
* @see {@link https://eips.ethereum.org/EIPS/eip-712#specification-of-the-eth_signtypeddata-json-rpc EIP-712 Specification}
|
|
1101
1101
|
*
|
|
@@ -1103,14 +1103,14 @@ declare function prepareDepositTxData(params: PrepareDepositTxDataParams): Promi
|
|
|
1103
1103
|
* @property version - Version of the signing domain
|
|
1104
1104
|
* @property chainId - Ethereum chain ID as a number (not bigint)
|
|
1105
1105
|
* @property verifyingContract - Address of the contract that will verify the signature
|
|
1106
|
-
* @property salt - Optional salt for disambiguation
|
|
1106
|
+
* @property salt - Optional salt for disambiguation (hex string)
|
|
1107
1107
|
*/
|
|
1108
1108
|
interface EIP712Domain {
|
|
1109
1109
|
name?: string;
|
|
1110
1110
|
version?: string;
|
|
1111
1111
|
chainId?: number;
|
|
1112
|
-
verifyingContract?:
|
|
1113
|
-
salt?:
|
|
1112
|
+
verifyingContract?: Address;
|
|
1113
|
+
salt?: Hex;
|
|
1114
1114
|
}
|
|
1115
1115
|
/**
|
|
1116
1116
|
* T008: EIP-2612 Permit type definition
|