@zoralabs/comments-contracts 0.0.1 → 0.0.2-COMMENTS.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.
Files changed (104) hide show
  1. package/.turbo/turbo-build.log +48 -30
  2. package/CHANGELOG.md +8 -0
  3. package/README.md +10 -39
  4. package/abis/AddDelegateCommenterRole.json +22 -0
  5. package/abis/CallerAndCommenter.json +62 -0
  6. package/abis/CallerAndCommenterImpl.json +1218 -0
  7. package/abis/CallerAndCommenterMintAndCommentTest.json +771 -0
  8. package/abis/CallerAndCommenterSwapAndCommentTest.json +844 -0
  9. package/abis/CallerAndCommenterTestBase.json +577 -0
  10. package/abis/CommentsImpl.json +189 -59
  11. package/abis/CommentsImplConstants.json +106 -0
  12. package/abis/CommentsPermitTest.json +26 -6
  13. package/abis/CommentsTest.json +58 -10
  14. package/abis/Comments_mintAndCommentTest.json +11 -4
  15. package/abis/Comments_smartWallet.json +711 -0
  16. package/abis/DeployCallerAndCommenterImpl.json +22 -0
  17. package/abis/EIP712Upgradeable.json +74 -0
  18. package/abis/EIP712UpgradeableWithChainId.json +49 -0
  19. package/abis/ERC20.json +310 -0
  20. package/abis/ICallerAndCommenter.json +797 -0
  21. package/abis/IComments.json +629 -9
  22. package/abis/IERC20.json +39 -42
  23. package/abis/IERC20Metadata.json +224 -0
  24. package/abis/IMultiOwnable.json +21 -0
  25. package/abis/IProtocolRewards.json +19 -0
  26. package/abis/ISecondarySwap.json +45 -0
  27. package/abis/IZoraCreator1155.json +51 -0
  28. package/abis/IZoraTimedSaleStrategy.json +91 -0
  29. package/abis/Mock1155.json +75 -1
  30. package/abis/Mock1155NoCreatorRewardRecipient.json +605 -0
  31. package/abis/Mock1155NoOwner.json +566 -0
  32. package/abis/{MockMinter.json → MockDelegateCommenter.json} +12 -2
  33. package/abis/MockERC20z.json +315 -0
  34. package/abis/MockMultiOwnable.json +212 -0
  35. package/abis/MockSecondarySwap.json +95 -0
  36. package/abis/MockZoraTimedSale.json +139 -0
  37. package/abis/Ownable2StepUpgradeable.json +138 -0
  38. package/abis/UnorderedNoncesUpgradeable.json +4 -4
  39. package/addresses/10.json +9 -0
  40. package/addresses/11155111.json +9 -0
  41. package/addresses/11155420.json +9 -0
  42. package/addresses/42161.json +9 -0
  43. package/addresses/7777777.json +9 -0
  44. package/addresses/8453.json +9 -0
  45. package/addresses/84532.json +9 -0
  46. package/addresses/999999999.json +7 -2
  47. package/deterministicConfig/callerAndCommenter.json +8 -0
  48. package/deterministicConfig/comments.json +2 -2
  49. package/dist/index.cjs +724 -35
  50. package/dist/index.cjs.map +1 -1
  51. package/dist/index.js +723 -35
  52. package/dist/index.js.map +1 -1
  53. package/dist/types.d.ts +1 -1
  54. package/dist/types.d.ts.map +1 -1
  55. package/dist/wagmiGenerated.d.ts +1102 -57
  56. package/dist/wagmiGenerated.d.ts.map +1 -1
  57. package/package/types.ts +4 -1
  58. package/package/wagmiGenerated.ts +728 -32
  59. package/package.json +11 -10
  60. package/script/AddDelegateCommenterRole.s.sol +24 -0
  61. package/script/CommentsDeployerBase.sol +101 -19
  62. package/script/Deploy.s.sol +2 -44
  63. package/script/DeployCallerAndCommenterImpl.s.sol +27 -0
  64. package/script/DeployImpl.s.sol +1 -0
  65. package/script/DeployNonDeterministic.s.sol +22 -13
  66. package/script/GenerateDeterministicParams.s.sol +32 -4
  67. package/scripts/generateCommentsTestData.ts +170 -79
  68. package/src/CommentsImpl.sol +267 -134
  69. package/src/CommentsImplConstants.sol +44 -0
  70. package/src/interfaces/ICallerAndCommenter.sol +215 -0
  71. package/src/interfaces/IComments.sol +189 -42
  72. package/src/interfaces/IMultiOwnable.sol +10 -0
  73. package/src/interfaces/ISecondarySwap.sol +40 -0
  74. package/src/interfaces/IZoraCreator1155.sol +6 -1
  75. package/src/interfaces/IZoraCreator1155TypesV1.sol +46 -0
  76. package/src/interfaces/IZoraTimedSaleStrategy.sol +25 -0
  77. package/src/proxy/CallerAndCommenter.sol +43 -0
  78. package/src/utils/CallerAndCommenterImpl.sol +376 -0
  79. package/src/utils/EIP712UpgradeableWithChainId.sol +12 -23
  80. package/src/version/ContractVersionBase.sol +1 -1
  81. package/test/CallerAndCommenterTestBase.sol +77 -0
  82. package/test/CallerAndCommenter_mintAndComment.t copy.sol +214 -0
  83. package/test/CallerAndCommenter_swapAndComment.t.sol +523 -0
  84. package/test/Comments.t.sol +166 -29
  85. package/test/CommentsTestBase.sol +12 -20
  86. package/test/Comments_delegateComment.t.sol +129 -0
  87. package/test/Comments_permit.t.sol +131 -44
  88. package/test/Comments_smartWallet.t.sol +152 -0
  89. package/test/mocks/Mock1155.sol +12 -1
  90. package/test/mocks/Mock1155NoCreatorRewardRecipient.sol +65 -0
  91. package/test/mocks/Mock1155NoOwner.sol +53 -0
  92. package/test/mocks/MockDelegateCommenter.sol +36 -0
  93. package/test/mocks/MockIZoraCreator1155.sol +16 -0
  94. package/test/mocks/MockSecondarySwap.sol +30 -0
  95. package/test/mocks/MockZoraTimedSale.sol +38 -0
  96. package/wagmi.config.ts +3 -1
  97. package/scripts/backfillComments.ts +0 -176
  98. package/scripts/queries.ts +0 -73
  99. package/scripts/queryAndSaveComments.ts +0 -48
  100. package/scripts/queryQuantityOfComments.ts +0 -53
  101. package/scripts/writeComments.ts +0 -198
  102. package/src/deployments/CommentsDeployment.sol +0 -14
  103. package/test/Comments_mintAndComment.t.sol +0 -101
  104. package/test/mocks/MockMinter.sol +0 -29
