Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

[DO NOT MERGE] Expose IssuedCurrencyClient and others for IOU Minidemo Build #928

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "xpring-js",
"version": "5.3.0",
"description": "XpringJS provides a Javascript based SDK for interacting with the Ripple Ledger.",
"main": "build/index.js",
"main": "build/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/xpring-eng/Xpring-JS.git"
Expand Down
6 changes: 6 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export {
ClassicAddress,
PayIdUtils,
Wallet,
WalletFactory,
WalletGenerationResult,
Utils,
XrplNetwork,
Expand Down Expand Up @@ -44,3 +45,8 @@ export { default as IlpError, IlpErrorType } from './ILP/ilp-error'

/** Xpring Functionality. */
export { default as XpringClient } from './Xpring/xpring-client'

/** IOU Functionality. */
export { default as IssuedCurrencyClient } from './XRP/issued-currency-client'

export { default as XRPTestUtils } from '../test/XRP/helpers/xrp-test-utils'