@zoralabs/coins 2.4.1 → 2.5.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/.abi-stability +923 -0
- package/.turbo/turbo-build$colon$js.log +112 -110
- package/CHANGELOG.md +19 -0
- package/abis/BaseCoin.json +18 -0
- package/abis/ContentCoin.json +18 -0
- package/abis/CreatorCoin.json +18 -0
- package/abis/IHasCreationInfo.json +20 -0
- package/dist/index.cjs +30 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +30 -0
- package/dist/index.js.map +1 -1
- package/dist/wagmiGenerated.d.ts +42 -0
- package/dist/wagmiGenerated.d.ts.map +1 -1
- package/package/wagmiGenerated.ts +30 -0
- package/package.json +3 -1
- package/src/BaseCoin.sol +32 -2
- package/src/hooks/ZoraV4CoinHook.sol +60 -3
- package/src/interfaces/IHasCreationInfo.sol +12 -0
- package/src/libs/CoinConstants.sol +16 -0
- package/src/libs/CoinSetup.sol +7 -1
- package/src/libs/V3ToV4SwapLib.sol +7 -3
- package/src/version/ContractVersionBase.sol +1 -1
- package/test/CoinUniV4.t.sol +4 -0
- package/test/ContentCoinRewards.t.sol +1 -0
- package/test/CreatorCoinRewards.t.sol +1 -0
- package/test/LaunchFee.t.sol +286 -0
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
|
|
2
|
-
> @zoralabs/coins@2.
|
|
2
|
+
> @zoralabs/coins@2.5.0 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.5.0 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.5.0 build:contracts:minimal /home/runner/work/zora-protocol-private/zora-protocol-private/packages/coins
|
|
11
11
|
> forge build src/ --no-metadata
|
|
12
12
|
|
|
13
|
-
Compiling
|
|
14
|
-
Solc 0.8.28 finished in
|
|
13
|
+
Compiling 184 files with Solc 0.8.28
|
|
14
|
+
Solc 0.8.28 finished in 46.32s
|
|
15
15
|
Compiler run successful!
|
|
16
16
|
[33m-[39m Validating plugins
|
|
17
17
|
[32m✔[39m Validating plugins
|
|
@@ -26,126 +26,128 @@ Compiler run successful!
|
|
|
26
26
|
✅ Updated ./package/wagmiGenerated.ts (10 replacements)
|
|
27
27
|
✨ All files processed successfully!
|
|
28
28
|
|
|
29
|
-
> @zoralabs/coins@2.
|
|
29
|
+
> @zoralabs/coins@2.5.0 copy-abis /home/runner/work/zora-protocol-private/zora-protocol-private/packages/coins
|
|
30
30
|
> pnpm exec bundle-abis
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
> @zoralabs/coins@2.
|
|
33
|
+
> @zoralabs/coins@2.5.0 prettier:write /home/runner/work/zora-protocol-private/zora-protocol-private/packages/coins
|
|
34
34
|
> prettier --write 'src/**/*.sol' 'test/**/*.sol'
|
|
35
35
|
|
|
36
|
-
src/BaseCoin.sol
|
|
37
|
-
src/ContentCoin.sol
|
|
38
|
-
src/CreatorCoin.sol
|
|
39
|
-
src/deployment/ForkedCoinsAddresses.sol
|
|
40
|
-
src/hook-registry/ZoraHookRegistry.sol
|
|
41
|
-
src/hooks/deployment/BaseCoinDeployHook.sol
|
|
42
|
-
src/hooks/deployment/BuySupplyWithSwapRouterHook.sol
|
|
43
|
-
src/hooks/deployment/BuySupplyWithV4SwapHook.sol
|
|
44
|
-
src/hooks/HookUpgradeGate.sol
|
|
45
|
-
src/hooks/ZoraV4CoinHook.sol
|
|
46
|
-
src/interfaces/IAirlock.sol
|
|
47
|
-
src/interfaces/ICoin.sol
|
|
36
|
+
src/BaseCoin.sol 796ms (unchanged)
|
|
37
|
+
src/ContentCoin.sol 73ms (unchanged)
|
|
38
|
+
src/CreatorCoin.sol 86ms (unchanged)
|
|
39
|
+
src/deployment/ForkedCoinsAddresses.sol 29ms (unchanged)
|
|
40
|
+
src/hook-registry/ZoraHookRegistry.sol 153ms (unchanged)
|
|
41
|
+
src/hooks/deployment/BaseCoinDeployHook.sol 57ms (unchanged)
|
|
42
|
+
src/hooks/deployment/BuySupplyWithSwapRouterHook.sol 249ms (unchanged)
|
|
43
|
+
src/hooks/deployment/BuySupplyWithV4SwapHook.sol 138ms (unchanged)
|
|
44
|
+
src/hooks/HookUpgradeGate.sol 35ms (unchanged)
|
|
45
|
+
src/hooks/ZoraV4CoinHook.sol 317ms (unchanged)
|
|
46
|
+
src/interfaces/IAirlock.sol 1ms (unchanged)
|
|
47
|
+
src/interfaces/ICoin.sol 38ms (unchanged)
|
|
48
48
|
src/interfaces/ICoinComments.sol 2ms (unchanged)
|
|
49
|
-
src/interfaces/ICoinDeployHook.sol
|
|
50
|
-
src/interfaces/ICoinV3.sol
|
|
49
|
+
src/interfaces/ICoinDeployHook.sol 1ms (unchanged)
|
|
50
|
+
src/interfaces/ICoinV3.sol 5ms (unchanged)
|
|
51
51
|
src/interfaces/ICreatorCoin.sol 2ms (unchanged)
|
|
52
52
|
src/interfaces/ICreatorCoinHook.sol 2ms (unchanged)
|
|
53
|
-
src/interfaces/IDeployedCoinVersionLookup.sol
|
|
53
|
+
src/interfaces/IDeployedCoinVersionLookup.sol 1ms (unchanged)
|
|
54
54
|
src/interfaces/IDopplerErrors.sol 2ms (unchanged)
|
|
55
|
-
src/interfaces/IERC7572.sol
|
|
55
|
+
src/interfaces/IERC7572.sol 1ms (unchanged)
|
|
56
|
+
src/interfaces/IHasCreationInfo.sol 1ms (unchanged)
|
|
56
57
|
src/interfaces/IHasRewardsRecipients.sol 2ms (unchanged)
|
|
57
|
-
src/interfaces/IHooksUpgradeGate.sol
|
|
58
|
-
src/interfaces/IMsgSender.sol
|
|
59
|
-
src/interfaces/INonfungiblePositionManager.sol
|
|
60
|
-
src/interfaces/IPoolConfigEncoding.sol
|
|
58
|
+
src/interfaces/IHooksUpgradeGate.sol 2ms (unchanged)
|
|
59
|
+
src/interfaces/IMsgSender.sol 1ms (unchanged)
|
|
60
|
+
src/interfaces/INonfungiblePositionManager.sol 16ms (unchanged)
|
|
61
|
+
src/interfaces/IPoolConfigEncoding.sol 1ms (unchanged)
|
|
61
62
|
src/interfaces/IProtocolRewards.sol 8ms (unchanged)
|
|
62
|
-
src/interfaces/ISupportsLimitOrderFill.sol
|
|
63
|
+
src/interfaces/ISupportsLimitOrderFill.sol 1ms (unchanged)
|
|
63
64
|
src/interfaces/ISwapPathRouter.sol 2ms (unchanged)
|
|
64
65
|
src/interfaces/ISwapRouter.sol 1ms (unchanged)
|
|
65
|
-
src/interfaces/ITrustedMsgSenderProviderLookup.sol
|
|
66
|
-
src/interfaces/IUniswapV3Factory.sol
|
|
67
|
-
src/interfaces/IUniswapV3Pool.sol
|
|
68
|
-
src/interfaces/IUniswapV3SwapCallback.sol
|
|
66
|
+
src/interfaces/ITrustedMsgSenderProviderLookup.sol 1ms (unchanged)
|
|
67
|
+
src/interfaces/IUniswapV3Factory.sol 5ms (unchanged)
|
|
68
|
+
src/interfaces/IUniswapV3Pool.sol 6ms (unchanged)
|
|
69
|
+
src/interfaces/IUniswapV3SwapCallback.sol 1ms (unchanged)
|
|
69
70
|
src/interfaces/IUpgradeableV4Hook.sol 4ms (unchanged)
|
|
70
|
-
src/interfaces/IWETH.sol
|
|
71
|
-
src/interfaces/IZoraFactory.sol
|
|
72
|
-
src/interfaces/IZoraHookRegistry.sol
|
|
73
|
-
src/interfaces/IZoraLimitOrderBookCoinsInterface.sol
|
|
74
|
-
src/interfaces/IZoraV4CoinHook.sol
|
|
75
|
-
src/libs/CoinCommon.sol
|
|
76
|
-
src/libs/CoinConfigurationVersions.sol
|
|
77
|
-
src/libs/CoinConstants.sol
|
|
78
|
-
src/libs/CoinDopplerMultiCurve.sol
|
|
79
|
-
src/libs/CoinRewardsV4.sol
|
|
80
|
-
src/libs/CoinSetup.sol
|
|
81
|
-
src/libs/DopplerMath.sol
|
|
82
|
-
src/libs/HooksDeployment.sol
|
|
83
|
-
src/libs/PoolStateReader.sol
|
|
84
|
-
src/libs/UniV4SwapHelper.sol
|
|
85
|
-
src/libs/UniV4SwapToCurrency.sol
|
|
86
|
-
src/libs/V3ToV4SwapLib.sol
|
|
87
|
-
src/libs/V4Liquidity.sol
|
|
88
|
-
src/proxy/ZoraFactory.sol
|
|
71
|
+
src/interfaces/IWETH.sol 4ms (unchanged)
|
|
72
|
+
src/interfaces/IZoraFactory.sol 16ms (unchanged)
|
|
73
|
+
src/interfaces/IZoraHookRegistry.sol 4ms (unchanged)
|
|
74
|
+
src/interfaces/IZoraLimitOrderBookCoinsInterface.sol 2ms (unchanged)
|
|
75
|
+
src/interfaces/IZoraV4CoinHook.sol 5ms (unchanged)
|
|
76
|
+
src/libs/CoinCommon.sol 9ms (unchanged)
|
|
77
|
+
src/libs/CoinConfigurationVersions.sol 71ms (unchanged)
|
|
78
|
+
src/libs/CoinConstants.sol 9ms (unchanged)
|
|
79
|
+
src/libs/CoinDopplerMultiCurve.sol 172ms (unchanged)
|
|
80
|
+
src/libs/CoinRewardsV4.sol 198ms (unchanged)
|
|
81
|
+
src/libs/CoinSetup.sol 44ms
|
|
82
|
+
src/libs/DopplerMath.sol 164ms (unchanged)
|
|
83
|
+
src/libs/HooksDeployment.sol 125ms (unchanged)
|
|
84
|
+
src/libs/PoolStateReader.sol 5ms (unchanged)
|
|
85
|
+
src/libs/UniV4SwapHelper.sol 131ms (unchanged)
|
|
86
|
+
src/libs/UniV4SwapToCurrency.sol 80ms (unchanged)
|
|
87
|
+
src/libs/V3ToV4SwapLib.sol 111ms (unchanged)
|
|
88
|
+
src/libs/V4Liquidity.sol 321ms (unchanged)
|
|
89
|
+
src/proxy/ZoraFactory.sol 8ms (unchanged)
|
|
89
90
|
src/types/LpPosition.sol 1ms (unchanged)
|
|
90
|
-
src/types/PoolConfiguration.sol
|
|
91
|
-
src/types/PoolState.sol
|
|
92
|
-
src/utils/AutoSwapper.sol
|
|
93
|
-
src/utils/DeployedCoinVersionLookup.sol
|
|
94
|
-
src/utils/MultiOwnable.sol
|
|
95
|
-
src/utils/ProxyShim.sol
|
|
96
|
-
src/utils/TrustedMsgSenderProviderLookup.sol
|
|
91
|
+
src/types/PoolConfiguration.sol 2ms (unchanged)
|
|
92
|
+
src/types/PoolState.sol 1ms (unchanged)
|
|
93
|
+
src/utils/AutoSwapper.sol 32ms (unchanged)
|
|
94
|
+
src/utils/DeployedCoinVersionLookup.sol 7ms (unchanged)
|
|
95
|
+
src/utils/MultiOwnable.sol 71ms (unchanged)
|
|
96
|
+
src/utils/ProxyShim.sol 4ms (unchanged)
|
|
97
|
+
src/utils/TrustedMsgSenderProviderLookup.sol 38ms (unchanged)
|
|
97
98
|
src/utils/uniswap/BitMath.sol 18ms (unchanged)
|
|
98
|
-
src/utils/uniswap/CustomRevert.sol
|
|
99
|
+
src/utils/uniswap/CustomRevert.sol 57ms (unchanged)
|
|
99
100
|
src/utils/uniswap/FixedPoint96.sol 2ms (unchanged)
|
|
100
|
-
src/utils/uniswap/FullMath.sol
|
|
101
|
-
src/utils/uniswap/LiquidityAmounts.sol
|
|
102
|
-
src/utils/uniswap/SafeCast.sol
|
|
103
|
-
src/utils/uniswap/SqrtPriceMath.sol
|
|
104
|
-
src/utils/uniswap/TickMath.sol
|
|
105
|
-
src/utils/uniswap/UnsafeMath.sol
|
|
101
|
+
src/utils/uniswap/FullMath.sol 31ms (unchanged)
|
|
102
|
+
src/utils/uniswap/LiquidityAmounts.sol 75ms (unchanged)
|
|
103
|
+
src/utils/uniswap/SafeCast.sol 20ms (unchanged)
|
|
104
|
+
src/utils/uniswap/SqrtPriceMath.sol 107ms (unchanged)
|
|
105
|
+
src/utils/uniswap/TickMath.sol 122ms (unchanged)
|
|
106
|
+
src/utils/uniswap/UnsafeMath.sol 4ms (unchanged)
|
|
106
107
|
src/version/ContractVersionBase.sol 2ms (unchanged)
|
|
107
|
-
src/ZoraFactoryImpl.sol
|
|
108
|
-
test/AutoSwapper.t.sol
|
|
109
|
-
test/BuySupplyWithV4SwapHook.t.sol
|
|
110
|
-
test/Coin.t.sol
|
|
111
|
-
test/CoinRewardsV4.t.sol
|
|
112
|
-
test/CoinUniV4.t.sol
|
|
113
|
-
test/ContentCoinRewards.t.sol
|
|
114
|
-
test/CreatorCoin.t.sol
|
|
115
|
-
test/CreatorCoinRewards.t.sol
|
|
116
|
-
test/DeploymentHooks.t.sol
|
|
117
|
-
test/Factory.t.sol
|
|
118
|
-
test/HooksDeployment.t.sol
|
|
119
|
-
test/
|
|
120
|
-
test/
|
|
121
|
-
test/mocks/
|
|
122
|
-
test/mocks/
|
|
123
|
-
test/mocks/
|
|
124
|
-
test/mocks/
|
|
125
|
-
test/
|
|
126
|
-
test/
|
|
127
|
-
test/
|
|
128
|
-
test/
|
|
129
|
-
test/utils/
|
|
130
|
-
test/utils/
|
|
131
|
-
test/utils/
|
|
132
|
-
test/utils/
|
|
133
|
-
test/utils/hookmate/artifacts/
|
|
134
|
-
test/utils/hookmate/artifacts/
|
|
135
|
-
test/utils/hookmate/artifacts/
|
|
136
|
-
test/utils/hookmate/artifacts/
|
|
108
|
+
src/ZoraFactoryImpl.sol 205ms (unchanged)
|
|
109
|
+
test/AutoSwapper.t.sol 62ms (unchanged)
|
|
110
|
+
test/BuySupplyWithV4SwapHook.t.sol 246ms (unchanged)
|
|
111
|
+
test/Coin.t.sol 227ms (unchanged)
|
|
112
|
+
test/CoinRewardsV4.t.sol 14ms (unchanged)
|
|
113
|
+
test/CoinUniV4.t.sol 631ms (unchanged)
|
|
114
|
+
test/ContentCoinRewards.t.sol 218ms (unchanged)
|
|
115
|
+
test/CreatorCoin.t.sol 248ms (unchanged)
|
|
116
|
+
test/CreatorCoinRewards.t.sol 172ms (unchanged)
|
|
117
|
+
test/DeploymentHooks.t.sol 134ms (unchanged)
|
|
118
|
+
test/Factory.t.sol 154ms (unchanged)
|
|
119
|
+
test/HooksDeployment.t.sol 86ms (unchanged)
|
|
120
|
+
test/LaunchFee.t.sol 161ms (unchanged)
|
|
121
|
+
test/LiquidityMigration.t.sol 361ms (unchanged)
|
|
122
|
+
test/mocks/MockAirlock.sol 9ms (unchanged)
|
|
123
|
+
test/mocks/MockERC20.sol 4ms (unchanged)
|
|
124
|
+
test/mocks/MockSwapRouter.sol 16ms (unchanged)
|
|
125
|
+
test/mocks/MockZoraLimitOrderBook.sol 1ms (unchanged)
|
|
126
|
+
test/mocks/SimpleERC20.sol 4ms (unchanged)
|
|
127
|
+
test/MultiOwnable.t.sol 138ms (unchanged)
|
|
128
|
+
test/TrustedMsgSenderProviderLookup.t.sol 86ms (unchanged)
|
|
129
|
+
test/Upgrades.t.sol 127ms (unchanged)
|
|
130
|
+
test/utils/BaseTest.sol 32ms (unchanged)
|
|
131
|
+
test/utils/ContractAddresses.sol 5ms (unchanged)
|
|
132
|
+
test/utils/DeployedCoinVersionLookup.t.sol 67ms (unchanged)
|
|
133
|
+
test/utils/FeeEstimatorHook.sol 45ms (unchanged)
|
|
134
|
+
test/utils/hookmate/artifacts/DeployHelper.sol 9ms (unchanged)
|
|
135
|
+
test/utils/hookmate/artifacts/Permit2.sol 5ms (unchanged)
|
|
136
|
+
test/utils/hookmate/artifacts/UniversalRouter.sol 8ms (unchanged)
|
|
137
|
+
test/utils/hookmate/artifacts/V4PoolManager.sol 7ms (unchanged)
|
|
138
|
+
test/utils/hookmate/artifacts/V4PositionManager.sol 9ms (unchanged)
|
|
137
139
|
test/utils/hookmate/artifacts/V4Quoter.sol 6ms (unchanged)
|
|
138
|
-
test/utils/hookmate/artifacts/V4Router.sol
|
|
139
|
-
test/utils/hookmate/constants/AddressConstants.sol
|
|
140
|
-
test/utils/hookmate/interfaces/router/IUniswapV4Router04.sol
|
|
141
|
-
test/utils/hookmate/interfaces/router/PathKey.sol
|
|
140
|
+
test/utils/hookmate/artifacts/V4Router.sol 8ms (unchanged)
|
|
141
|
+
test/utils/hookmate/constants/AddressConstants.sol 60ms (unchanged)
|
|
142
|
+
test/utils/hookmate/interfaces/router/IUniswapV4Router04.sol 13ms (unchanged)
|
|
143
|
+
test/utils/hookmate/interfaces/router/PathKey.sol 19ms (unchanged)
|
|
142
144
|
test/utils/hookmate/test/utils/SwapFeeEventAsserter.sol 18ms (unchanged)
|
|
143
|
-
test/utils/ProtocolRewards.sol
|
|
144
|
-
test/utils/RewardTestHelpers.sol
|
|
145
|
+
test/utils/ProtocolRewards.sol 542ms (unchanged)
|
|
146
|
+
test/utils/RewardTestHelpers.sol 82ms (unchanged)
|
|
145
147
|
test/utils/TrustedSenderTestHelper.sol 4ms (unchanged)
|
|
146
|
-
test/utils/V4TestSetup.sol
|
|
147
|
-
test/V4Liquidity.t.sol
|
|
148
|
-
test/ZoraHookRegistry.t.sol
|
|
148
|
+
test/utils/V4TestSetup.sol 418ms (unchanged)
|
|
149
|
+
test/V4Liquidity.t.sol 145ms (unchanged)
|
|
150
|
+
test/ZoraHookRegistry.t.sol 226ms (unchanged)
|
|
149
151
|
[34mCLI[39m Building entry: package/index.ts
|
|
150
152
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
151
153
|
[34mCLI[39m tsup v8.4.0
|
|
@@ -154,9 +156,9 @@ test/ZoraHookRegistry.t.sol 243ms (unchanged)
|
|
|
154
156
|
[34mCLI[39m Cleaning output folder
|
|
155
157
|
[34mCJS[39m Build start
|
|
156
158
|
[34mESM[39m Build start
|
|
157
|
-
[
|
|
158
|
-
[
|
|
159
|
-
[
|
|
160
|
-
[
|
|
161
|
-
[
|
|
162
|
-
[
|
|
159
|
+
[32mESM[39m [1mdist/index.js [22m[32m163.80 KB[39m
|
|
160
|
+
[32mESM[39m [1mdist/index.js.map [22m[32m289.89 KB[39m
|
|
161
|
+
[32mESM[39m ⚡️ Build success in 91ms
|
|
162
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m165.21 KB[39m
|
|
163
|
+
[32mCJS[39m [1mdist/index.cjs.map [22m[32m290.04 KB[39m
|
|
164
|
+
[32mCJS[39m ⚡️ Build success in 92ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @zoralabs/coins
|
|
2
2
|
|
|
3
|
+
## 2.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 816ceb35: Add launch fee: time-based dynamic fee that decays from 99% to 1% over 10 seconds after coin creation
|
|
8
|
+
|
|
9
|
+
- New coins record creation timestamp and expose it via `IHasCreationInfo` interface
|
|
10
|
+
- Hook calculates dynamic fee based on elapsed time since creation
|
|
11
|
+
- Initial supply purchase bypasses the fee via transient storage flag
|
|
12
|
+
- Legacy coins without the interface receive normal 1% LP fee
|
|
13
|
+
|
|
14
|
+
## 2.4.2
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 479df7f0: Fix ETH settlement by adding missing sync before settle in V3ToV4SwapLib
|
|
19
|
+
|
|
20
|
+
Added a `poolManager.sync(inputCurrency)` call before settling when the input currency is ETH. This ensures the pool state is properly synchronized before the settlement occurs, making the behavior consistent with the ERC20 handling path which already includes this sync step.
|
|
21
|
+
|
|
3
22
|
## 2.4.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/abis/BaseCoin.json
CHANGED
|
@@ -170,6 +170,24 @@
|
|
|
170
170
|
],
|
|
171
171
|
"stateMutability": "pure"
|
|
172
172
|
},
|
|
173
|
+
{
|
|
174
|
+
"type": "function",
|
|
175
|
+
"name": "creationInfo",
|
|
176
|
+
"inputs": [],
|
|
177
|
+
"outputs": [
|
|
178
|
+
{
|
|
179
|
+
"name": "creationTimestamp",
|
|
180
|
+
"type": "uint256",
|
|
181
|
+
"internalType": "uint256"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"name": "isDeploying",
|
|
185
|
+
"type": "bool",
|
|
186
|
+
"internalType": "bool"
|
|
187
|
+
}
|
|
188
|
+
],
|
|
189
|
+
"stateMutability": "view"
|
|
190
|
+
},
|
|
173
191
|
{
|
|
174
192
|
"type": "function",
|
|
175
193
|
"name": "currency",
|
package/abis/ContentCoin.json
CHANGED
|
@@ -196,6 +196,24 @@
|
|
|
196
196
|
],
|
|
197
197
|
"stateMutability": "pure"
|
|
198
198
|
},
|
|
199
|
+
{
|
|
200
|
+
"type": "function",
|
|
201
|
+
"name": "creationInfo",
|
|
202
|
+
"inputs": [],
|
|
203
|
+
"outputs": [
|
|
204
|
+
{
|
|
205
|
+
"name": "creationTimestamp",
|
|
206
|
+
"type": "uint256",
|
|
207
|
+
"internalType": "uint256"
|
|
208
|
+
},
|
|
209
|
+
{
|
|
210
|
+
"name": "isDeploying",
|
|
211
|
+
"type": "bool",
|
|
212
|
+
"internalType": "bool"
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"stateMutability": "view"
|
|
216
|
+
},
|
|
199
217
|
{
|
|
200
218
|
"type": "function",
|
|
201
219
|
"name": "currency",
|
package/abis/CreatorCoin.json
CHANGED
|
@@ -209,6 +209,24 @@
|
|
|
209
209
|
],
|
|
210
210
|
"stateMutability": "pure"
|
|
211
211
|
},
|
|
212
|
+
{
|
|
213
|
+
"type": "function",
|
|
214
|
+
"name": "creationInfo",
|
|
215
|
+
"inputs": [],
|
|
216
|
+
"outputs": [
|
|
217
|
+
{
|
|
218
|
+
"name": "creationTimestamp",
|
|
219
|
+
"type": "uint256",
|
|
220
|
+
"internalType": "uint256"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"name": "isDeploying",
|
|
224
|
+
"type": "bool",
|
|
225
|
+
"internalType": "bool"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"stateMutability": "view"
|
|
229
|
+
},
|
|
212
230
|
{
|
|
213
231
|
"type": "function",
|
|
214
232
|
"name": "currency",
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "function",
|
|
4
|
+
"name": "creationInfo",
|
|
5
|
+
"inputs": [],
|
|
6
|
+
"outputs": [
|
|
7
|
+
{
|
|
8
|
+
"name": "creationTimestamp",
|
|
9
|
+
"type": "uint256",
|
|
10
|
+
"internalType": "uint256"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"name": "isDeploying",
|
|
14
|
+
"type": "bool",
|
|
15
|
+
"internalType": "bool"
|
|
16
|
+
}
|
|
17
|
+
],
|
|
18
|
+
"stateMutability": "view"
|
|
19
|
+
}
|
|
20
|
+
]
|
package/dist/index.cjs
CHANGED
|
@@ -214,6 +214,16 @@ var baseCoinABI = [
|
|
|
214
214
|
outputs: [{ name: "", internalType: "string", type: "string" }],
|
|
215
215
|
stateMutability: "pure"
|
|
216
216
|
},
|
|
217
|
+
{
|
|
218
|
+
type: "function",
|
|
219
|
+
inputs: [],
|
|
220
|
+
name: "creationInfo",
|
|
221
|
+
outputs: [
|
|
222
|
+
{ name: "creationTimestamp", internalType: "uint256", type: "uint256" },
|
|
223
|
+
{ name: "isDeploying", internalType: "bool", type: "bool" }
|
|
224
|
+
],
|
|
225
|
+
stateMutability: "view"
|
|
226
|
+
},
|
|
217
227
|
{
|
|
218
228
|
type: "function",
|
|
219
229
|
inputs: [],
|
|
@@ -1505,6 +1515,16 @@ var contentCoinABI = [
|
|
|
1505
1515
|
outputs: [{ name: "", internalType: "string", type: "string" }],
|
|
1506
1516
|
stateMutability: "pure"
|
|
1507
1517
|
},
|
|
1518
|
+
{
|
|
1519
|
+
type: "function",
|
|
1520
|
+
inputs: [],
|
|
1521
|
+
name: "creationInfo",
|
|
1522
|
+
outputs: [
|
|
1523
|
+
{ name: "creationTimestamp", internalType: "uint256", type: "uint256" },
|
|
1524
|
+
{ name: "isDeploying", internalType: "bool", type: "bool" }
|
|
1525
|
+
],
|
|
1526
|
+
stateMutability: "view"
|
|
1527
|
+
},
|
|
1508
1528
|
{
|
|
1509
1529
|
type: "function",
|
|
1510
1530
|
inputs: [],
|
|
@@ -2608,6 +2628,16 @@ var creatorCoinABI = [
|
|
|
2608
2628
|
outputs: [{ name: "", internalType: "string", type: "string" }],
|
|
2609
2629
|
stateMutability: "pure"
|
|
2610
2630
|
},
|
|
2631
|
+
{
|
|
2632
|
+
type: "function",
|
|
2633
|
+
inputs: [],
|
|
2634
|
+
name: "creationInfo",
|
|
2635
|
+
outputs: [
|
|
2636
|
+
{ name: "creationTimestamp", internalType: "uint256", type: "uint256" },
|
|
2637
|
+
{ name: "isDeploying", internalType: "bool", type: "bool" }
|
|
2638
|
+
],
|
|
2639
|
+
stateMutability: "view"
|
|
2640
|
+
},
|
|
2611
2641
|
{
|
|
2612
2642
|
type: "function",
|
|
2613
2643
|
inputs: [],
|