@@ -0,0 +1,139 @@
1
+ [
2
+ {
3
+ "type": "function",
4
+ "name": "collectionForErc20z",
5
+ "inputs": [
6
+ {
7
+ "name": "",
8
+ "type": "address",
9
+ "internalType": "address"
10
+ }
11
+ ],
12
+ "outputs": [
13
+ {
14
+ "name": "collection",
15
+ "type": "address",
16
+ "internalType": "address"
17
+ },
18
+ {
19
+ "name": "tokenId",
20
+ "type": "uint256",
21
+ "internalType": "uint256"
22
+ }
23
+ ],
24
+ "stateMutability": "view"
25
+ },
26
+ {
27
+ "type": "function",
28
+ "name": "mint",
29
+ "inputs": [
30
+ {
31
+ "name": "mintTo",
32
+ "type": "address",
33
+ "internalType": "address"
34
+ },
35
+ {
36
+ "name": "quantity",
37
+ "type": "uint256",
38
+ "internalType": "uint256"
39
+ },
40
+ {
41
+ "name": "collection",
42
+ "type": "address",
43
+ "internalType": "address"
44
+ },
45
+ {
46
+ "name": "tokenId",
47
+ "type": "uint256",
48
+ "internalType": "uint256"
49
+ },
50
+ {
51
+ "name": "",
52
+ "type": "address",
53
+ "internalType": "address"
54
+ },
55
+ {
56
+ "name": "",
57
+ "type": "string",
58
+ "internalType": "string"
59
+ }
60
+ ],
61
+ "outputs": [],
62
+ "stateMutability": "payable"
63
+ },
64
+ {
65
+ "type": "function",
66
+ "name": "sale",
67
+ "inputs": [
68
+ {
69
+ "name": "collection",
70
+ "type": "address",
71
+ "internalType": "address"
72
+ },
73
+ {
74
+ "name": "tokenId",
75
+ "type": "uint256",
76
+ "internalType": "uint256"
77
+ }
78
+ ],
79
+ "outputs": [
80
+ {
81
+ "name": "_sale",
82
+ "type": "tuple",
83
+ "internalType": "struct IZoraTimedSaleStrategy.SaleStorage",
84
+ "components": [
85
+ {
86
+ "name": "erc20zAddress",
87
+ "type": "address",
88
+ "internalType": "address payable"
89
+ },
90
+ {
91
+ "name": "saleStart",
92
+ "type": "uint64",
93
+ "internalType": "uint64"
94
+ },
95
+ {
96
+ "name": "poolAddress",
97
+ "type": "address",
98
+ "internalType": "address"
99
+ },
100
+ {
101
+ "name": "saleEnd",
102
+ "type": "uint64",
103
+ "internalType": "uint64"
104
+ },
105
+ {
106
+ "name": "secondaryActivated",
107
+ "type": "bool",
108
+ "internalType": "bool"
109
+ }
110
+ ]
111
+ }
112
+ ],
113
+ "stateMutability": "view"
114
+ },
115
+ {
116
+ "type": "function",
117
+ "name": "setSale",
118
+ "inputs": [
119
+ {
120
+ "name": "collection",
121
+ "type": "address",
122
+ "internalType": "address"
123
+ },
124
+ {
125
+ "name": "tokenId",
126
+ "type": "uint256",
127
+ "internalType": "uint256"
128
+ }
129
+ ],
130
+ "outputs": [
131
+ {
132
+ "name": "erc20z",
133
+ "type": "address",
134
+ "internalType": "address"
135
+ }
136
+ ],
137
+ "stateMutability": "nonpayable"
138
+ }
139
+ ]
@@ -0,0 +1,138 @@
1
+ [
2
+ {
3
+ "type": "function",
4
+ "name": "acceptOwnership",
5
+ "inputs": [],
6
+ "outputs": [],
7
+ "stateMutability": "nonpayable"
8
+ },
9
+ {
10
+ "type": "function",
11
+ "name": "owner",
12
+ "inputs": [],
13
+ "outputs": [
14
+ {
15
+ "name": "",
16
+ "type": "address",
17
+ "internalType": "address"
18
+ }
19
+ ],
20
+ "stateMutability": "view"
21
+ },
22
+ {
23
+ "type": "function",
24
+ "name": "pendingOwner",
25
+ "inputs": [],
26
+ "outputs": [
27
+ {
28
+ "name": "",
29
+ "type": "address",
30
+ "internalType": "address"
31
+ }
32
+ ],
33
+ "stateMutability": "view"
34
+ },
35
+ {
36
+ "type": "function",
37
+ "name": "renounceOwnership",
38
+ "inputs": [],
39
+ "outputs": [],
40
+ "stateMutability": "nonpayable"
41
+ },
42
+ {
43
+ "type": "function",
44
+ "name": "transferOwnership",
45
+ "inputs": [
46
+ {
47
+ "name": "newOwner",
48
+ "type": "address",
49
+ "internalType": "address"
50
+ }
51
+ ],
52
+ "outputs": [],
53
+ "stateMutability": "nonpayable"
54
+ },
55
+ {
56
+ "type": "event",
57
+ "name": "Initialized",
58
+ "inputs": [
59
+ {
60
+ "name": "version",
61
+ "type": "uint64",
62
+ "indexed": false,
63
+ "internalType": "uint64"
64
+ }
65
+ ],
66
+ "anonymous": false
67
+ },
68
+ {
69
+ "type": "event",
70
+ "name": "OwnershipTransferStarted",
71
+ "inputs": [
72
+ {
73
+ "name": "previousOwner",
74
+ "type": "address",
75
+ "indexed": true,
76
+ "internalType": "address"
77
+ },
78
+ {
79
+ "name": "newOwner",
80
+ "type": "address",
81
+ "indexed": true,
82
+ "internalType": "address"
83
+ }
84
+ ],
85
+ "anonymous": false
86
+ },
87
+ {
88
+ "type": "event",
89
+ "name": "OwnershipTransferred",
90
+ "inputs": [
91
+ {
92
+ "name": "previousOwner",
93
+ "type": "address",
94
+ "indexed": true,
95
+ "internalType": "address"
96
+ },
97
+ {
98
+ "name": "newOwner",
99
+ "type": "address",
100
+ "indexed": true,
101
+ "internalType": "address"
102
+ }
103
+ ],
104
+ "anonymous": false
105
+ },
106
+ {
107
+ "type": "error",
108
+ "name": "InvalidInitialization",
109
+ "inputs": []
110
+ },
111
+ {
112
+ "type": "error",
113
+ "name": "NotInitializing",
114
+ "inputs": []
115
+ },
116
+ {
117
+ "type": "error",
118
+ "name": "OwnableInvalidOwner",
119
+ "inputs": [
120
+ {
121
+ "name": "owner",
122
+ "type": "address",
123
+ "internalType": "address"
124
+ }
125
+ ]
126
+ },
127
+ {
128
+ "type": "error",
129
+ "name": "OwnableUnauthorizedAccount",
130
+ "inputs": [
131
+ {
132
+ "name": "account",
133
+ "type": "address",
134
+ "internalType": "address"
135
+ }
136
+ ]
137
+ }
138
+ ]
@@ -10,8 +10,8 @@
10
10
  },
