-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
435 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import { Coins, Fee, MnemonicKey, MsgSend } from "@terra-money/feather.js"; | ||
import { getMnemonics, getLCDClient, blockInclusion } from "../../helpers"; | ||
|
||
describe("FeeBurn Module (https://github.com/terra-money/core/tree/release/v2.9/x/feeburn) ", () => { | ||
// Prepare environment clients, accounts and wallets | ||
const LCD = getLCDClient(); | ||
const accounts = getMnemonics(); | ||
const wallet = LCD.chain1.wallet(accounts.mnemonic2); | ||
const randomAddress = new MnemonicKey().accAddress("terra"); | ||
|
||
test('Must burn unused TX Fees', async () => { | ||
try { | ||
const sendTx = await wallet.createAndSignTx({ | ||
msgs: [new MsgSend( | ||
wallet.key.accAddress("terra"), | ||
randomAddress, | ||
new Coins({ uluna: 1 }), | ||
)], | ||
chainID: "test-1", | ||
fee: new Fee(200_000, new Coins({ uluna: 3_000 })), | ||
}); | ||
|
||
const result = await LCD.chain1.tx.broadcastSync(sendTx, "test-1"); | ||
await blockInclusion(); | ||
const txResult = await LCD.chain1.tx.txInfo(result.txhash, "test-1"); | ||
const eventsLength = txResult.events.length; | ||
expect([txResult.events[eventsLength - 2], txResult.events[eventsLength - 1]]) | ||
.toStrictEqual([{ | ||
"type": "burn", | ||
"attributes": [{ | ||
"key": "burner", | ||
"value": "terra17xpfvakm2amg962yls6f84z3kell8c5lkaeqfa", | ||
"index": true | ||
}, { | ||
"key": "amount", | ||
"value": "1231uluna", | ||
"index": true | ||
}] | ||
}, { | ||
"type": "terra.feeburn.v1.FeeBurnEvent", | ||
"attributes": [{ | ||
"key": "burn_rate", | ||
"value": "\"0.410385000000000000\"", | ||
"index": true | ||
}, { | ||
"key": "fees_burn", | ||
"value": "[{\"denom\":\"uluna\",\"amount\":\"1231\"}]", | ||
"index": true | ||
}] | ||
}]); | ||
|
||
} | ||
catch (e) { | ||
console.log(e) | ||
} | ||
}); | ||
}); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.