Get started
Installation instructions
$ npm install @PixelBridge/bridge-core-sdk$ yarn add @PixelBridge/bridge-core-sdk$ pnpm add @PixelBridge/bridge-core-sdkimport { PixelBridgeCoreSdk, nodeRpcUrlsDefault } from "@PixelBridge/bridge-core-sdk";
// Connections to blockchains will be made through your rpc-urls passed during initialization
const sdk = new PixelBridgeCoreSdk({
...nodeRpcUrlsDefault,
TRX: "your trx-rpc-url",
ETH: "your eth-rpc-url"
});Last updated