Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(core): transactionSummaryInspector now correctly accounts for transaction fees #1088

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/core/src/util/transactionSummaryInspector.ts
Original file line number Diff line number Diff line change
@@ -103,13 +103,15 @@ const getUnaccountedFunds = async (
tx: Cardano.Tx,
resolvedInputs: ResolutionResult,
implicitCoin: Cardano.Lovelace,
fee: Cardano.Lovelace,
implicitAssets: Cardano.TokenMap = new Map()
): Promise<Cardano.Value> => {
const totalInputs = totalInputsValue(resolvedInputs);
const totalOutputs = totalOutputsValue(tx.body.outputs);

totalInputs.assets = coalesceTokenMaps([totalInputs.assets, implicitAssets]);
totalInputs.coins += implicitCoin;
totalOutputs.coins += fee;

return subtractValueQuantities([totalOutputs, totalInputs]);
};
@@ -177,7 +179,7 @@ export const transactionSummaryInspector: TransactionSummaryInspector =
returnedDeposit: implicit.reclaimDeposit || 0n,
unresolved: {
inputs: resolvedInputs.unresolvedInputs,
value: await getUnaccountedFunds(tx, resolvedInputs, implicitCoin, implicitAssets)
value: await getUnaccountedFunds(tx, resolvedInputs, implicitCoin, fee, implicitAssets)
}
};
};
56 changes: 29 additions & 27 deletions packages/core/test/util/transactionSummaryInspector.test.ts
Original file line number Diff line number Diff line change
@@ -118,6 +118,8 @@ const auxiliaryData = {
scripts: [mockScript2]
};

const fee = 170_000n;

