@@ -23,16 +23,19 @@ members = [
23
23
" frame/cosmos/x/wasm" ,
24
24
" frame/cosmos/x/wasm/types" ,
25
25
" frame/multimap" ,
26
+ " frame/rewards" ,
26
27
" frame/solana" ,
27
28
" frame/solana/runtime-api" ,
28
29
" frame/wtema" ,
30
+ " primitives/arithmetic" ,
29
31
" primitives/babel" ,
30
32
" primitives/consensus" , # dummy
31
33
" primitives/consensus/pow" ,
32
34
" primitives/cosmos" ,
33
35
" primitives/ethereum" ,
34
36
" primitives/multimap" ,
35
37
" primitives/nostr" ,
38
+ " primitives/rewards" ,
36
39
" primitives/runtime" ,
37
40
" primitives/solana" ,
38
41
" runtime/common" ,
@@ -159,6 +162,7 @@ wat = "1.0"
159
162
# substrate
160
163
sc-client-api = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " stable2409" }
161
164
sc-consensus = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " stable2409" }
165
+ frame-benchmarking = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " stable2409" , default-features = false }
162
166
frame-support = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " stable2409" , default-features = false }
163
167
frame-system = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " stable2409" , default-features = false }
164
168
pallet-assets = { git = " https://github.com/paritytech/polkadot-sdk" , branch = " stable2409" , default-features = false }
@@ -198,12 +202,14 @@ nc-consensus = { path = "client/consensus" }
198
202
nc-consensus-pow = { path = " client/consensus/pow" }
199
203
noir-core-primitives = { path = " core-primitives" , default-features = false }
200
204
noir-runtime-common = { path = " runtime/common" , default-features = false }
205
+ np-arithmetic = { path = " primitives/arithmetic" , default-features = false }
201
206
np-babel = { path = " primitives/babel" , default-features = false }
202
207
np-consensus-pow = { path = " primitives/consensus/pow" , default-features = false }
203
208
np-cosmos = { path = " primitives/cosmos" , default-features = false }
204
209
np-ethereum = { path = " primitives/ethereum" , default-features = false }
205
210
np-multimap = { path = " primitives/multimap" , default-features = false }
206
211
np-nostr = { path = " primitives/nostr" , default-features = false }
212
+ np-rewards = { path = " primitives/rewards" , default-features = false }
207
213
np-runtime = { path = " primitives/runtime" , default-features = false }
208
214
np-solana = { path = " primitives/solana" , default-features = false }
209
215
pallet-cosmos = { path = " frame/cosmos" , default-features = false }
@@ -216,6 +222,7 @@ pallet-cosmos-x-bank-types = { path = "frame/cosmos/x/bank/types", default-featu
216
222
pallet-cosmos-x-wasm = { path = " frame/cosmos/x/wasm" , default-features = false }
217
223
pallet-cosmos-x-wasm-types = { path = " frame/cosmos/x/wasm/types" , default-features = false }
218
224
pallet-multimap = { path = " frame/multimap" , default-features = false }
225
+ pallet-rewards = { path = " frame/rewards" , default-features = false }
219
226
pallet-solana = { path = " frame/solana" , default-features = false }
220
227
pallet-wtema = { path = " frame/wtema" , default-features = false }
221
228
0 commit comments