vue-3-useeosiowallet
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -1,11 +0,11 @@ | ||
export interface UseWalletProvider { | ||
export declare type UseWalletProvider = { | ||
logout: () => Promise<void>; | ||
setup: (appName: string, chain: EosioChain) => Promise<void>; | ||
login: () => Promise<string>; | ||
} | ||
export interface EosioChain { | ||
}; | ||
export declare type EosioChain = { | ||
id: string; | ||
chainId: string; | ||
nodeUrl: string; | ||
} | ||
}; | ||
export declare enum Wallet { | ||
@@ -12,0 +12,0 @@ Scatter = "scatter", |
{ | ||
"name": "vue-3-useeosiowallet", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -6,13 +6,13 @@ import { computed, ref } from 'vue'; | ||
export interface UseWalletProvider { | ||
export type UseWalletProvider = { | ||
logout: () => Promise<void>; | ||
setup: (appName: string, chain: EosioChain) => Promise<void>; | ||
login: () => Promise<string>; | ||
} | ||
}; | ||
export interface EosioChain { | ||
export type EosioChain = { | ||
id: string; | ||
chainId: string; | ||
nodeUrl: string; | ||
} | ||
}; | ||
@@ -19,0 +19,0 @@ export enum Wallet { |
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
35790