@zoralabs/coins 2.2.1 → 2.3.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/.turbo/turbo-build$colon$js.log +125 -106
- package/CHANGELOG.md +50 -5
- package/README.md +5 -0
- package/abis/AddressConstants.json +7 -0
- package/abis/BaseCoin.json +0 -5
- package/abis/BaseTest.json +62 -0
- package/abis/BuySupplyWithV4SwapHook.json +429 -0
- package/abis/ContentCoin.json +0 -5
- package/abis/CreatorCoin.json +0 -5
- package/abis/FeeEstimatorHook.json +94 -1
- package/abis/IUniswapV4Router04.json +484 -0
- package/abis/IUpgradeableDestinationV4HookWithUpdateableFee.json +95 -0
- package/abis/IZoraFactory.json +69 -0
- package/abis/MockAirlock.json +39 -0
- package/abis/SimpleERC20.json +326 -0
- package/abis/ZoraFactoryImpl.json +69 -0
- package/abis/ZoraV4CoinHook.json +94 -1
- package/addresses/8453.json +8 -10
- package/audits/report-cantinacode-zora-0827.pdf +3498 -4
- package/audits/report-cantinacode-zora-1021.pdf +0 -0
- package/dist/index.cjs +161 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +160 -21
- package/dist/index.js.map +1 -1
- package/dist/wagmiGenerated.d.ts +259 -40
- package/dist/wagmiGenerated.d.ts.map +1 -1
- package/foundry.toml +3 -3
- package/package/wagmiGenerated.ts +160 -21
- package/package.json +1 -1
- package/script/DeployPostDeploymentHooks.s.sol +1 -3
- package/script/TestBackingCoinSwap.s.sol +0 -2
- package/script/TestV4Swap.s.sol +0 -2
- package/src/BaseCoin.sol +4 -12
- package/src/ContentCoin.sol +3 -4
- package/src/CreatorCoin.sol +8 -10
- package/src/ZoraFactoryImpl.sol +115 -83
- package/src/deployment/CoinsDeployerBase.sol +9 -8
- package/src/hook-registry/ZoraHookRegistry.sol +4 -0
- package/src/hooks/ZoraV4CoinHook.sol +66 -9
- package/src/hooks/deployment/BuySupplyWithV4SwapHook.sol +310 -0
- package/src/interfaces/IUpgradeableV4Hook.sol +18 -0
- package/src/interfaces/IZoraFactory.sol +21 -2
- package/src/libs/CoinConstants.sol +51 -8
- package/src/libs/CoinDopplerMultiCurve.sol +11 -11
- package/src/libs/CoinRewardsV4.sol +26 -33
- package/src/libs/CoinSetup.sol +2 -9
- package/src/libs/DopplerMath.sol +2 -2
- package/src/libs/V4Liquidity.sol +79 -15
- package/src/utils/AutoSwapper.sol +1 -1
- package/src/version/ContractVersionBase.sol +1 -1
- package/test/BuySupplyWithV4SwapHook.t.sol +509 -0
- package/test/Coin.t.sol +26 -14
- package/test/CoinRewardsV4.t.sol +33 -0
- package/test/CoinUniV4.t.sol +3 -5
- package/test/ContentCoinRewards.t.sol +44 -3
- package/test/CreatorCoin.t.sol +54 -33
- package/test/CreatorCoinRewards.t.sol +1 -3
- package/test/DeploymentHooks.t.sol +54 -2
- package/test/Factory.t.sol +3 -3
- package/test/LiquidityMigration.t.sol +145 -7
- package/test/MultiOwnable.t.sol +4 -4
- package/test/Upgrades.t.sol +26 -17
- package/test/V4Liquidity.t.sol +178 -0
- package/test/ZoraHookRegistry.t.sol +19 -9
- package/test/mocks/MockAirlock.sol +22 -0
- package/test/mocks/SimpleERC20.sol +8 -0
- package/test/utils/BaseTest.sol +155 -3
- package/test/utils/RewardTestHelpers.sol +4 -4
- package/test/utils/hookmate/README.md +50 -0
- package/test/utils/hookmate/artifacts/DeployHelper.sol +20 -0
- package/test/utils/hookmate/artifacts/Permit2.sol +16 -0
- package/test/utils/hookmate/artifacts/UniversalRouter.sol +29 -0
- package/test/utils/hookmate/artifacts/V4PoolManager.sol +17 -0
- package/test/utils/hookmate/artifacts/V4PositionManager.sol +23 -0
- package/test/utils/hookmate/artifacts/V4Quoter.sol +17 -0
- package/test/utils/hookmate/artifacts/V4Router.sol +18 -0
- package/test/utils/hookmate/constants/AddressConstants.sol +193 -0
- package/test/utils/hookmate/interfaces/router/IUniswapV4Router04.sol +173 -0
- package/test/utils/hookmate/interfaces/router/PathKey.sol +34 -0
- package/test/utils/hookmate/test/utils/SwapFeeEventAsserter.sol +24 -0
- package/wagmi.config.ts +1 -1
- package/abis/CoinConstants.json +0 -54
- package/abis/CoinRewardsV4.json +0 -67
- package/src/libs/CreatorCoinConstants.sol +0 -15
- package/src/libs/MarketConstants.sol +0 -23
- package/src/utils/uniswap/BytesLib.sol +0 -35
- package/src/utils/uniswap/Path.sol +0 -31
- /package/abis/{VmContractHelper227.json → VmContractHelper239.json} +0 -0
|
@@ -1,18 +1,24 @@
|
|
|
1
1
|
|
|
2
|
-
> @zoralabs/coins@2.
|
|
2
|
+
> @zoralabs/coins@2.3.1 build:js /home/runner/work/zora-protocol-private/zora-protocol-private/packages/coins
|
|
3
3
|
> pnpm run wagmi:generate && pnpm run copy-abis && pnpm run prettier:write && tsup
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @zoralabs/coins@2.
|
|
6
|
+
> @zoralabs/coins@2.3.1 wagmi:generate /home/runner/work/zora-protocol-private/zora-protocol-private/packages/coins
|
|
7
7
|
> pnpm run build:contracts:minimal && wagmi generate && pnpm exec rename-generated-abi-casing ./package/wagmiGenerated.ts
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
> @zoralabs/coins@2.
|
|
10
|
+
> @zoralabs/coins@2.3.1 build:contracts:minimal /home/runner/work/zora-protocol-private/zora-protocol-private/packages/coins
|
|
11
11
|
> forge build --skip test --skip script --no-metadata
|
|
12
12
|
|
|
13
|
-
Compiling
|
|
14
|
-
Solc 0.8.28 finished in
|
|
15
|
-
Compiler run successful
|
|
13
|
+
Compiling 224 files with Solc 0.8.28
|
|
14
|
+
Solc 0.8.28 finished in 97.96s
|
|
15
|
+
Compiler run successful with warnings:
|
|
16
|
+
Warning (5667): Unused function parameter. Remove or comment out the variable name to silence this warning.
|
|
17
|
+
--> test/utils/BaseTest.sol:440:36:
|
|
18
|
+
|
|
|
19
|
+
440 | function _deployHooksNonForked(address airlockAddress) internal {
|
|
20
|
+
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
21
|
+
|
|
16
22
|
[33m-[39m Validating plugins
|
|
17
23
|
[32m✔[39m Validating plugins
|
|
18
24
|
[33m-[39m Resolving contracts
|
|
@@ -26,116 +32,129 @@ Compiler run successful!
|
|
|
26
32
|
✅ Updated ./package/wagmiGenerated.ts (10 replacements)
|
|
27
33
|
✨ All files processed successfully!
|
|
28
34
|
|
|
29
|
-
> @zoralabs/coins@2.
|
|
35
|
+
> @zoralabs/coins@2.3.1 copy-abis /home/runner/work/zora-protocol-private/zora-protocol-private/packages/coins
|
|
30
36
|
> pnpm exec bundle-abis
|
|
31
37
|
|
|
32
38
|
|
|
33
|
-
> @zoralabs/coins@2.
|
|
39
|
+
> @zoralabs/coins@2.3.1 prettier:write /home/runner/work/zora-protocol-private/zora-protocol-private/packages/coins
|
|
34
40
|
> prettier --write 'src/**/*.sol' 'test/**/*.sol' 'script/**/*.sol'
|
|
35
41
|
|
|
36
|
-
src/BaseCoin.sol
|
|
37
|
-
src/ContentCoin.sol
|
|
38
|
-
src/CreatorCoin.sol
|
|
39
|
-
src/deployment/CoinsDeployerBase.sol
|
|
40
|
-
src/hook-registry/ZoraHookRegistry.sol
|
|
42
|
+
src/BaseCoin.sol 772ms (unchanged)
|
|
43
|
+
src/ContentCoin.sol 61ms (unchanged)
|
|
44
|
+
src/CreatorCoin.sol 103ms (unchanged)
|
|
45
|
+
src/deployment/CoinsDeployerBase.sol 373ms (unchanged)
|
|
46
|
+
src/hook-registry/ZoraHookRegistry.sol 156ms (unchanged)
|
|
41
47
|
src/hooks/deployment/BaseCoinDeployHook.sol 40ms (unchanged)
|
|
42
|
-
src/hooks/deployment/BuySupplyWithSwapRouterHook.sol
|
|
43
|
-
src/hooks/
|
|
44
|
-
src/hooks/
|
|
45
|
-
src/
|
|
48
|
+
src/hooks/deployment/BuySupplyWithSwapRouterHook.sol 293ms (unchanged)
|
|
49
|
+
src/hooks/deployment/BuySupplyWithV4SwapHook.sol 256ms (unchanged)
|
|
50
|
+
src/hooks/HookUpgradeGate.sol 32ms (unchanged)
|
|
51
|
+
src/hooks/ZoraV4CoinHook.sol 269ms (unchanged)
|
|
52
|
+
src/interfaces/IAirlock.sol 2ms (unchanged)
|
|
46
53
|
src/interfaces/ICoin.sol 27ms (unchanged)
|
|
47
|
-
src/interfaces/ICoinComments.sol
|
|
48
|
-
src/interfaces/ICoinDeployHook.sol
|
|
49
|
-
src/interfaces/ICoinV3.sol
|
|
54
|
+
src/interfaces/ICoinComments.sol 4ms (unchanged)
|
|
55
|
+
src/interfaces/ICoinDeployHook.sol 2ms (unchanged)
|
|
56
|
+
src/interfaces/ICoinV3.sol 5ms (unchanged)
|
|
50
57
|
src/interfaces/ICreatorCoin.sol 2ms (unchanged)
|
|
51
|
-
src/interfaces/ICreatorCoinHook.sol
|
|
52
|
-
src/interfaces/IDeployedCoinVersionLookup.sol
|
|
53
|
-
src/interfaces/IDopplerErrors.sol
|
|
54
|
-
src/interfaces/IERC7572.sol
|
|
55
|
-
src/interfaces/IHasRewardsRecipients.sol
|
|
58
|
+
src/interfaces/ICreatorCoinHook.sol 1ms (unchanged)
|
|
59
|
+
src/interfaces/IDeployedCoinVersionLookup.sol 1ms (unchanged)
|
|
60
|
+
src/interfaces/IDopplerErrors.sol 1ms (unchanged)
|
|
61
|
+
src/interfaces/IERC7572.sol 1ms (unchanged)
|
|
62
|
+
src/interfaces/IHasRewardsRecipients.sol 1ms (unchanged)
|
|
56
63
|
src/interfaces/IHooksUpgradeGate.sol 3ms (unchanged)
|
|
57
|
-
src/interfaces/IMsgSender.sol
|
|
58
|
-
src/interfaces/INonfungiblePositionManager.sol
|
|
59
|
-
src/interfaces/IPoolConfigEncoding.sol
|
|
60
|
-
src/interfaces/IProtocolRewards.sol
|
|
61
|
-
src/interfaces/ISwapPathRouter.sol
|
|
62
|
-
src/interfaces/ISwapRouter.sol
|
|
64
|
+
src/interfaces/IMsgSender.sol 1ms (unchanged)
|
|
65
|
+
src/interfaces/INonfungiblePositionManager.sol 16ms (unchanged)
|
|
66
|
+
src/interfaces/IPoolConfigEncoding.sol 2ms (unchanged)
|
|
67
|
+
src/interfaces/IProtocolRewards.sol 4ms (unchanged)
|
|
68
|
+
src/interfaces/ISwapPathRouter.sol 1ms (unchanged)
|
|
69
|
+
src/interfaces/ISwapRouter.sol 1ms (unchanged)
|
|
63
70
|
src/interfaces/IUniswapV3Factory.sol 9ms (unchanged)
|
|
64
|
-
src/interfaces/IUniswapV3Pool.sol
|
|
65
|
-
src/interfaces/IUniswapV3SwapCallback.sol
|
|
66
|
-
src/interfaces/IUpgradeableV4Hook.sol
|
|
67
|
-
src/interfaces/IWETH.sol
|
|
68
|
-
src/interfaces/IZoraFactory.sol
|
|
69
|
-
src/interfaces/IZoraHookRegistry.sol
|
|
70
|
-
src/interfaces/IZoraV4CoinHook.sol
|
|
71
|
-
src/libs/CoinCommon.sol
|
|
72
|
-
src/libs/CoinConfigurationVersions.sol
|
|
73
|
-
src/libs/CoinConstants.sol
|
|
74
|
-
src/libs/CoinDopplerMultiCurve.sol
|
|
75
|
-
src/libs/CoinRewardsV4.sol
|
|
76
|
-
src/libs/CoinSetup.sol
|
|
77
|
-
src/libs/
|
|
78
|
-
src/libs/
|
|
79
|
-
src/libs/
|
|
80
|
-
src/libs/
|
|
81
|
-
src/libs/
|
|
82
|
-
src/libs/
|
|
83
|
-
src/
|
|
84
|
-
src/libs/V4Liquidity.sol 250ms (unchanged)
|
|
85
|
-
src/proxy/ZoraFactory.sol 20ms (unchanged)
|
|
71
|
+
src/interfaces/IUniswapV3Pool.sol 7ms (unchanged)
|
|
72
|
+
src/interfaces/IUniswapV3SwapCallback.sol 4ms (unchanged)
|
|
73
|
+
src/interfaces/IUpgradeableV4Hook.sol 6ms (unchanged)
|
|
74
|
+
src/interfaces/IWETH.sol 3ms (unchanged)
|
|
75
|
+
src/interfaces/IZoraFactory.sol 12ms (unchanged)
|
|
76
|
+
src/interfaces/IZoraHookRegistry.sol 7ms (unchanged)
|
|
77
|
+
src/interfaces/IZoraV4CoinHook.sol 6ms (unchanged)
|
|
78
|
+
src/libs/CoinCommon.sol 5ms (unchanged)
|
|
79
|
+
src/libs/CoinConfigurationVersions.sol 62ms (unchanged)
|
|
80
|
+
src/libs/CoinConstants.sol 8ms (unchanged)
|
|
81
|
+
src/libs/CoinDopplerMultiCurve.sol 167ms (unchanged)
|
|
82
|
+
src/libs/CoinRewardsV4.sol 228ms (unchanged)
|
|
83
|
+
src/libs/CoinSetup.sol 50ms (unchanged)
|
|
84
|
+
src/libs/DopplerMath.sol 159ms (unchanged)
|
|
85
|
+
src/libs/HooksDeployment.sol 129ms (unchanged)
|
|
86
|
+
src/libs/PoolStateReader.sol 5ms (unchanged)
|
|
87
|
+
src/libs/UniV4SwapHelper.sol 49ms (unchanged)
|
|
88
|
+
src/libs/UniV4SwapToCurrency.sol 83ms (unchanged)
|
|
89
|
+
src/libs/V4Liquidity.sol 303ms (unchanged)
|
|
90
|
+
src/proxy/ZoraFactory.sol 9ms (unchanged)
|
|
86
91
|
src/types/LpPosition.sol 1ms (unchanged)
|
|
87
|
-
src/types/PoolConfiguration.sol
|
|
92
|
+
src/types/PoolConfiguration.sol 1ms (unchanged)
|
|
88
93
|
src/types/PoolState.sol 4ms (unchanged)
|
|
89
|
-
src/utils/AutoSwapper.sol
|
|
90
|
-
src/utils/DeployedCoinVersionLookup.sol
|
|
91
|
-
src/utils/MultiOwnable.sol
|
|
92
|
-
src/utils/uniswap/BitMath.sol
|
|
93
|
-
src/utils/uniswap/
|
|
94
|
-
src/utils/uniswap/
|
|
95
|
-
src/utils/uniswap/FixedPoint96.sol 2ms (unchanged)
|
|
94
|
+
src/utils/AutoSwapper.sol 33ms (unchanged)
|
|
95
|
+
src/utils/DeployedCoinVersionLookup.sol 7ms (unchanged)
|
|
96
|
+
src/utils/MultiOwnable.sol 72ms (unchanged)
|
|
97
|
+
src/utils/uniswap/BitMath.sol 9ms (unchanged)
|
|
98
|
+
src/utils/uniswap/CustomRevert.sol 54ms (unchanged)
|
|
99
|
+
src/utils/uniswap/FixedPoint96.sol 1ms (unchanged)
|
|
96
100
|
src/utils/uniswap/FullMath.sol 35ms (unchanged)
|
|
97
|
-
src/utils/uniswap/LiquidityAmounts.sol
|
|
98
|
-
src/utils/uniswap/
|
|
99
|
-
src/utils/uniswap/
|
|
100
|
-
src/utils/uniswap/
|
|
101
|
-
src/utils/uniswap/
|
|
102
|
-
src/utils/uniswap/UnsafeMath.sol 6ms (unchanged)
|
|
101
|
+
src/utils/uniswap/LiquidityAmounts.sol 83ms (unchanged)
|
|
102
|
+
src/utils/uniswap/SafeCast.sol 26ms (unchanged)
|
|
103
|
+
src/utils/uniswap/SqrtPriceMath.sol 115ms (unchanged)
|
|
104
|
+
src/utils/uniswap/TickMath.sol 118ms (unchanged)
|
|
105
|
+
src/utils/uniswap/UnsafeMath.sol 3ms (unchanged)
|
|
103
106
|
src/version/ContractVersionBase.sol 1ms (unchanged)
|
|
104
|
-
src/ZoraFactoryImpl.sol
|
|
105
|
-
test/AutoSwapper.t.sol
|
|
106
|
-
test/
|
|
107
|
-
test/
|
|
108
|
-
test/
|
|
109
|
-
test/
|
|
110
|
-
test/
|
|
111
|
-
test/
|
|
112
|
-
test/
|
|
113
|
-
test/
|
|
114
|
-
test/
|
|
115
|
-
test/
|
|
116
|
-
test/
|
|
117
|
-
test/
|
|
118
|
-
test/
|
|
119
|
-
test/
|
|
120
|
-
test/
|
|
121
|
-
test/
|
|
122
|
-
test/utils/
|
|
123
|
-
test/utils/
|
|
124
|
-
test/utils/
|
|
125
|
-
test/
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
107
|
+
src/ZoraFactoryImpl.sol 213ms (unchanged)
|
|
108
|
+
test/AutoSwapper.t.sol 92ms (unchanged)
|
|
109
|
+
test/BuySupplyWithV4SwapHook.t.sol 254ms (unchanged)
|
|
110
|
+
test/Coin.t.sol 217ms (unchanged)
|
|
111
|
+
test/CoinRewardsV4.t.sol 16ms (unchanged)
|
|
112
|
+
test/CoinUniV4.t.sol 618ms (unchanged)
|
|
113
|
+
test/ContentCoinRewards.t.sol 219ms (unchanged)
|
|
114
|
+
test/CreatorCoin.t.sol 275ms (unchanged)
|
|
115
|
+
test/CreatorCoinRewards.t.sol 188ms (unchanged)
|
|
116
|
+
test/DeploymentHooks.t.sol 147ms (unchanged)
|
|
117
|
+
test/Factory.t.sol 148ms (unchanged)
|
|
118
|
+
test/HooksDeployment.t.sol 49ms (unchanged)
|
|
119
|
+
test/LiquidityMigration.t.sol 406ms (unchanged)
|
|
120
|
+
test/mocks/MockAirlock.sol 4ms (unchanged)
|
|
121
|
+
test/mocks/MockERC20.sol 3ms (unchanged)
|
|
122
|
+
test/mocks/SimpleERC20.sol 2ms (unchanged)
|
|
123
|
+
test/MultiOwnable.t.sol 140ms (unchanged)
|
|
124
|
+
test/Upgrades.t.sol 175ms (unchanged)
|
|
125
|
+
test/utils/BaseTest.sol 392ms (unchanged)
|
|
126
|
+
test/utils/ContractAddresses.sol 3ms (unchanged)
|
|
127
|
+
test/utils/DeployedCoinVersionLookup.t.sol 70ms (unchanged)
|
|
128
|
+
test/utils/FeeEstimatorHook.sol 45ms (unchanged)
|
|
129
|
+
test/utils/hookmate/artifacts/DeployHelper.sol 12ms (unchanged)
|
|
130
|
+
test/utils/hookmate/artifacts/Permit2.sol 13ms (unchanged)
|
|
131
|
+
test/utils/hookmate/artifacts/UniversalRouter.sol 16ms (unchanged)
|
|
132
|
+
test/utils/hookmate/artifacts/V4PoolManager.sol 7ms (unchanged)
|
|
133
|
+
test/utils/hookmate/artifacts/V4PositionManager.sol 10ms (unchanged)
|
|
134
|
+
test/utils/hookmate/artifacts/V4Quoter.sol 7ms (unchanged)
|
|
135
|
+
test/utils/hookmate/artifacts/V4Router.sol 7ms (unchanged)
|
|
136
|
+
test/utils/hookmate/constants/AddressConstants.sol 69ms (unchanged)
|
|
137
|
+
test/utils/hookmate/interfaces/router/IUniswapV4Router04.sol 25ms (unchanged)
|
|
138
|
+
test/utils/hookmate/interfaces/router/PathKey.sol 17ms (unchanged)
|
|
139
|
+
test/utils/hookmate/test/utils/SwapFeeEventAsserter.sol 20ms (unchanged)
|
|
140
|
+
test/utils/ProtocolRewards.sol 451ms (unchanged)
|
|
141
|
+
test/utils/ProxyShim.sol 10ms (unchanged)
|
|
142
|
+
test/utils/RewardTestHelpers.sol 76ms (unchanged)
|
|
143
|
+
test/V4Liquidity.t.sol 116ms (unchanged)
|
|
144
|
+
test/ZoraHookRegistry.t.sol 223ms (unchanged)
|
|
145
|
+
script/Deploy.s.sol 15ms (unchanged)
|
|
146
|
+
script/DeployAutoSwapper.s.sol 13ms (unchanged)
|
|
147
|
+
script/DeployDevFactory.s.sol 6ms (unchanged)
|
|
148
|
+
script/DeployPostDeploymentHooks.s.sol 11ms (unchanged)
|
|
149
|
+
script/DeployUpgradeGate.s.sol 6ms (unchanged)
|
|
150
|
+
script/GenerateDeterministicParams.s.sol 27ms (unchanged)
|
|
151
|
+
script/PrintRegisterUpgradePath.s.sol 17ms (unchanged)
|
|
133
152
|
script/PrintUpgradeCommand.s.sol 5ms (unchanged)
|
|
134
|
-
script/TestBackingCoinSwap.s.sol
|
|
135
|
-
script/TestV4Swap.s.sol
|
|
136
|
-
script/UpgradeCoinImpl.sol
|
|
153
|
+
script/TestBackingCoinSwap.s.sol 87ms (unchanged)
|
|
154
|
+
script/TestV4Swap.s.sol 67ms (unchanged)
|
|
155
|
+
script/UpgradeCoinImpl.sol 8ms (unchanged)
|
|
137
156
|
script/UpgradeFactoryImpl.s.sol 10ms (unchanged)
|
|
138
|
-
script/UpgradeHooks.s.sol
|
|
157
|
+
script/UpgradeHooks.s.sol 8ms (unchanged)
|
|
139
158
|
[34mCLI[39m Building entry: package/index.ts
|
|
140
159
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
141
160
|
[34mCLI[39m tsup v8.4.0
|
|
@@ -144,9 +163,9 @@ script/UpgradeHooks.s.sol 7ms (unchanged)
|
|
|
144
163
|
[34mCLI[39m Cleaning output folder
|
|
145
164
|
[34mCJS[39m Build start
|
|
146
165
|
[34mESM[39m Build start
|
|
147
|
-
[
|
|
148
|
-
[
|
|
149
|
-
[
|
|
150
|
-
[
|
|
151
|
-
[
|
|
152
|
-
[
|
|
166
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m135.99 KB[39m
|
|
167
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m240.37 KB[39m
|
|
168
|
+
[32mCJS[39m ⚡️ Build success in 93ms
|
|
169
|
+
[32mESM[39m [1mdist/index.js [22m[32m134.57 KB[39m
|
|
170
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m240.22 KB[39m
|
|
171
|
+
[32mESM[39m ⚡️ Build success in 97ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,59 @@
|
|
|
1
1
|
# @zoralabs/coins
|
|
2
2
|
|
|
3
|
-
## 2.
|
|
3
|
+
## 2.3.1
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 3c274d9d: Created a buy supply with v4 hook, for buying initial supply of a creator coin, supporting doing a v3 and v4 swap to buy the creator coin. updated the encoding function for buying initial supply to work with the v3 to v4 swap
|
|
8
|
+
|
|
9
|
+
## 2.3.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 7df94915: Enable buying initial supply when deploying creator coin and refactor factory internals
|
|
14
|
+
|
|
15
|
+
- Add new `deployCreatorCoin` overload with `postDeployHook` parameter that supports ETH transfers
|
|
16
|
+
- Refactored internal factory implementation to share more code between deployment methods
|
|
17
|
+
- Enables buying initial supply during creator coin deployment via post-deploy hooks
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 6a7e2b7b: Fix LP position duplication when deploying coins. If two positions are created with the same tick ranges, they are merged and stored as one position. This reduces gas costs during swapping as there are less LP positions to iterate through when collecting fees.
|
|
22
|
+
- 5093c5ef: Add bounds checking to prevent risky forced downcasting of currency deltas
|
|
23
|
+
- 9c6d241a: Fix ETH transfer failures in reward distribution when platform referrers cannot accept ETH
|
|
24
|
+
|
|
25
|
+
- Prevent swaps from reverting when platform referrers cannot accept ETH - in this case, the rewards are redirected to the protocol recipient as backup.
|
|
26
|
+
- Ensures coin functionality remains intact even with ETH-incompatible platform referrers
|
|
27
|
+
|
|
28
|
+
- 44a179b0: Flatten hooks into single hook implementation
|
|
8
29
|
|
|
9
30
|
Consolidates multiple hook contracts into a single unified hook for simplified architecture and better maintainability.
|
|
10
31
|
|
|
11
|
-
-
|
|
32
|
+
- d3808d55: Adjust creator coin vesting duration to account for leap years
|
|
33
|
+
|
|
34
|
+
- Changed CREATOR*VESTING_DURATION from 5 * 365 days to 5 \_ 365.25 days
|
|
35
|
+
- Addresses Cantina audit finding about 1.25 day shortfall in 5-year vesting period
|
|
36
|
+
|
|
37
|
+
- b571fe54: Consolidate and clarify coin constants
|
|
38
|
+
|
|
39
|
+
- Renamed `CREATOR_LAUNCH_REWARD` to `CONTENT_COIN_INITIAL_CREATOR_SUPPLY` for clarity
|
|
40
|
+
- Renamed `CREATOR_VESTING_SUPPLY` to `CREATOR_COIN_CREATOR_VESTING_SUPPLY` for consistency
|
|
41
|
+
- Removed redundant `POOL_LAUNCH_SUPPLY` constant (use `CONTENT_COIN_MARKET_SUPPLY` instead)
|
|
42
|
+
- Changed library constants from `public` to `internal`
|
|
43
|
+
- Made supply constants derived from calculations to show relationships clearly
|
|
44
|
+
|
|
45
|
+
- 32d683d6: Fix stale PoolKey mapping after migration in ZoraV4CoinHook
|
|
46
|
+
|
|
47
|
+
Delete the old pool key from the poolCoins mapping after successful liquidity migration to prevent future operations on migrated pools.
|
|
48
|
+
|
|
49
|
+
- 44a179b0: Ignore collecting from liquidity positions with empty fee growth
|
|
50
|
+
- 00b982bb: Fix liquidity migration bug: when migrating liquidity to a hook with a different fee, the old fee was kept. This will now make sure that the new fee is used after migration. Also make sure to use the new tick spacing after migration.
|
|
51
|
+
|
|
52
|
+
## 2.2.1
|
|
53
|
+
|
|
54
|
+
### Patch Changes
|
|
55
|
+
|
|
56
|
+
- c96e0c5e: Fix bug where liquidity cannot be migrated if there is a position with 0 liquidity
|
|
12
57
|
|
|
13
58
|
## 2.2.0
|
|
14
59
|
|
|
@@ -25,7 +70,7 @@
|
|
|
25
70
|
|
|
26
71
|
| Recipient | Before (3% total fee) | After (1% total fee) |
|
|
27
72
|
| ----------------- | --------------------- | -------------------- |
|
|
28
|
-
| | % of Fee
|
|
73
|
+
| | % of Fee | % of Fee |
|
|
29
74
|
| Creator | 33.33% | 50% |
|
|
30
75
|
| Platform Referral | 10% | 20% |
|
|
31
76
|
| Trade Referral | 10% | 4% |
|
|
@@ -37,7 +82,7 @@
|
|
|
37
82
|
|
|
38
83
|
| Recipient | Before (3% total fee) | After (1% total fee) |
|
|
39
84
|
| ----------------- | --------------------- | -------------------- |
|
|
40
|
-
| | % of Fee
|
|
85
|
+
| | % of Fee | % of Fee |
|
|
41
86
|
| Creator | 33.33% | 50% |
|
|
42
87
|
| Platform Referral | - | 20% |
|
|
43
88
|
| Trade Referral | - | 4% |
|
package/README.md
CHANGED
|
@@ -74,3 +74,8 @@ forge script script/Deploy.s.sol $(chains {chainName} --deploy) --broadcast --ve
|
|
|
74
74
|
where `{chainName}` is the emdash name of the chain you want to deploy on.
|
|
75
75
|
|
|
76
76
|
2. Verify the factory contract. Since it is deployed with create2, foundry won't always recognize the deployed contract; verification instructions will be printed out in the logs.
|
|
77
|
+
|
|
78
|
+
## Audits
|
|
79
|
+
|
|
80
|
+
* Coins Aug 2025: [Cantina Audit Report](./audits/report-cantinacode-zora-0827.pdf)
|
|
81
|
+
* Coins Oct 2025: [Cantina Audit Report](./audits/report-cantinacode-zora-1021.pdf)
|
package/abis/BaseCoin.json
CHANGED
package/abis/BaseTest.json
CHANGED
|
@@ -115,6 +115,13 @@
|
|
|
115
115
|
"outputs": [],
|
|
116
116
|
"stateMutability": "nonpayable"
|
|
117
117
|
},
|
|
118
|
+
{
|
|
119
|
+
"type": "function",
|
|
120
|
+
"name": "setUpNonForked",
|
|
121
|
+
"inputs": [],
|
|
122
|
+
"outputs": [],
|
|
123
|
+
"stateMutability": "nonpayable"
|
|
124
|
+
},
|
|
118
125
|
{
|
|
119
126
|
"type": "function",
|
|
120
127
|
"name": "setUpWithBlockNumber",
|
|
@@ -242,6 +249,56 @@
|
|
|
242
249
|
],
|
|
243
250
|
"stateMutability": "view"
|
|
244
251
|
},
|
|
252
|
+
{
|
|
253
|
+
"type": "event",
|
|
254
|
+
"name": "SlotFound",
|
|
255
|
+
"inputs": [
|
|
256
|
+
{
|
|
257
|
+
"name": "who",
|
|
258
|
+
"type": "address",
|
|
259
|
+
"indexed": false,
|
|
260
|
+
"internalType": "address"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "fsig",
|
|
264
|
+
"type": "bytes4",
|
|
265
|
+
"indexed": false,
|
|
266
|
+
"internalType": "bytes4"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "keysHash",
|
|
270
|
+
"type": "bytes32",
|
|
271
|
+
"indexed": false,
|
|
272
|
+
"internalType": "bytes32"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
"name": "slot",
|
|
276
|
+
"type": "uint256",
|
|
277
|
+
"indexed": false,
|
|
278
|
+
"internalType": "uint256"
|
|
279
|
+
}
|
|
280
|
+
],
|
|
281
|
+
"anonymous": false
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"type": "event",
|
|
285
|
+
"name": "WARNING_UninitedSlot",
|
|
286
|
+
"inputs": [
|
|
287
|
+
{
|
|
288
|
+
"name": "who",
|
|
289
|
+
"type": "address",
|
|
290
|
+
"indexed": false,
|
|
291
|
+
"internalType": "address"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"name": "slot",
|
|
295
|
+
"type": "uint256",
|
|
296
|
+
"indexed": false,
|
|
297
|
+
"internalType": "uint256"
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
"anonymous": false
|
|
301
|
+
},
|
|
245
302
|
{
|
|
246
303
|
"type": "event",
|
|
247
304
|
"name": "log",
|
|
@@ -652,5 +709,10 @@
|
|
|
652
709
|
"internalType": "address"
|
|
653
710
|
}
|
|
654
711
|
]
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"type": "error",
|
|
715
|
+
"name": "UnsupportedChainId",
|
|
716
|
+
"inputs": []
|
|
655
717
|
}
|
|
656
718
|
]
|