From b18b8179f946bf32eb839680ee88d26ec90b3406 Mon Sep 17 00:00:00 2001 From: 0xPatrick Date: Wed, 13 Nov 2024 15:39:18 -0500 Subject: [PATCH] types: .deposit returns Amount<'nat'> --- packages/orchestration/src/cosmos-api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/orchestration/src/cosmos-api.ts b/packages/orchestration/src/cosmos-api.ts index b718b7fa916b..83d97c9eef68 100644 --- a/packages/orchestration/src/cosmos-api.ts +++ b/packages/orchestration/src/cosmos-api.ts @@ -296,7 +296,7 @@ export interface LiquidStakingMethods { /** Methods supported only on Agoric chain accounts */ export interface LocalAccountMethods extends StakingAccountActions { /** deposit payment (from zoe, for example) to the account */ - deposit: (payment: Payment<'nat'>) => Promise; + deposit: (payment: Payment<'nat'>) => Promise>; /** withdraw a Payment from the account */ withdraw: (amount: Amount<'nat'>) => Promise>; /**