File tree Expand file tree Collapse file tree 2 files changed +30
-4
lines changed
Expand file tree Collapse file tree 2 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 1- import { PlatformRaw , ServiceRaw } from "../types" ;
1+ import { PlatformRaw , ServiceRaw , NetworkId } from "../types" ;
22
33export const platform : PlatformRaw = {
44 id : "arcium" ,
@@ -16,5 +16,18 @@ export const platform: PlatformRaw = {
1616 addedAt : 1739750400000 ,
1717} ;
1818
19- export const services : ServiceRaw [ ] = [ ] ;
19+ const mxeContract = {
20+ name : "MXE" ,
21+ address : "Arcj82pX7HxYKLR92qvgZUAd7vGS1k4hQvAFcPATFdEQ" ,
22+ networkId : NetworkId . solana ,
23+ } ;
24+
25+ export const mxeService : ServiceRaw = {
26+ id : `${ platform . id } -mxe` ,
27+ name : "MXE" ,
28+ platformId : platform . id ,
29+ contractsRaw : [ mxeContract ] ,
30+ } ;
31+
32+ export const services : ServiceRaw [ ] = [ mxeService ] ;
2033export default services ;
Original file line number Diff line number Diff line change 1- import { PlatformRaw , ServiceRaw } from "../types" ;
1+ import { PlatformRaw , ServiceRaw , NetworkId } from "../types" ;
22
33export const platform : PlatformRaw = {
44 id : "unclaimedsol" ,
@@ -16,5 +16,18 @@ export const platform: PlatformRaw = {
1616 tags : [ "tool" ] ,
1717} ;
1818
19- export const services : ServiceRaw [ ] = [ ] ;
19+ const burnCloseContract = {
20+ name : "Burn & Close" ,
21+ address : "UNCaXzXkR3vp8mbCJyxWUvwuRk5uHgzrwe6jcWPfiUR" ,
22+ networkId : NetworkId . solana ,
23+ } ;
24+
25+ export const burnCloseService : ServiceRaw = {
26+ id : `${ platform . id } -burn-close` ,
27+ name : "Burn & Close" ,
28+ platformId : platform . id ,
29+ contractsRaw : [ burnCloseContract ] ,
30+ } ;
31+
32+ export const services : ServiceRaw [ ] = [ burnCloseService ] ;
2033export default services ;
You can’t perform that action at this time.
0 commit comments