11
11
  {
12
12
  "name": "nonce",
13
- "type": "uint256",
14
- "internalType": "uint256"
13
+ "type": "bytes32",
14
+ "internalType": "bytes32"
15
15
  }
16
16
  ],
17
17
  "outputs": [
@@ -34,8 +34,8 @@
34
34
  },
35
35
  {
36
36
  "name": "currentNonce",
37
- "type": "uint256",
38
- "internalType": "uint256"
37
+ "type": "bytes32",
38
+ "internalType": "bytes32"
39
39
  }
40
40
  ]
41
41
  }
@@ -0,0 +1,9 @@
1
+ {
2
+ "CALLER_AND_COMMENTER": "0x77777775C5074b74540d9cC63Dd840A8c692B4B5",
3
+ "CALLER_AND_COMMENTER_IMPL": "0x91509707F397e357DCe975399Fc98bB58081Ad63",
4
+ "CALLER_AND_COMMENTER_VERSION": "",
5
+ "COMMENTS": "0x7777777C2B3132e03a65721a41745C07170a5877",
6
+ "COMMENTS_BLOCK_NUMBER": 126971499,
7
+ "COMMENTS_IMPL": "0xA880EA1095dFcafa4cBe1C0EFa5e7b861A6634b6",
8
+ "COMMENTS_IMPL_BLOCK_NUMBER": 126971455
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "CALLER_AND_COMMENTER": "0x77777775C5074b74540d9cC63Dd840A8c692B4B5",
3
+ "CALLER_AND_COMMENTER_IMPL": "0x35ca784918bf11692708c1D530691704AAcEA95E",
4
+ "CALLER_AND_COMMENTER_VERSION": "",
5
+ "COMMENTS": "0x7777777C2B3132e03a65721a41745C07170a5877",
6
+ "COMMENTS_BLOCK_NUMBER": 6977641,
7
+ "COMMENTS_IMPL": "0xd92F69d5581BF9536c77550aeA1d74DDaE88B5B7",
8
+ "COMMENTS_IMPL_BLOCK_NUMBER": 6977641
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "CALLER_AND_COMMENTER": "0x77777775C5074b74540d9cC63Dd840A8c692B4B5",
3
+ "CALLER_AND_COMMENTER_IMPL": "0x46E772210f01647FA573b915bE287Ff9b65AD4B0",
4
+ "CALLER_AND_COMMENTER_VERSION": "",
5
+ "COMMENTS": "0x7777777C2B3132e03a65721a41745C07170a5877",
6
+ "COMMENTS_BLOCK_NUMBER": 19251239,
7
+ "COMMENTS_IMPL": "0xa2a7D8bcE0bf58D177137ECB94f3Fa6aA06aA7A1.",
8
+ "COMMENTS_IMPL_BLOCK_NUMBER": 19251239
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "CALLER_AND_COMMENTER": "0x77777775C5074b74540d9cC63Dd840A8c692B4B5",
3
+ "CALLER_AND_COMMENTER_IMPL": "0xD1F822051f3BbaDc79b7F7B4cE160525976dcD94",
4
+ "CALLER_AND_COMMENTER_VERSION": "",
5
+ "COMMENTS": "0x7777777C2B3132e03a65721a41745C07170a5877",
6
+ "COMMENTS_BLOCK_NUMBER": 266241993,
7
+ "COMMENTS_IMPL": "0x073ef87C54c192c21ddEf881fE18064b6161fAC9",
8
+ "COMMENTS_IMPL_BLOCK_NUMBER": 266239297
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "CALLER_AND_COMMENTER": "0x77777775C5074b74540d9cC63Dd840A8c692B4B5",
3
+ "CALLER_AND_COMMENTER_IMPL": "0xed0a281fdC555e061005D2B4B4eEc73B802b7b68",
4
+ "CALLER_AND_COMMENTER_VERSION": "",
5
+ "COMMENTS": "0x7777777C2B3132e03a65721a41745C07170a5877",
6
+ "COMMENTS_BLOCK_NUMBER": 21297164,
7
+ "COMMENTS_IMPL": "0xFD2FDCE0d316410d3F57459DF33f88626EDF5Bc0",
8
+ "COMMENTS_IMPL_BLOCK_NUMBER": 21296491
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "CALLER_AND_COMMENTER": "0x77777775C5074b74540d9cC63Dd840A8c692B4B5",
3
+ "CALLER_AND_COMMENTER_IMPL": "0x7d42Ee84D377D37cfc9EbF10C3aEe56da326642d",
4
+ "CALLER_AND_COMMENTER_VERSION": "",
5
+ "COMMENTS": "0x7777777C2B3132e03a65721a41745C07170a5877",
6
+ "COMMENTS_BLOCK_NUMBER": 21374808,
7
+ "COMMENTS_IMPL": "0x8f5B2dd6160D96B48a35F0619BC32b4b997cA37F",
8
+ "COMMENTS_IMPL_BLOCK_NUMBER": 21374465
9
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "CALLER_AND_COMMENTER": "0x77777775C5074b74540d9cC63Dd840A8c692B4B5",
3
+ "CALLER_AND_COMMENTER_IMPL": "0x2B8eF6E51717Af2C1AadFbC611D3852563B76E8f",
4
+ "CALLER_AND_COMMENTER_VERSION": "",
5
+ "COMMENTS": "0x7777777C2B3132e03a65721a41745C07170a5877",
6
+ "COMMENTS_BLOCK_NUMBER": 17267821,
7
+ "COMMENTS_IMPL": "0x05177c381CaC95d8DC872b14218f67C9fB903966",
8
+ "COMMENTS_IMPL_BLOCK_NUMBER": 17267821
9
+ }
@@ -1,4 +1,9 @@
1
1
  {
2
- "COMMENTS": "0x7777777bE14a1F7Fd6896B5FBDa5ceD5FC6e501a",
3
- "COMMENTS_IMPL": "0x56798E9B17ce2996C118E6601ee53f4541653f88"
2
+ "CALLER_AND_COMMENTER": "0x77777775C5074b74540d9cC63Dd840A8c692B4B5",
3
+ "CALLER_AND_COMMENTER_IMPL": "0xAca467FCcb8b0550070E1fD3B58B7a5338889e7F",
4
+ "CALLER_AND_COMMENTER_VERSION": "",
5
+ "COMMENTS": "0x7777777C2B3132e03a65721a41745C07170a5877",
6
+ "COMMENTS_BLOCK_NUMBER": 15602117,
7
+ "COMMENTS_IMPL": "0x25352CAC829a03aA5e76c4f997ACF8Ce73A2bDA3",
8
+ "COMMENTS_IMPL_BLOCK_NUMBER": 16123316
4
9
  }
