@dfns/blockchain-integration
Advanced tools
Comparing version 1.0.5 to 1.0.6
@@ -1,2 +0,2 @@ | ||
import { WalletInterface } from "../types/wallet"; | ||
export declare function createLambdaHandler(WalletImplementation: WalletInterface, prefix: string): (lambdaEvent: any, context: any) => Promise<any>; | ||
import { WalletConstructor } from "../types/wallet"; | ||
export declare function createLambdaHandler(WalletImplementation: WalletConstructor, prefix: string): (lambdaEvent: any, context: any) => Promise<any>; |
import { TransactionResponse } from "./responses"; | ||
import { SendPaymentTxParams } from "./requests"; | ||
import { SignerAsync } from "../types/signer"; | ||
export interface WalletConstructor { | ||
new (signer: SignerAsync): WalletInterface; | ||
} | ||
export interface WalletInterface { | ||
new (signer: SignerAsync): WalletInterface; | ||
getAddress(): Promise<string>; | ||
@@ -7,0 +9,0 @@ getBalance(): Promise<string>; |
{ | ||
"name": "@dfns/blockchain-integration", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Blockchain integration Kit for DFNS", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
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
8463
195