Skip to content

Commit 3691db2

Browse files
authored
Merge pull request #5698 from BitGo/BTC-1826.vendor-babylonlabs-toplevel
feat(deps): vendor babylonlabs-io-btc-staking-ts module
2 parents 57c92eb + e7afe6a commit 3691db2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+4798
-4
lines changed

.codeqlignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# ignore vendored modules
2+
modules/babylonlabs-io-btc-staking-ts

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
modules/babylonlabs-io-btc-staking-ts

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ protobuf/
55
*.json
66
*.min.js
77
CHANGELOG.md
8+
9+
10+
modules/babylonlabs-io-btc-staking-ts/

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
/modules/utxo-lib/ @BitGo/btc-team
2929
/modules/utxo-ord/ @BitGo/btc-team
3030
/modules/utxo-staking/ @BitGo/btc-team
31+
/modules/babylonlabs-io-btc-staking-ts @BitGo/btc-team
3132

3233
# Lightning coin modules
3334
/modules/abstract-lightning/ @BitGo/btc-team
Lines changed: 210 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,210 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/node,macos,windows
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,macos,windows
3+
4+
### macOS ###
5+
# General
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# Visual Studio Code
11+
.vscode
12+
13+
# Icon must end with two \r
14+
Icon
15+
16+
17+
# Thumbnails
18+
._*
19+
20+
# Files that might appear in the root of a volume
21+
.DocumentRevisions-V100
22+
.fseventsd
23+
.Spotlight-V100
24+
.TemporaryItems
25+
.Trashes
26+
.VolumeIcon.icns
27+
.com.apple.timemachine.donotpresent
28+
29+
# Directories potentially created on remote AFP share
30+
.AppleDB
31+
.AppleDesktop
32+
Network Trash Folder
33+
Temporary Items
34+
.apdisk
35+
36+
### macOS Patch ###
37+
# iCloud generated files
38+
*.icloud
39+
40+
### Node ###
41+
# Logs
42+
logs
43+
*.log
44+
npm-debug.log*
45+
yarn-debug.log*
46+
yarn-error.log*
47+
lerna-debug.log*
48+
.pnpm-debug.log*
49+
50+
# Diagnostic reports (https://nodejs.org/api/report.html)
51+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
52+
53+
# Runtime data
54+
pids
55+
*.pid
56+
*.seed
57+
*.pid.lock
58+
59+
# Directory for instrumented libs generated by jscoverage/JSCover
60+
lib-cov
61+
62+
# Coverage directory used by tools like istanbul
63+
coverage
64+
*.lcov
65+
66+
# nyc test coverage
67+
.nyc_output
68+
69+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
70+
.grunt
71+
72+
# Bower dependency directory (https://bower.io/)
73+
bower_components
74+
75+
# node-waf configuration
76+
.lock-wscript
77+
78+
# Compiled binary addons (https://nodejs.org/api/addons.html)
79+
build/Release
80+
81+
# Dependency directories
82+
node_modules/
83+
jspm_packages/
84+
85+
# Snowpack dependency directory (https://snowpack.dev/)
86+
web_modules/
87+
88+
# TypeScript cache
89+
*.tsbuildinfo
90+
91+
# Optional npm cache directory
92+
.npm
93+
94+
# Optional eslint cache
95+
.eslintcache
96+
97+
# Optional stylelint cache
98+
.stylelintcache
99+
100+
# Microbundle cache
101+
.rpt2_cache/
102+
.rts2_cache_cjs/
103+
.rts2_cache_es/
104+
.rts2_cache_umd/
105+
106+
# Optional REPL history
107+
.node_repl_history
108+
109+
# Output of 'npm pack'
110+
*.tgz
111+
112+
# Yarn Integrity file
113+
.yarn-integrity
114+
115+
# dotenv environment variable files
116+
.env
117+
.env.development.local
118+
.env.test.local
119+
.env.production.local
120+
.env.local
121+
122+
# parcel-bundler cache (https://parceljs.org/)
123+
.cache
124+
.parcel-cache
125+
126+
# Next.js build output
127+
.next
128+
out
129+
130+
# Nuxt.js build / generate output
131+
.nuxt
132+
dist
133+
134+
# Gatsby files
135+
.cache/
136+
# Comment in the public line in if your project uses Gatsby and not Next.js
137+
# https://nextjs.org/blog/next-9-1#public-directory-support
138+
# public
139+
140+
# vuepress build output
141+
.vuepress/dist
142+
143+
# vuepress v2.x temp and cache directory
144+
.temp
145+
146+
# Docusaurus cache and generated files
147+
.docusaurus
148+
149+
# Serverless directories
150+
.serverless/
151+
152+
# FuseBox cache
153+
.fusebox/
154+
155+
# DynamoDB Local files
156+
.dynamodb/
157+
158+
# TernJS port file
159+
.tern-port
160+
161+
# Stores VSCode versions used for testing VSCode extensions
162+
.vscode-test
163+
164+
# yarn v2
165+
.yarn/cache
166+
.yarn/unplugged
167+
.yarn/build-state.yml
168+
.yarn/install-state.gz
169+
.pnp.*
170+
171+
### Node Patch ###
172+
# Serverless Webpack directories
173+
.webpack/
174+
175+
# Optional stylelint cache
176+
177+
# SvelteKit build / generate output
178+
.svelte-kit
179+
180+
### Windows ###
181+
# Windows thumbnail cache files
182+
Thumbs.db
183+
Thumbs.db:encryptable
184+
ehthumbs.db
185+
ehthumbs_vista.db
186+
187+
# Dump file
188+
*.stackdump
189+
190+
# Folder config file
191+
[Dd]esktop.ini
192+
193+
# Recycle Bin used on file shares
194+
$RECYCLE.BIN/
195+
196+
# Windows Installer files
197+
*.cab
198+
*.msi
199+
*.msix
200+
*.msm
201+
*.msp
202+
203+
# Windows shortcuts
204+
*.lnk
205+
206+
# End of https://www.toptal.com/developers/gitignore/api/node,macos,windows
207+
*.swp
208+
*.swo
209+
210+
build/

0 commit comments

Comments
 (0)