File tree 2 files changed +5
-18
lines changed
2 files changed +5
-18
lines changed Original file line number Diff line number Diff line change 1
1
export * as API from './packages/api/src/index'
2
2
3
- export * from './packages/api/src/connections /index'
4
-
3
+ export * from './packages/api/src/substrate /index'
4
+ export * from './packages/api/src/subsocial/index'
5
5
export * from './packages/api/src/utils/index'
6
- export * from './packages/api/src/utils/types'
7
-
8
- export * as DTO from './packages/types/src/dto/index'
9
-
10
- export * from './packages/types/src/offchain/index'
11
- export * from './packages/types/src/offchain/search'
12
-
13
- export * from './packages/types/src/substrate/interfaceRegistry'
14
- export * from './packages/types/src/substrate/preparedTypes'
15
- export * from './packages/types/src/substrate/register'
16
- export * from './packages/types/src/substrate/registry'
17
-
18
- export * from './packages/types/src/substrate/classes/index'
6
+ export * as IPFS from './packages/api/src/ipfs/index'
7
+ export * as types from './packages/api/src/types/index'
19
8
20
- export * as Interfaces from './packages/types/src/substrate/interfaces/index'
21
- export * from '@subsocial/types/build/substrate/utils'
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ export class SubsocialIpfsApi {
217
217
}
218
218
}
219
219
220
- /** Add content in IPFS via Offchain */
220
+ /** Add content in IPFS using unixFs format */
221
221
async saveContentToIpfs ( content : AnyJson | CommonContent ) {
222
222
const data = await this . client . add ( JSON . stringify ( content ) , { headers : this . writeHeaders } )
223
223
return data . cid . toV1 ( ) . toString ( )
You can’t perform that action at this time.
0 commit comments