const buildMockTx = (
args: {
inputs?: Cardano.HydratedTxIn[];
@@ -143,7 +145,7 @@ const buildMockTx = (
certificates: args.certificates,
collateralReturn: args.collateralReturn ?? undefined,
collaterals: args.collaterals ?? undefined,
fee: 170_000n,
fee,
inputs: args.inputs ?? [
{
address: addresses[0],
@@ -255,7 +257,7 @@ describe('Transaction Summary Inspector', () => {
address: externalAddress1,
value: {
assets: new Map([[AssetIds.TSLA, 5n]]),
coins: 5_000_000n
coins: 5_000_000n - fee // In this TX the fee is coming out of one of the external addresses.
}
},
{
@@ -346,7 +348,7 @@ describe('Transaction Summary Inspector', () => {
coins: -10_000_000n,
collateral: 0n,
deposit: 0n,
fee: 170_000n,
fee,
returnedDeposit: 0n,
unresolved: {
inputs: [],
@@ -382,7 +384,7 @@ describe('Transaction Summary Inspector', () => {
address: addresses[0],
value: {
assets: new Map([[AssetIds.TSLA, 5n]]),
coins: 5_000_000n
coins: 5_000_000n - fee // In this TX the fee is coming out of one of our own addresses.
}
}
]
@@ -433,10 +435,10 @@ describe('Transaction Summary Inspector', () => {
// Assert
expect(summary).toEqual({
assets: new Map(),
coins: 0n,
coins: -fee,
collateral: 10_000_000n,
deposit: 0n,
fee: 170_000n,
fee,
returnedDeposit: 0n,
unresolved: {
inputs: [],
@@ -473,7 +475,7 @@ describe('Transaction Summary Inspector', () => {
address: addresses[0],
value: {
assets: new Map([[AssetIds.TSLA, 5n]]),
coins: 27_000_000n
coins: 27_000_000n - fee // In this TX the fee is coming out of one of our own addresses.
}
}
],
@@ -525,10 +527,10 @@ describe('Transaction Summary Inspector', () => {
// Assert
expect(summary).toEqual({
assets: new Map(),
coins: 0n,
coins: -fee,
collateral: 25_000_000n,
deposit: 0n,
fee: 170_000n,
fee,
returnedDeposit: 0n,
unresolved: {
inputs: [],
@@ -564,7 +566,7 @@ describe('Transaction Summary Inspector', () => {
address: addresses[0],
value: {
assets: new Map([[AssetIds.TSLA, 5n]]),
coins: 5_000_000n
coins: 5_000_000n - fee // In this TX the fee is coming out of one of our own addresses.
}
}
]
@@ -609,10 +611,10 @@ describe('Transaction Summary Inspector', () => {
// Assert
expect(summary).toEqual({
assets: new Map(),
coins: 0n,
coins: -fee,
collateral: 5_000_000n,
deposit: 0n,
fee: 170_000n,
fee,
returnedDeposit: 0n,
unresolved: {
inputs: [],
@@ -637,7 +639,7 @@ describe('Transaction Summary Inspector', () => {
address: addresses[0],
value: {
assets: new Map([[AssetIds.TSLA, 5n]]),
coins: 3_000_000n
coins: 3_000_000n - fee // In this TX the fee is coming out of one of our own addresses.
}
}
]
@@ -676,10 +678,10 @@ describe('Transaction Summary Inspector', () => {
// Assert
expect(summary).toEqual({
assets: new Map(),
coins: -2_000_000n,
coins: -2_000_000n - fee,
collateral: 0n,
deposit: 2_000_000n,
fee: 170_000n,
fee,
returnedDeposit: 0n,
unresolved: {
inputs: [],
@@ -704,7 +706,7 @@ describe('Transaction Summary Inspector', () => {
address: addresses[0],
value: {
assets: new Map([[AssetIds.TSLA, 5n]]),
coins: 5_000_000n
coins: 5_000_000n - fee // In this TX the fee is coming out of one of our own addresses.
}
}
]
@@ -743,10 +745,10 @@ describe('Transaction Summary Inspector', () => {
// Assert
expect(summary).toEqual({
assets: new Map(),
coins: 2_000_000n,
coins: 2_000_000n - fee,
collateral: 0n,
deposit: 0n,
fee: 170_000n,
fee,
returnedDeposit: 2_000_000n,
unresolved: {
inputs: [],
@@ -780,7 +782,7 @@ describe('Transaction Summary Inspector', () => {
address: addresses[0],
value: {
assets: new Map([[AssetIds.TSLA, 5n]]),
coins: 5_000_000n
coins: 5_000_000n - fee // In this TX the fee is coming out of one of our own addresses.
}
}
]
@@ -819,10 +821,10 @@ describe('Transaction Summary Inspector', () => {
// Assert
expect(summary).toEqual({
assets: new Map(),
coins: -15_000_000n,
coins: -15_000_000n - fee,
collateral: 0n,
deposit: 15_000_000n,
fee: 170_000n,
fee,
returnedDeposit: 0n,
unresolved: {
inputs: [],
@@ -856,7 +858,7 @@ describe('Transaction Summary Inspector', () => {
address: addresses[0],
value: {
assets: new Map([[AssetIds.TSLA, 5n]]),
coins: 20_000_000n
coins: 20_000_000n - fee // In this TX the fee is coming out of one of our own addresses.
}
}
]
@@ -895,10 +897,10 @@ describe('Transaction Summary Inspector', () => {
// Assert
expect(summary).toEqual({
assets: new Map(),
coins: 15_000_000n,
coins: 15_000_000n - fee,
collateral: 0n,
deposit: 0n,
fee: 170_000n,
fee,
returnedDeposit: 15_000_000n,
unresolved: {
inputs: [],
@@ -932,7 +934,7 @@ describe('Transaction Summary Inspector', () => {
address: addresses[0],
value: {
assets: new Map([[AssetIds.TSLA, 5n]]),
coins: 20_000_000n
coins: 20_000_000n - fee // In this TX the fee is coming out of one of our own addresses.
}
},
{
@@ -986,10 +988,10 @@ describe('Transaction Summary Inspector', () => {
[assetInfos[AssetInfoIdx.PXL], 1n],
[assetInfos[AssetInfoIdx.Unit], 1n]
]),
coins: 100_000_000n,
coins: 100_000_000n - fee,
collateral: 0n,
deposit: 0n,
fee: 170_000n,
fee,
returnedDeposit: 0n,
unresolved: {
inputs: [