-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* delete proposal #6 * use develop branch for ci * use another image * test * removing more broken proposals * introduce goreleaser * remove separate gha for building docker images * rename registry owner * clean comments * use version with v * add additional tags * fix org * update docker image * added jq * introduce ibc transfer custom module * custom ibc transfer module ready to replace for testing. * activate custom ibc module for cosmos chain. chain works. * added ibc transfer module that is going to store all params for eth fees * resolve conflict with a same name for MsgUpdateEpochParams from staking. * add dependency to transfer keeper from ibc transfer middleware/params * added repeated FeeItem into Params + MVP logic in transfer msg server * finalized the Transfer method. send fee to fee. build. chain works. * only useful params in genesis for ibc transfer module. Works * golangci-lint run * slashing fixes * remove unused types in proto * add docs and fix all requested changes by reviewers * review fixes * fix tests * local setup * allow devnet with custom key gov * relay from master * porting fix from v7 * refactoring. * add runtime upgrade handler. for ibc fee feature. * upgrade merged. BankKeeper + GovKeeper + IbcTransferMiddlewareKeeper * Revert "Merge pull request #451 from ComposableFi/slashing_fix" This reverts commit 1ad4293, reversing changes made to 85e2bf9. * revert banksy changes to resolve halted chain. * Revert "allow devnet with custom key gov" This reverts commit 2457d87. * create a new chain upgrade handler for chain upgrade. * chore: change centaurid -> picad and prefix name to pica * chore: update name prefix * refactor: remove old upgrade * refactor: update prefix * refactor: update prefix * test: change govAuthorityAddress * ci: rollback * wip * feat: add script upgrade_test * chore: update script * wip * refactor: remove set prefix * refactor: update test * chore: rollback * chore: ignore build folder * perf: make blocktime run faster * fix: use key with balances * chore: ignore screen log * refactor: using default flag for test * test: increment and assert counter value to be equal 1 * chore: rollback * chore: rollback script * test: add script upgrade * fix: correct upgrade height * feat: add post scripts * test: assertion for post scripts * chore: stream unnecessary output to null * feat: add test for the new address * wip * chore: log for test upgrade * test: completed ibc transfer * verify affection of alliance module * test/ica_migration * add migration test for mint, ratelimit, ibc-hooks, transfermiddleware module * finalize script upgrade test * pick denom for testing as stake * remove unused fnc * modify testup * fix unused fnc * merge variable * chore: remove release.yml * refactor: change v6.4.6 -> v6.4.7 * feaT: migrate contract info * test: assert contract info && code info * fix: change repo secret name * refactor: change v6.4.7 -> v6.4.8 * revert change version * rebase and change conflict version * merge from develop2 * feat: add v6_6_0 handler * remove old upgrade * fix lint * fix lint * fix test * update script * update address and ibc-go * fix lint * fix lint --------- Co-authored-by: kkast <kkastsevich@gmail.com> Co-authored-by: Kanstantsin Kastsevich <kkast@users.noreply.github.com> Co-authored-by: rjonczy <robert.jonczy@gmail.com> Co-authored-by: rustdev <placex.com@gmail.com> Co-authored-by: rust.dev <102041955+RustNinja@users.noreply.github.com> Co-authored-by: dzmitry-lahoda <dzmitry@lahoda.pro> Co-authored-by: tungle <anhletung@notional.ventures> Co-authored-by: kienn6034 <kien@notional.ventures>
- Loading branch information
1 parent
866ca17
commit 04548a3
Showing
87 changed files
with
2,007 additions
and
1,400 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
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
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
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
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,23 @@ | ||
package app | ||
|
||
import ( | ||
"github.com/cometbft/cometbft/crypto" | ||
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" | ||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" | ||
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" | ||
) | ||
|
||
// PV implements PrivValidator without any safety or persistence. | ||
// Only use it for testing. | ||
type PV struct { | ||
PrivKey cryptotypes.PrivKey | ||
} | ||
|
||
func NewPV() PV { | ||
return PV{ed25519.GenPrivKey()} | ||
} | ||
|
||
// GetPubKey implements PrivValidator interface | ||
func (pv PV) GetPubKey() (crypto.PubKey, error) { | ||
return cryptocodec.ToTmPubKeyInterface(pv.PrivKey.PubKey()) | ||
} |
Oops, something went wrong.