10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
import { sdk } from './sdk'
|
|
|
|
export const setDependencies = sdk.setupDependencies(async ({ effects }) => ({
|
|
bitcoind: {
|
|
kind: 'running',
|
|
versionRange: '>=31.0:0 <32.0:0',
|
|
healthChecks: ['bitcoind'],
|
|
},
|
|
}))
|