Skip to content
Open
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
11 changes: 7 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eximchain/dappbot-types",
"version": "1.7.13",
"version": "1.7.14",
"description": "Typescript bindings to interact with the DappBot API",
"main": "build/index.js",
"types": "spec/index.ts",
Expand Down Expand Up @@ -28,9 +28,9 @@
},
"homepage": "https://eximchain.github.io/dappbot-types",
"dependencies": {
"@eximchain/api-types": "^1.0.4",
"@types/stripe": "^6.32.13",
"ts-xor": "^1.0.8",
"@eximchain/api-types": "^1.0.1"
"ts-xor": "^1.0.8"
},
"peerDependencies": {
"@types/stripe": "6.31.25"
Expand Down
128 changes: 0 additions & 128 deletions spec/dapp/chains.ts

This file was deleted.

2 changes: 1 addition & 1 deletion spec/dapp/dapp.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { keysAreStrings, isString, isObject } from '@eximchain/api-types/spec/validators';
import * as Chains from './chains';
import * as Chains from '@eximchain/api-types/spec/chains';

// This line makes Chain part of the Dapp
// namespace, supporting calls like:
Expand Down
2 changes: 1 addition & 1 deletion spec/dapp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// then a consumer would have to do it in order
// to get a convenient namespace.
import * as Dapp from './dapp';
import * as ChainTypes from './chains';
import * as ChainTypes from '@eximchain/api-types/spec/chains';

// This line directly surfaces all of its non-default
// exports from right here, so that users can just
Expand Down