Skip to content

Commit 02d0be1

Browse files
committed
add contracts
1 parent a9e1833 commit 02d0be1

File tree

2 files changed

+30
-4
lines changed

2 files changed

+30
-4
lines changed

src/platforms/arcium.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PlatformRaw, ServiceRaw } from "../types";
1+
import { PlatformRaw, ServiceRaw, NetworkId } from "../types";
22

33
export 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];
2033
export default services;

src/platforms/unclaimedsol.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { PlatformRaw, ServiceRaw } from "../types";
1+
import { PlatformRaw, ServiceRaw, NetworkId } from "../types";
22

33
export 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];
2033
export default services;

0 commit comments

Comments
 (0)