@connext/cf-types
Advanced tools
Comparing version 1.2.18 to 1.2.19
@@ -47,3 +47,2 @@ this.window = this.window || {}; | ||
RpcMethodName["INSTALL"] = "chan_install"; | ||
RpcMethodName["REQUEST_DEPOSIT_RIGHTS"] = "chan_requestDepositRights"; | ||
RpcMethodName["INSTALL_VIRTUAL"] = "chan_installVirtual"; | ||
@@ -56,3 +55,2 @@ RpcMethodName["PROPOSE_INSTALL"] = "chan_proposeInstall"; | ||
RpcMethodName["UNINSTALL_VIRTUAL"] = "chan_uninstallVirtual"; | ||
RpcMethodName["RESCIND_DEPOSIT_RIGHTS"] = "chan_rescindDepositRights"; | ||
RpcMethodName["WITHDRAW"] = "chan_withdraw"; | ||
@@ -59,0 +57,0 @@ RpcMethodName["WITHDRAW_COMMITMENT"] = "chan_withdrawCommitment"; |
@@ -46,3 +46,2 @@ const multiAssetMultiPartyCoinTransferInterpreterParamsEncoding = `tuple(uint256[] limit, address[] tokenAddresses)`; | ||
RpcMethodName["INSTALL"] = "chan_install"; | ||
RpcMethodName["REQUEST_DEPOSIT_RIGHTS"] = "chan_requestDepositRights"; | ||
RpcMethodName["INSTALL_VIRTUAL"] = "chan_installVirtual"; | ||
@@ -55,3 +54,2 @@ RpcMethodName["PROPOSE_INSTALL"] = "chan_proposeInstall"; | ||
RpcMethodName["UNINSTALL_VIRTUAL"] = "chan_uninstallVirtual"; | ||
RpcMethodName["RESCIND_DEPOSIT_RIGHTS"] = "chan_rescindDepositRights"; | ||
RpcMethodName["WITHDRAW"] = "chan_withdraw"; | ||
@@ -58,0 +56,0 @@ RpcMethodName["WITHDRAW_COMMITMENT"] = "chan_withdrawCommitment"; |
@@ -47,3 +47,2 @@ 'use strict'; | ||
RpcMethodName["INSTALL"] = "chan_install"; | ||
RpcMethodName["REQUEST_DEPOSIT_RIGHTS"] = "chan_requestDepositRights"; | ||
RpcMethodName["INSTALL_VIRTUAL"] = "chan_installVirtual"; | ||
@@ -56,3 +55,2 @@ RpcMethodName["PROPOSE_INSTALL"] = "chan_proposeInstall"; | ||
RpcMethodName["UNINSTALL_VIRTUAL"] = "chan_uninstallVirtual"; | ||
RpcMethodName["RESCIND_DEPOSIT_RIGHTS"] = "chan_rescindDepositRights"; | ||
RpcMethodName["WITHDRAW"] = "chan_withdraw"; | ||
@@ -59,0 +57,0 @@ RpcMethodName["WITHDRAW_COMMITMENT"] = "chan_withdrawCommitment"; |
@@ -65,3 +65,2 @@ import { BigNumber, BigNumberish } from "ethers/utils"; | ||
INSTALL = "chan_install", | ||
REQUEST_DEPOSIT_RIGHTS = "chan_requestDepositRights", | ||
INSTALL_VIRTUAL = "chan_installVirtual", | ||
@@ -74,3 +73,2 @@ PROPOSE_INSTALL = "chan_proposeInstall", | ||
UNINSTALL_VIRTUAL = "chan_uninstallVirtual", | ||
RESCIND_DEPOSIT_RIGHTS = "chan_rescindDepositRights", | ||
WITHDRAW = "chan_withdraw", | ||
@@ -129,11 +127,3 @@ WITHDRAW_COMMITMENT = "chan_withdrawCommitment" | ||
multisigBalance: BigNumber; | ||
tokenAddress: string; | ||
}; | ||
type RequestDepositRightsResult = { | ||
freeBalance: { | ||
[s: string]: BigNumber; | ||
}; | ||
recipient: string; | ||
tokenAddress: string; | ||
}; | ||
type GetAppInstanceDetailsParams = { | ||
@@ -193,6 +183,2 @@ appInstanceId: string; | ||
}; | ||
type RequestDepositRightsParams = { | ||
multisigAddress: string; | ||
tokenAddress?: string; | ||
}; | ||
type InstallResult = { | ||
@@ -239,6 +225,2 @@ appInstance: AppInstanceJson; | ||
}; | ||
type RescindDepositRightsParams = { | ||
multisigAddress: string; | ||
tokenAddress?: string; | ||
}; | ||
type UninstallResult = {}; | ||
@@ -245,0 +227,0 @@ type UninstallVirtualParams = UninstallParams & { |
@@ -27,3 +27,2 @@ export var Node; | ||
RpcMethodName["INSTALL"] = "chan_install"; | ||
RpcMethodName["REQUEST_DEPOSIT_RIGHTS"] = "chan_requestDepositRights"; | ||
RpcMethodName["INSTALL_VIRTUAL"] = "chan_installVirtual"; | ||
@@ -36,3 +35,2 @@ RpcMethodName["PROPOSE_INSTALL"] = "chan_proposeInstall"; | ||
RpcMethodName["UNINSTALL_VIRTUAL"] = "chan_uninstallVirtual"; | ||
RpcMethodName["RESCIND_DEPOSIT_RIGHTS"] = "chan_rescindDepositRights"; | ||
RpcMethodName["WITHDRAW"] = "chan_withdraw"; | ||
@@ -39,0 +37,0 @@ RpcMethodName["WITHDRAW_COMMITMENT"] = "chan_withdrawCommitment"; |
{ | ||
"name": "@connext/cf-types", | ||
"version": "1.2.18", | ||
"version": "1.2.19", | ||
"description": "TypeScript typings for common Counterfactual types", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -106,3 +106,2 @@ import { BigNumber, BigNumberish } from "ethers/utils"; | ||
INSTALL = "chan_install", | ||
REQUEST_DEPOSIT_RIGHTS = "chan_requestDepositRights", | ||
INSTALL_VIRTUAL = "chan_installVirtual", | ||
@@ -115,3 +114,2 @@ PROPOSE_INSTALL = "chan_proposeInstall", | ||
UNINSTALL_VIRTUAL = "chan_uninstallVirtual", | ||
RESCIND_DEPOSIT_RIGHTS = "chan_rescindDepositRights", | ||
WITHDRAW = "chan_withdraw", | ||
@@ -181,13 +179,4 @@ WITHDRAW_COMMITMENT = "chan_withdrawCommitment" | ||
multisigBalance: BigNumber; | ||
tokenAddress: string; | ||
}; | ||
export type RequestDepositRightsResult = { | ||
freeBalance: { | ||
[s: string]: BigNumber; | ||
}; | ||
recipient: string; | ||
tokenAddress: string; | ||
}; | ||
export type GetAppInstanceDetailsParams = { | ||
@@ -266,7 +255,2 @@ appInstanceId: string; | ||
export type RequestDepositRightsParams = { | ||
multisigAddress: string; | ||
tokenAddress?: string; | ||
}; | ||
export type InstallResult = { | ||
@@ -325,7 +309,2 @@ appInstance: AppInstanceJson; | ||
export type RescindDepositRightsParams = { | ||
multisigAddress: string; | ||
tokenAddress?: string; | ||
}; | ||
export type UninstallResult = {}; | ||
@@ -332,0 +311,0 @@ |
{ | ||
"extends": ["../../tslint.json"], | ||
"rules": { | ||
"object-literal-shorthand": false, | ||
"object-literal-sort-keys": false, | ||
"trailing-comma": false, | ||
"typedef": false | ||
} | ||
"extends": ["../../tslint.json"] | ||
} |
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
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
259197
34
1532