@@ -16,6 +16,7 @@ import { createMetricsContract } from './metrics'
16
16
import { createPolicyFactoryContract } from './policy-factory'
17
17
import { createSTokensContract } from './s-tokens'
18
18
import { createMetricsGroupContract } from './metrics-group'
19
+ import { createSimpleCollectionsContract } from './simpleCollection'
19
20
20
21
export type DevkitContract = {
21
22
readonly allocator : ReturnType < typeof createAllocatorContract >
@@ -33,6 +34,7 @@ export type DevkitContract = {
33
34
readonly metricsGroup : ReturnType < typeof createMetricsGroupContract >
34
35
readonly policyFactory : ReturnType < typeof createPolicyFactoryContract >
35
36
readonly sTokens : ReturnType < typeof createSTokensContract >
37
+ readonly simpleCollections : ReturnType < typeof createSimpleCollectionsContract >
36
38
}
37
39
export type ContractFactory = ( ethersProvider : BaseProvider ) => DevkitContract
38
40
export type CreateDevkitContract = ( provider : BaseProvider ) => DevkitContract
@@ -55,6 +57,7 @@ export const createDevkitContract: CreateDevkitContract = (
55
57
metricsGroup : createMetricsGroupContract ( provider ) ,
56
58
policyFactory : createPolicyFactoryContract ( provider ) ,
57
59
sTokens : createSTokensContract ( provider ) ,
60
+ simpleCollections : createSimpleCollectionsContract ( provider ) ,
58
61
} )
59
62
60
63
export const contractFactory : ContractFactory = createDevkitContract
0 commit comments