@0xcert/scaffold
Advanced tools
Comparing version 1.0.0-rc4 to 1.0.0-rc5
@@ -5,4 +5,4 @@ { | ||
{ | ||
"version": "1.0.0-rc4", | ||
"tag": "@0xcert/scaffold_v1.0.0-rc4", | ||
"version": "1.0.0-rc5", | ||
"tag": "@0xcert/scaffold_v1.0.0-rc5", | ||
"date": "Thu, 22 Nov 2018 00:51:03 GMT", | ||
@@ -9,0 +9,0 @@ "comments": {} |
export interface ProviderBase { | ||
accountId: string; | ||
} | ||
export declare enum ProviderEvent { | ||
ACCOUNT_CHANGE = "accountChanged", | ||
NETWORK_CHANGE = "networkChanged" | ||
} | ||
export declare enum ProviderIssue { | ||
@@ -5,0 +9,0 @@ GENERAL = 0 |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var ProviderEvent; | ||
(function (ProviderEvent) { | ||
ProviderEvent["ACCOUNT_CHANGE"] = "accountChanged"; | ||
ProviderEvent["NETWORK_CHANGE"] = "networkChanged"; | ||
})(ProviderEvent = exports.ProviderEvent || (exports.ProviderEvent = {})); | ||
var ProviderIssue; | ||
@@ -4,0 +9,0 @@ (function (ProviderIssue) { |
{ | ||
"name": "@0xcert/scaffold", | ||
"version": "1.0.0-rc4", | ||
"version": "1.0.0-rc5", | ||
"description": "Overarching module with types, enums, and interfaces for easier development of interoperable modules.", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -9,2 +9,10 @@ /** | ||
/** | ||
* Provider events. | ||
*/ | ||
export enum ProviderEvent { | ||
ACCOUNT_CHANGE = 'accountChanged', | ||
NETWORK_CHANGE = 'networkChanged', | ||
} | ||
/** | ||
* Error codes. | ||
@@ -11,0 +19,0 @@ */ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
41804
887