@@ -0,0 +1,8 @@
1
+ {
2
+ "constructorArgs": "0x000000000000000000000000064de410ce7aba82396332c5837b4c6b96108283",
3
+ "contractName": "CallerAndCommenter",
4
+ "creationCode": "0x60a060405234610197576102b56020813803918261001c8161019c565b93849283398101031261019757516001600160a01b038116808203610197576040516001600160401b0392906020810190848211818310176101815781604052600093848252833b15610169577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b031916821790557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b8580a25190811561015f5783918291845af4903d15610151573d93841161013d57610103936100f3601f8201601f191660200161019c565b908152809360203d92013e6101c1565b505b7f7253512c9b5a3fa197872db4536e3869c6b1f97a9ed6d5caee0b6dbe846239e7608052604051609090816102258239608051815050f35b634e487b7160e01b83526041600452602483fd5b6101039350606092506101c1565b5050505050610105565b60249060405190634c9c8ce360e01b82526004820152fd5b634e487b7160e01b600052604160045260246000fd5b600080fd5b6040519190601f01601f191682016001600160401b0381118382101761018157604052565b906101e857508051156101d657805190602001fd5b604051630a12f52160e11b8152600490fd5b8151158061021b575b6101f9575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b156101f156fe608060405273ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54166000808092368280378136915af43d82803e156056573d90f35b3d90fdfea264697066735822122094618cc69b365c4602a3a1eb189c1b0420aa6483dc0360a2107f8bba559c386664736f6c63430008170033000000000000000000000000064de410ce7aba82396332c5837b4c6b96108283",
5
+ "deployedAddress": "0x77777775C5074b74540d9cC63Dd840A8c692B4B5",
6
+ "deploymentCaller": "0x680E26B472d8cae8148ee21FCAd6A69D73766436",
7
+ "salt": "0x680e26b472d8cae8148ee21fcad6a69d73766436bcbd8be1b3fdfd1c95dfccbb"
8
+ }
@@ -2,7 +2,7 @@
2
2
  "constructorArgs": "0x000000000000000000000000064de410ce7aba82396332c5837b4c6b96108283",
