Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@connext/cf-types

Package Overview
Dependencies
Maintainers
4
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@connext/cf-types - npm Package Compare versions

Comparing version 1.2.9 to 1.2.10

.prettierrc

2

dist/index-iife.js

@@ -47,2 +47,3 @@ this.window = this.window || {};

RpcMethodName["INSTALL"] = "chan_install";
RpcMethodName["REQUEST_DEPOSIT_RIGHTS"] = "chan_requestDepositRights";
RpcMethodName["INSTALL_VIRTUAL"] = "chan_installVirtual";

@@ -55,2 +56,3 @@ RpcMethodName["PROPOSE_INSTALL"] = "chan_proposeInstall";

RpcMethodName["UNINSTALL_VIRTUAL"] = "chan_uninstallVirtual";
RpcMethodName["RESCIND_DEPOSIT_RIGHTS"] = "chan_rescindDepositRights";
RpcMethodName["WITHDRAW"] = "chan_withdraw";

@@ -57,0 +59,0 @@ RpcMethodName["WITHDRAW_COMMITMENT"] = "chan_withdrawCommitment";

@@ -46,2 +46,3 @@ const multiAssetMultiPartyCoinTransferInterpreterParamsEncoding = `tuple(uint256[] limit, address[] tokenAddresses)`;

RpcMethodName["INSTALL"] = "chan_install";
RpcMethodName["REQUEST_DEPOSIT_RIGHTS"] = "chan_requestDepositRights";
RpcMethodName["INSTALL_VIRTUAL"] = "chan_installVirtual";

@@ -54,2 +55,3 @@ RpcMethodName["PROPOSE_INSTALL"] = "chan_proposeInstall";

RpcMethodName["UNINSTALL_VIRTUAL"] = "chan_uninstallVirtual";
RpcMethodName["RESCIND_DEPOSIT_RIGHTS"] = "chan_rescindDepositRights";
RpcMethodName["WITHDRAW"] = "chan_withdraw";

@@ -56,0 +58,0 @@ RpcMethodName["WITHDRAW_COMMITMENT"] = "chan_withdrawCommitment";

@@ -47,2 +47,3 @@ 'use strict';

RpcMethodName["INSTALL"] = "chan_install";
RpcMethodName["REQUEST_DEPOSIT_RIGHTS"] = "chan_requestDepositRights";
RpcMethodName["INSTALL_VIRTUAL"] = "chan_installVirtual";

@@ -55,2 +56,3 @@ RpcMethodName["PROPOSE_INSTALL"] = "chan_proposeInstall";

RpcMethodName["UNINSTALL_VIRTUAL"] = "chan_uninstallVirtual";
RpcMethodName["RESCIND_DEPOSIT_RIGHTS"] = "chan_rescindDepositRights";
RpcMethodName["WITHDRAW"] = "chan_withdraw";

@@ -57,0 +59,0 @@ RpcMethodName["WITHDRAW_COMMITMENT"] = "chan_withdrawCommitment";

@@ -65,2 +65,3 @@ import { BigNumber, BigNumberish } from "ethers/utils";

INSTALL = "chan_install",
REQUEST_DEPOSIT_RIGHTS = "chan_requestDepositRights",
INSTALL_VIRTUAL = "chan_installVirtual",

@@ -73,2 +74,3 @@ PROPOSE_INSTALL = "chan_proposeInstall",

UNINSTALL_VIRTUAL = "chan_uninstallVirtual",
RESCIND_DEPOSIT_RIGHTS = "chan_rescindDepositRights",
WITHDRAW = "chan_withdraw",

@@ -127,3 +129,8 @@ WITHDRAW_COMMITMENT = "chan_withdrawCommitment"

multisigBalance: BigNumber;
tokenAddress: string;
};
type RequestDepositRightsResult = {
multisigBalance: BigNumber;
recipient: string;
};
type GetAppInstanceDetailsParams = {

@@ -183,2 +190,6 @@ appInstanceId: string;

};
type RequestDepositRightsParams = {
multisigAddress: string;
tokenAddress?: string;
};
type InstallResult = {

@@ -225,2 +236,6 @@ appInstance: AppInstanceJson;

};
type RescindDepositRightsParams = {
multisigAddress: string;
tokenAddress?: string;
};
type UninstallResult = {};

@@ -227,0 +242,0 @@ type UninstallVirtualParams = UninstallParams & {

@@ -27,2 +27,3 @@ export var Node;

RpcMethodName["INSTALL"] = "chan_install";
RpcMethodName["REQUEST_DEPOSIT_RIGHTS"] = "chan_requestDepositRights";
RpcMethodName["INSTALL_VIRTUAL"] = "chan_installVirtual";

@@ -35,2 +36,3 @@ RpcMethodName["PROPOSE_INSTALL"] = "chan_proposeInstall";

RpcMethodName["UNINSTALL_VIRTUAL"] = "chan_uninstallVirtual";
RpcMethodName["RESCIND_DEPOSIT_RIGHTS"] = "chan_rescindDepositRights";
RpcMethodName["WITHDRAW"] = "chan_withdraw";

@@ -37,0 +39,0 @@ RpcMethodName["WITHDRAW_COMMITMENT"] = "chan_withdrawCommitment";

2

package.json
{
"name": "@connext/cf-types",
"version": "1.2.9",
"version": "1.2.10",
"description": "TypeScript typings for common Counterfactual types",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -106,2 +106,3 @@ import { BigNumber, BigNumberish } from "ethers/utils";

INSTALL = "chan_install",
REQUEST_DEPOSIT_RIGHTS = "chan_requestDepositRights",
INSTALL_VIRTUAL = "chan_installVirtual",

@@ -114,2 +115,3 @@ PROPOSE_INSTALL = "chan_proposeInstall",

UNINSTALL_VIRTUAL = "chan_uninstallVirtual",
RESCIND_DEPOSIT_RIGHTS = "chan_rescindDepositRights",
WITHDRAW = "chan_withdraw",

@@ -179,4 +181,10 @@ WITHDRAW_COMMITMENT = "chan_withdrawCommitment"

multisigBalance: BigNumber;
tokenAddress: string;
};
export type RequestDepositRightsResult = {
multisigBalance: BigNumber;
recipient: string;
};
export type GetAppInstanceDetailsParams = {

@@ -255,2 +263,7 @@ appInstanceId: string;

export type RequestDepositRightsParams = {
multisigAddress: string;
tokenAddress?: string;
};
export type InstallResult = {

@@ -309,2 +322,7 @@ appInstance: AppInstanceJson;

export type RescindDepositRightsParams = {
multisigAddress: string;
tokenAddress?: string;
};
export type UninstallResult = {};

@@ -311,0 +329,0 @@

{
"extends": ["../../tslint.json"]
"extends": ["../../tslint.json"],
"rules": {
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"trailing-comma": false,
"typedef": false
}
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc