Skip to content

Commit b0ab9e9

Browse files
committed
fix(client-utils): lower the default fee to 0.015 BLD for smart wallet
update tests as well
1 parent 64cee5a commit b0ab9e9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/client-utils/src/signing-smart-wallet-kit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ type WalletStoreEntryProxy<T, Recursive extends true | false = false> = {
5959

6060
// TODO parameterize as part of https://github.com/Agoric/agoric-sdk/issues/5912
6161
const defaultFee: StdFee = {
62-
amount: [{ denom: 'ubld', amount: '500000' }], // XXX enough?
62+
amount: [{ denom: 'ubld', amount: '15000' }], // XXX enough?
6363
gas: '19700000',
6464
};
6565

packages/client-utils/test/signing-smart-wallet-kit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ test('sendBridgeAction handles simple action', async t => {
9696
},
9797
},
9898
],
99-
fee: { amount: [{ denom: 'ubld', amount: '500000' }], gas: '19700000' },
99+
fee: { amount: [{ denom: 'ubld', amount: '15000' }], gas: '19700000' },
100100
});
101101
});
102102

@@ -174,7 +174,7 @@ test('sendBridgeAction uses explicit signing when signerData provided', async t
174174
},
175175
},
176176
],
177-
fee: { amount: [{ denom: 'ubld', amount: '500000' }], gas: '19700000' },
177+
fee: { amount: [{ denom: 'ubld', amount: '15000' }], gas: '19700000' },
178178
memo: 'test memo',
179179
signerData,
180180
});

0 commit comments

Comments
 (0)