3
3
  "contractName": "Comments",
4
4
  "creationCode": "0x60a060405234610197576102b56020813803918261001c8161019c565b93849283398101031261019757516001600160a01b038116808203610197576040516001600160401b0392906020810190848211818310176101815781604052600093848252833b15610169577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b031916821790557fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b8580a25190811561015f5783918291845af4903d15610151573d93841161013d57610103936100f3601f8201601f191660200161019c565b908152809360203d92013e6101c1565b505b7f17973b9f7bb6d8486c56ed209226d4a5eb78ba245456ff1a1be6a2e3edba90a1608052604051609090816102258239608051815050f35b634e487b7160e01b83526041600452602483fd5b6101039350606092506101c1565b5050505050610105565b60249060405190634c9c8ce360e01b82526004820152fd5b634e487b7160e01b600052604160045260246000fd5b600080fd5b6040519190601f01601f191682016001600160401b0381118382101761018157604052565b906101e857508051156101d657805190602001fd5b604051630a12f52160e11b8152600490fd5b8151158061021b575b6101f9575090565b604051639996b31560e01b81526001600160a01b039091166004820152602490fd5b50803b156101f156fe608060405273ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54166000808092368280378136915af43d82803e156056573d90f35b3d90fdfea26469706673582212204bb00e6abd0a4bf00d571acc031008ab25c1d46bbe1f1dc947badf95fb540ab764736f6c63430008170033000000000000000000000000064de410ce7aba82396332c5837b4c6b96108283",
5
- "deployedAddress": "0x7777777bE14a1F7Fd6896B5FBDa5ceD5FC6e501a",
5
+ "deployedAddress": "0x7777777C2B3132e03a65721a41745C07170a5877",
6
6
  "deploymentCaller": "0x680E26B472d8cae8148ee21FCAd6A69D73766436",
7
- "salt": "0x680e26b472d8cae8148ee21fcad6a69d737664367f2f980be38d9fec01029e8f"
7
+ "salt": "0x680e26b472d8cae8148ee21fcad6a69d73766436cef59be84b94e84ff94848c2"
8
8
  }