@sequence0/sdk 2.2.2 → 2.2.3
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/core/client.js +4 -4
- package/dist/erc4337/types.js +2 -2
- package/dist/utils/eip712.js +2 -2
- package/dist/utils/fee.d.ts +2 -2
- package/dist/utils/fee.js +2 -2
- package/package.json +1 -1
package/dist/core/client.js
CHANGED
|
@@ -68,13 +68,13 @@ const SEQUENCE_RPC = {
|
|
|
68
68
|
};
|
|
69
69
|
/** AgentRegistry contract addresses */
|
|
70
70
|
const REGISTRY_ADDRESSES = {
|
|
71
|
-
testnet: '
|
|
72
|
-
mainnet: '
|
|
71
|
+
testnet: '0x43D8B80eC772eAB016E10e46a856d3076338a6aF',
|
|
72
|
+
mainnet: '0xD1945Bd9F8AF2D9cF3a70952D64B64880e940faA',
|
|
73
73
|
};
|
|
74
74
|
/** FeeCollector contract addresses */
|
|
75
75
|
const FEE_COLLECTOR_ADDRESSES = {
|
|
76
|
-
testnet: '
|
|
77
|
-
mainnet: '
|
|
76
|
+
testnet: '0x46Ce951c4A51F5307E28d5535e1e5F01568DDe52',
|
|
77
|
+
mainnet: '0x7c6337E4D530A52a560b9B8082Dc685cE3E19dad',
|
|
78
78
|
};
|
|
79
79
|
/** ProgramRegistry contract selectors (SIGNET: Programmable Signing) */
|
|
80
80
|
const PROGRAM_REGISTRY_DEPLOY_SELECTOR = '0x2e1a7d4d'; // deployProgram(bytes,string,uint256,uint256)
|
package/dist/erc4337/types.js
CHANGED
|
@@ -18,8 +18,8 @@ exports.ENTRYPOINT_V07_ADDRESS = '0x0000000071727De22E5E9d8BAf0edAc6f37da032';
|
|
|
18
18
|
* These are the factory contracts that deploy Sequence0 AA wallets.
|
|
19
19
|
*/
|
|
20
20
|
exports.FACTORY_ADDRESSES = {
|
|
21
|
-
mainnet: '
|
|
22
|
-
testnet: '
|
|
21
|
+
mainnet: '0xF6106c3E35c4A9AA15Fb0c5213cB94299a07047F',
|
|
22
|
+
testnet: '0x94f67Dd2EB4c89eF98760388fc8c59E77ea16e44',
|
|
23
23
|
};
|
|
24
24
|
/**
|
|
25
25
|
* Default bundler URLs per chain.
|
package/dist/utils/eip712.js
CHANGED
|
@@ -29,8 +29,8 @@ function abiEncode(slots) {
|
|
|
29
29
|
}
|
|
30
30
|
/** WalletFactory contract addresses (EIP-712 verifyingContract) */
|
|
31
31
|
exports.WALLET_FACTORY_ADDRESSES = {
|
|
32
|
-
testnet: '
|
|
33
|
-
mainnet: '
|
|
32
|
+
testnet: '0x94f67Dd2EB4c89eF98760388fc8c59E77ea16e44',
|
|
33
|
+
mainnet: '0xF6106c3E35c4A9AA15Fb0c5213cB94299a07047F',
|
|
34
34
|
};
|
|
35
35
|
/** Sequence0 chain IDs (EIP-712 chainId) */
|
|
36
36
|
exports.SEQUENCE0_CHAIN_IDS = {
|
package/dist/utils/fee.d.ts
CHANGED
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
* ```typescript
|
|
21
21
|
* const fee = new FeeManager({
|
|
22
22
|
* rpcUrl: 'https://rpc.sequence0.network',
|
|
23
|
-
* feeCollectorAddress: '
|
|
24
|
-
* registryAddress: '
|
|
23
|
+
* feeCollectorAddress: '0x7c6337E4D530A52a560b9B8082Dc685cE3E19dad',
|
|
24
|
+
* registryAddress: '0xD1945Bd9F8AF2D9cF3a70952D64B64880e940faA',
|
|
25
25
|
* });
|
|
26
26
|
*
|
|
27
27
|
* // Get the current per-signature fee
|
package/dist/utils/fee.js
CHANGED
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
* ```typescript
|
|
22
22
|
* const fee = new FeeManager({
|
|
23
23
|
* rpcUrl: 'https://rpc.sequence0.network',
|
|
24
|
-
* feeCollectorAddress: '
|
|
25
|
-
* registryAddress: '
|
|
24
|
+
* feeCollectorAddress: '0x7c6337E4D530A52a560b9B8082Dc685cE3E19dad',
|
|
25
|
+
* registryAddress: '0xD1945Bd9F8AF2D9cF3a70952D64B64880e940faA',
|
|
26
26
|
* });
|
|
27
27
|
*
|
|
28
28
|
* // Get the current per-signature fee
|