polkadot-js/api

View on GitHub
packages/rpc-provider/src/defaults.ts

Summary

Maintainability
A
0 mins
Test Coverage
// Copyright 2017-2024 @polkadot/rpc-provider authors & contributors
// SPDX-License-Identifier: Apache-2.0

const HTTP_URL = 'http://127.0.0.1:9933';
const WS_URL = 'ws://127.0.0.1:9944';

export default {
  HTTP_URL,
  WS_URL
};