mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
* Bump @oceanprotocol/contracts from 0.6.3 to 0.6.4 Bumps [@oceanprotocol/contracts](https://github.com/oceanprotocol/contracts) from 0.6.3 to 0.6.4. - [Release notes](https://github.com/oceanprotocol/contracts/releases) - [Changelog](https://github.com/oceanprotocol/contracts/blob/main/CHANGELOG.md) - [Commits](https://github.com/oceanprotocol/contracts/compare/v0.6.3...v0.6.4) --- updated-dependencies: - dependency-name: "@oceanprotocol/contracts" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * use startBlock & chainId from contracts * export network metadata * less repetetive network metadata * switch Polygon mainnet URLs * typing fixes * package bumps Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: alexcos20 <alex.coseru@gmail.com> Co-authored-by: Matthias Kretschmann <m@kretschmann.io>
39 lines
890 B
TypeScript
39 lines
890 B
TypeScript
import Config from './models/Config'
|
|
import Account from './ocean/Account'
|
|
import DID from './ocean/DID'
|
|
import { Ocean } from './ocean/Ocean'
|
|
import { LoggerInstance as Logger, LogLevel } from './utils/Logger'
|
|
import { MetadataCache } from './metadatacache/MetadataCache'
|
|
import { DataTokens } from './datatokens/Datatokens'
|
|
import { ConfigHelper, ConfigHelperConfig } from './utils/ConfigHelper'
|
|
|
|
import * as utils from './utils'
|
|
import { Provider } from './provider/Provider'
|
|
|
|
// Exports
|
|
export * from './ddo/DDO'
|
|
export * from './ddo/interfaces'
|
|
|
|
export { CreateProgressStep, OrderProgressStep } from './ocean/Assets'
|
|
|
|
export {
|
|
OceanPlatformTechStatus,
|
|
OceanPlatformTech,
|
|
OceanPlatformVersions
|
|
} from './ocean/Versions'
|
|
|
|
export {
|
|
Ocean,
|
|
Account,
|
|
Config,
|
|
DID,
|
|
Logger,
|
|
LogLevel,
|
|
Provider,
|
|
MetadataCache,
|
|
DataTokens,
|
|
utils,
|
|
ConfigHelper,
|
|
ConfigHelperConfig
|
|
}
|