Skip to content

Commit

Permalink
feat: update abis to latest multisig branch
Browse files Browse the repository at this point in the history
  • Loading branch information
chmanie committed Sep 2, 2024
1 parent 0d8006c commit 85097e5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export type AugmentedEstimate<
setTokenAmountWithProofs(
_id: BigNumberish,
_amount: BigNumberish,
_interval: BigNumberish,
overrides?: TxOverrides,
): Promise<BigNumber>;

Expand Down Expand Up @@ -179,6 +180,7 @@ export type AugmentedStreamingPayments<
setTokenAmountWithProofs(
_id: BigNumberish,
_amount: BigNumberish,
_interval: BigNumberish,
overrides?: TxOverrides,
): Promise<ContractTransaction>;

Expand Down Expand Up @@ -357,6 +359,7 @@ async function setTokenAmountWithProofs(
this: AugmentedStreamingPayments,
_id: BigNumberish,
_amount: BigNumberish,
_interval: BigNumberish,
overrides?: TxOverrides,
): Promise<ContractTransaction> {
const { domainId } = await this.getStreamingPayment(_id);
Expand Down Expand Up @@ -387,6 +390,7 @@ async function setTokenAmountWithProofs(
MaxUint256,
_id,
_amount,
_interval,
overrides,
);
}
Expand All @@ -395,6 +399,7 @@ async function estimateSetTokenAmountWithProofs(
this: AugmentedStreamingPayments,
_id: BigNumberish,
_amount: BigNumberish,
_interval: BigNumberish,
overrides?: TxOverrides,
): Promise<BigNumber> {
const { domainId } = await this.getStreamingPayment(_id);
Expand Down Expand Up @@ -425,6 +430,7 @@ async function estimateSetTokenAmountWithProofs(
MaxUint256,
_id,
_amount,
_interval,
overrides,
);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/contractor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"homepage": "https://docs.colony.io/develop",
"dependencies": {
"@colony/abis": "0.0.0-snapshot-next-8f62df3-e0fd1a8f-20240724094300",
"@colony/abis": "0.0.0-snapshot-next-8f62df3-69cc3840-20240902143533",
"@typechain/ethers-v5": "^11.1.0",
"@typechain/ethers-v6": "^0.4.2",
"@types/mkdirp": "^1.0.2",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 85097e5

Please sign in to comment.