-
{new Date().toLocaleTimeString()}
-
{JSON.stringify(res, null, 2)}
-
,
- ]);
- } catch (error) {
- console.error(error);
- }
- setDelegationLoader(false);
- };
- // End delegate
-
- // Sending tokens
- const doSendTokens = async () => {
- const memo = 'test sending tokens';
- setSendingTokensLoader(true);
- try {
- const res = await signerCosmosWasmClient.sendTokens(
- account,
- recipientAddress,
- [{ amount: tokensToSend, denom: 'unym' }],
- 'auto',
- memo,
- );
- setLog((prev) => [
- ...prev,
-