Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,11 @@ dependencies
.yarn/install-state.gz

coverage/

# Deployment files
deployments/*.json
!deployments/*.example.json

# TypeScript build artifacts
*.tsbuildinfo
packages/*/dist/
22 changes: 22 additions & 0 deletions packages/abis/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# TypeScript build outputs
dist/
*.tsbuildinfo

# Generated JS and declaration files in src
# (Keep only .ts source files in version control)
src/**/*.js
src/**/*.d.ts
src/**/*.d.ts.map

# Dependencies
node_modules/

# Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Misc
.DS_Store

2 changes: 2 additions & 0 deletions packages/abis/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import xDN404BaseAbi from './xDN404Base.js';
import xMorseAbi from './xMorse.js';
import xMorseCollateralAbi from './xMorseCollateral.js';
import xMorseStakingAbi from './xMorseStaking.js';
import interfacesExports from './interfaces/index.js';
import libsExports from './libs/index.js';
import peripheryExports from './periphery/index.js';
Expand All @@ -9,6 +10,7 @@ const abis = {
xDN404Base: xDN404BaseAbi,
xMorse: xMorseAbi,
xMorseCollateral: xMorseCollateralAbi,
xMorseStaking: xMorseStakingAbi,
interfaces: interfacesExports,
libs: libsExports,
periphery: peripheryExports,
Expand Down
Loading
Loading