@portal-hq/utils
Advanced tools
Comparing version 0.3.1 to 0.3.2
{ | ||
"name": "@portal-hq/utils", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"main": "lib/commonjs/index", | ||
@@ -5,0 +5,0 @@ "module": "lib/esm/index", |
@@ -25,5 +25,6 @@ export { convertLocalToCrypto, convertCryptoToLocal, convert } from './currency' | ||
type ClientWithCustodianData, | ||
type Contract, | ||
type Address, | ||
type Dapp, | ||
type DappImage, | ||
type DappOnNetwork, | ||
type DkgData, | ||
@@ -30,0 +31,0 @@ type HttpOptions, |
@@ -22,13 +22,23 @@ export type OutgoingRequestData = MessageData | SignableTransactionData | ||
export interface Contract { | ||
export interface Address { | ||
id: string | ||
contractAddress: string | ||
clientUrl: string | ||
network: Network | ||
value: string | ||
} | ||
export interface DappOnNetwork { | ||
clientUrl?: string | ||
dapp: Dapp | ||
dappId: string | ||
id: string | ||
network: Network | ||
networkId: string | ||
} | ||
export interface Dapp { | ||
id: string | ||
contracts: Contract[] | ||
name: string | ||
addresses: Address[] | ||
dappOnNetworks: DappOnNetwork[] | ||
image: DappImage | ||
@@ -114,3 +124,3 @@ } | ||
export interface RequesterOptions { } | ||
export interface RequesterOptions {} | ||
@@ -117,0 +127,0 @@ export interface RpcErrorDefinition { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
100961
62
3167