@web3-react/types
Advanced tools
Comparing version 8.0.11-alpha.0 to 8.0.11-beta.0
@@ -11,11 +11,16 @@ /// <reference types="node" /> | ||
export declare type Web3ReactStore = StoreApi<Web3ReactState>; | ||
export interface Web3ReactStateUpdate { | ||
chainId?: number; | ||
accounts?: string[]; | ||
} | ||
export declare type Web3ReactStateUpdate = { | ||
chainId: number; | ||
accounts: string[]; | ||
} | { | ||
chainId: number; | ||
accounts?: never; | ||
} | { | ||
chainId?: never; | ||
accounts: string[]; | ||
}; | ||
export interface Actions { | ||
startActivation: () => void; | ||
startActivation: () => () => void; | ||
update: (stateUpdate: Web3ReactStateUpdate) => void; | ||
reportError: (error: Error) => void; | ||
reset: () => void; | ||
reportError: (error: Error | undefined) => void; | ||
} | ||
@@ -29,8 +34,55 @@ export interface RequestArguments { | ||
} | ||
export interface ProviderConnectInfo { | ||
readonly chainId: string; | ||
} | ||
export interface ProviderRpcError extends Error { | ||
message: string; | ||
code: number; | ||
data?: unknown; | ||
} | ||
export interface AddEthereumChainParameter { | ||
chainId: number; | ||
chainName: string; | ||
nativeCurrency: { | ||
name: string; | ||
symbol: string; | ||
decimals: 18; | ||
}; | ||
rpcUrls: string[]; | ||
blockExplorerUrls?: string[]; | ||
iconUrls?: string[]; | ||
} | ||
export declare abstract class Connector { | ||
/** | ||
* An | ||
* EIP-1193 ({@link https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1193.md}) and | ||
* EIP-1102 ({@link https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1102.md}) compliant provider. | ||
* May also comply with EIP-3085 ({@link https://github.com/ethereum/EIPs/blob/master/EIPS/eip-3085.md}). | ||
* This property must be defined while the connector is active, unless a customProvider is provided. | ||
*/ | ||
provider: Provider | undefined; | ||
/** | ||
* An optional property meant to allow ethers providers to be used directly rather than via the experimental | ||
* 1193 bridge. If desired, this property must be defined while the connector is active, in which case it will | ||
* be preferred over provider. | ||
*/ | ||
customProvider: unknown | undefined; | ||
protected readonly actions: Actions; | ||
/** | ||
* @param actions - Methods bound to a zustand store that tracks the state of the connector. | ||
* Actions are used by the connector to report changes in connection status. | ||
*/ | ||
constructor(actions: Actions); | ||
abstract activate(...args: any[]): Promise<void> | void; | ||
deactivate?(...args: any[]): Promise<void> | void; | ||
/** | ||
* Attempt to initiate a connection, failing silently | ||
*/ | ||
connectEagerly?(...args: unknown[]): Promise<void> | void; | ||
/** | ||
* Initiate a connection. | ||
*/ | ||
abstract activate(...args: unknown[]): Promise<void> | void; | ||
/** | ||
* Initiate a disconnect. | ||
*/ | ||
deactivate(...args: unknown[]): Promise<void> | void; | ||
} |
@@ -1,5 +0,20 @@ | ||
export class Connector { | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Connector = void 0; | ||
class Connector { | ||
/** | ||
* @param actions - Methods bound to a zustand store that tracks the state of the connector. | ||
* Actions are used by the connector to report changes in connection status. | ||
*/ | ||
constructor(actions) { | ||
this.actions = actions; | ||
} | ||
/** | ||
* Initiate a disconnect. | ||
*/ | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
deactivate(...args) { | ||
this.actions.reportError(undefined); | ||
} | ||
} | ||
exports.Connector = Connector; |
{ | ||
"name": "@web3-react/types", | ||
"keywords": [ | ||
"web3-react" | ||
], | ||
"author": "Noah Zinsmeister <noahwz@gmail.com>", | ||
"license": "GPL-3.0-or-later", | ||
"repository": "github:NoahZinsmeister/web3-react", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"version": "8.0.11-alpha.0", | ||
"type": "module", | ||
"version": "8.0.11-beta.0", | ||
"files": [ | ||
"dist/*" | ||
], | ||
"exports": { | ||
"import": "./dist/index.js" | ||
}, | ||
"module": "./dist/index.js", | ||
"type": "commonjs", | ||
"types": "./dist/index.d.ts", | ||
"main": "./dist/index.js", | ||
"exports": "./dist/index.js", | ||
"scripts": { | ||
@@ -21,6 +25,6 @@ "prebuild": "rm -rf dist", | ||
}, | ||
"peerDependencies": { | ||
"zustand": "^3.5.10" | ||
"dependencies": { | ||
"zustand": "^4.0.0-beta.2" | ||
}, | ||
"gitHead": "49d36f79b370da852ce9c25dde73600615963498" | ||
"gitHead": "b0c7174f076727da6eef9758e48eed23dd9cadb7" | ||
} |
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
Copyleft License
License(Experimental) Copyleft license information was found.
Found 1 instance in 1 package
Mixed license
License(Experimental) Package contains multiple licenses.
Found 1 instance in 1 package
Non-permissive License
License(Experimental) A license not known to be considered permissive was found.
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
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
Copyleft License
License(Experimental) Copyleft license information was found.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
Non-permissive License
License(Experimental) A license not known to be considered permissive was found.
Found 1 instance in 1 package
39300
5
106
1
0
2
3
No
+ Addedzustand@^4.0.0-beta.2
+ Addedjs-tokens@4.0.0(transitive)
+ Addedloose-envify@1.4.0(transitive)
+ Addedreact@18.3.1(transitive)
+ Addeduse-sync-external-store@1.2.2(transitive)
+ Addedzustand@4.5.5(transitive)
- Removedzustand@3.7.2(transitive)