@@ -52,6 +52,7 @@ export const enum ArtifactType {
5252 URL_UI = "URL to UI page" ,
5353 URL_API = "API endpoint" ,
5454 URL_STATIC = "Static content URL" ,
55+ CONTRACT_ADDRESS = "Address of deployed contract" ,
5556}
5657
5758export interface IArtifact {
@@ -65,6 +66,7 @@ export interface IConveyorStep {
6566 issues : {
6667 repo : string ;
6768 title : string ;
69+ issueTemplate ?: string ;
6870 body ?: string ;
6971 taskList ?: string [ ] ;
7072 generator ?: string ;
@@ -79,8 +81,8 @@ export const pools: IPool[] = [
7981 name : "Products" ,
8082 label : {
8183 name : "builder:PRODUCT" ,
82- description : "" ,
83- color : "#30da71 " ,
84+ description : "New product request " ,
85+ color : "#00ff62 " ,
8486 } ,
8587 productTypes : [
8688 ProductType . CVAULT ,
@@ -131,8 +133,9 @@ export const conveyors: IConveyor[] = [
131133 type : "Task" ,
132134 label : {
133135 name : "builder:STRATEGY" ,
134- description : "" ,
135- color : "#30da71" ,
136+ description :
137+ "Developing and deploying a new strategy on the **Strategies** conveyor belt." ,
138+ color : "#00d0ff" ,
136139 } ,
137140 description : "Implement and integrate new strategy contract" ,
138141 steps : [
@@ -142,7 +145,8 @@ export const conveyors: IConveyor[] = [
142145 {
143146 repo : "stabilitydao/stability" ,
144147 title :
145- "π *%STRATEGY_SHORT_ID%* | %STRATEGY_ID%: strategy architecture" ,
148+ "π %STRATEGY_SHORT_ID% | %STRATEGY_ID%: strategy architecture" ,
149+ issueTemplate : "strategy.md" ,
146150 } ,
147151 ] ,
148152 artifacts : [
@@ -152,6 +156,32 @@ export const conveyors: IConveyor[] = [
152156 } ,
153157 ] ,
154158 } ,
159+ {
160+ name : "Implement deploy and strategy smart contract" ,
161+ issues : [
162+ {
163+ repo : "stabilitydao/stability-contracts" ,
164+ title : "π [%SHORT_NAME%] | %ID%: implement strategy" ,
165+ } ,
166+ ] ,
167+ /*artifacts: [
168+ {
169+ type: ArtifactType.CONTRACT_ADDRESS,
170+ name: "Strategy implementation",
171+ },
172+ ],*/
173+ } ,
174+ {
175+ name : "Integrate strategy" ,
176+ // todo
177+ issues : [ ] ,
178+ artifacts : [
179+ {
180+ type : ArtifactType . LIBRARY_RELEASE_TAG ,
181+ name : "Library where strategy is READY to use and live with all necessary tokens" ,
182+ } ,
183+ ] ,
184+ } ,
155185 ] ,
156186 } ,
157187 {
@@ -255,6 +285,7 @@ export const builder: Agent = {
255285 "stabilitydao/stability-ui" ,
256286 "stabilitydao/stability-subgraph" ,
257287 "stabilitydao/lending-deploy" ,
288+ "stabilitydao/builder" ,
258289 "stabilitydao/stability-node-pro" ,
259290 ] ,
260291 burnRate : [
0 commit comments