@safe-global/protocol-kit 4.0.1 → 4.1.0-alpha.0
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/dist/src/Safe.d.ts +5 -5
- package/dist/src/Safe.js +92 -14
- package/dist/src/Safe.js.map +1 -1
- package/dist/src/SafeFactory.js +1 -1
- package/dist/src/SafeFactory.js.map +1 -1
- package/dist/src/SafeProvider.d.ts +9 -3
- package/dist/src/SafeProvider.js +53 -6
- package/dist/src/SafeProvider.js.map +1 -1
- package/dist/src/contracts/SafeWebAuthnSignerFactory/SafeWebAuthnSignerFactoryBaseContract.d.ts +37 -0
- package/dist/src/contracts/SafeWebAuthnSignerFactory/SafeWebAuthnSignerFactoryBaseContract.js +38 -0
- package/dist/src/contracts/SafeWebAuthnSignerFactory/SafeWebAuthnSignerFactoryBaseContract.js.map +1 -0
- package/dist/src/contracts/SafeWebAuthnSignerFactory/v1.4.1/SafeWebAuthnSignerFactoryContract_v1_4_1.d.ts +37 -0
- package/dist/src/contracts/SafeWebAuthnSignerFactory/v1.4.1/SafeWebAuthnSignerFactoryContract_v1_4_1.js +52 -0
- package/dist/src/contracts/SafeWebAuthnSignerFactory/v1.4.1/SafeWebAuthnSignerFactoryContract_v1_4_1.js.map +1 -0
- package/dist/src/contracts/config.d.ts +1 -0
- package/dist/src/contracts/config.js +31 -6
- package/dist/src/contracts/config.js.map +1 -1
- package/dist/src/contracts/contractInstances.d.ts +2 -0
- package/dist/src/contracts/contractInstances.js +19 -4
- package/dist/src/contracts/contractInstances.js.map +1 -1
- package/dist/src/contracts/safeDeploymentContracts.d.ts +2 -1
- package/dist/src/contracts/safeDeploymentContracts.js +14 -1
- package/dist/src/contracts/safeDeploymentContracts.js.map +1 -1
- package/dist/src/contracts/utils.js +2 -1
- package/dist/src/contracts/utils.js.map +1 -1
- package/dist/src/index.d.ts +3 -2
- package/dist/src/index.js +4 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/types/contracts.d.ts +6 -0
- package/dist/src/types/index.d.ts +1 -0
- package/dist/src/types/index.js +1 -0
- package/dist/src/types/index.js.map +1 -1
- package/dist/src/types/passkeys.d.ts +8 -0
- package/dist/src/types/passkeys.js +3 -0
- package/dist/src/types/passkeys.js.map +1 -0
- package/dist/src/types/safeProvider.d.ts +4 -2
- package/dist/src/types/transactions.d.ts +7 -0
- package/dist/src/utils/passkeys/PasskeySigner.d.ts +47 -0
- package/dist/src/utils/passkeys/PasskeySigner.js +168 -0
- package/dist/src/utils/passkeys/PasskeySigner.js.map +1 -0
- package/dist/src/utils/signatures/utils.js +3 -1
- package/dist/src/utils/signatures/utils.js.map +1 -1
- package/dist/src/utils/transactions/utils.d.ts +3 -1
- package/dist/src/utils/transactions/utils.js +9 -1
- package/dist/src/utils/transactions/utils.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@safe-global/protocol-kit",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.1.0-alpha.0",
|
|
4
4
|
"description": "SDK that facilitates the interaction with Safe Smart Accounts",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"@nomicfoundation/hardhat-ethers": "^3.0.5",
|
|
54
54
|
"@openzeppelin/contracts": "^2.5.1",
|
|
55
55
|
"@safe-global/safe-contracts-v1.4.1": "npm:@safe-global/safe-contracts@1.4.1",
|
|
56
|
+
"@safe-global/safe-passkey": "0.2.0-alpha.1",
|
|
56
57
|
"@types/chai": "^4.3.16",
|
|
57
58
|
"@types/chai-as-promised": "^7.1.8",
|
|
58
59
|
"@types/mocha": "^10.0.6",
|
|
@@ -61,8 +62,8 @@
|
|
|
61
62
|
"chai": "^4.3.10",
|
|
62
63
|
"chai-as-promised": "^7.1.1",
|
|
63
64
|
"dotenv": "^16.4.5",
|
|
64
|
-
"hardhat": "
|
|
65
|
-
"hardhat-deploy": "^0.
|
|
65
|
+
"hardhat": "2.20.1",
|
|
66
|
+
"hardhat-deploy": "^0.12.4",
|
|
66
67
|
"hardhat-deploy-ethers": "^0.4.2",
|
|
67
68
|
"mocha": "^10.2.0",
|
|
68
69
|
"nyc": "^15.1.0",
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
},
|
|
74
75
|
"dependencies": {
|
|
75
76
|
"@noble/hashes": "^1.3.3",
|
|
76
|
-
"@safe-global/safe-core-sdk-types": "^5.0.
|
|
77
|
+
"@safe-global/safe-core-sdk-types": "^5.1.0-alpha.0",
|
|
77
78
|
"@safe-global/safe-deployments": "^1.36.0",
|
|
78
79
|
"abitype": "^1.0.2",
|
|
79
80
|
"ethereumjs-util": "^7.1.5",
|