Skip to content

Commit e5e5984

Browse files
committed
feat: init
1 parent 1c2e5ae commit e5e5984

5 files changed

Lines changed: 19 additions & 0 deletions

File tree

bun.lockb

5 KB
Binary file not shown.

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,8 @@
3232
"devDependencies": {
3333
"bun-plugin-dts": "^0.3.0",
3434
"@types/bun": "^1.1.10"
35+
},
36+
"dependencies": {
37+
"viem": "^2.34.0"
3538
}
3639
}

src/abis.ts

Whitespace-only changes.

src/constants.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export const CONTRACT_ADDRESS_INFO = {
2+
manta: {
3+
address: "0x0000000000000000000000000000000000000000",
4+
}
5+
}

src/slpx.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export class Slpx {
2+
private rspId: string;
3+
4+
constructor(rspId: string = "bifrost") {
5+
this.rspId = rspId;
6+
}
7+
8+
public getRspId(): string {
9+
return this.rspId;
10+
}
11+
}

0 commit comments

Comments
 (0)