cosmos-sdk
solana
cosmos-sdk | solana | |
---|---|---|
146 | 289 | |
6,421 | 13,617 | |
1.9% | - | |
10.0 | 9.6 | |
2 days ago | 3 months ago | |
Go | Rust | |
Apache License 2.0 | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
cosmos-sdk
-
How does Chain Abstraction work?
Protocols like Polkadot and Cosmos focus on making blockchains inherently interoperable. They create ecosystems where chains can share data and assets natively.
- Building Your Own Blockchain: A Beginner’s Guide to Setting Up and Using Cosmos
-
Top 10 Validator in the list. Problem?
This is a old known issue called "clipping" in the Cosmos SDK that happens when a validator was previously jailed and slashed: https://github.com/cosmos/cosmos-sdk/issues/5282
-
Create an NFT Minting dApp with Cudos NFT Native Module
💡 GasMultiplier Instead of specifying the gas price, you may use the "gas": "auto” so that the blockchain application automatically estimates gas for you before submitting the transaction into the network for consensus with the estimate. This is why we include the gasMultiplier. By providing the gas multiplier you are specifying that the gas estimate should be multiplied by this number to account for possible changes in the gas fee estimate and the eventual gas fee. See The estimate is not always the exact gas required for the transaction execution.
-
Shido is listed on cosmos.network!
Shido is now listed on cosmos.network. Shido Chain is interoperable with all chains and dApps in the Cosmos for value sharing and joint liquidity through the IBC Protocol.
-
🌌✨☆*:。・*・WELCOME TO COSMOS NETWORK ・*・.。:*☆✨🌌
We have pinned this post to bring information front and center on the Cosmos Network Project and its evolution into the Internet of Blockchains. A new Interchain Era is here, bringing interoperability, scalability, and mass adoption to the Cosmos Ecosystem!
-
The Cosmos Ecosystem and IBC explained
Cosmos (ATOM) is a dPoS blockchain. Often it is named in the list of 3rd generation blockchains like ADA, DOT, ALGO, etc. As one can already see it has a lot of competition. To be able to get a better view of ATOM it is to not describe what it is in itself but how it compares to its competitors.
-
SCAM ALERT - Flawed search results on Bing / DuckDuckGo
The cosmos.network website is not indexed by Bing. Someone noticed this and created a scam website my-cosmos[.]network which is ranking very high for the search term "cosmos network"
- Blockchains need an interoperable standard to evolve, say crypto execs
-
Prop#95 - Osmosis v5 Boron Upgrade
Upgrade Cosmos-SDK to SDK v0.44 from SDK v0.42 For a full list of updates in Cosmos-SDK v0.44.3 please see its changelog. Noteable highlights include:\n - Authz - Allows granting arbitrary privileges from one account (the granter) to another account (the grantee). \n- New modules:\n - Bech32IBC - Allows auto-routing of send msgs to addresses on other chains, once configured by governance. Allows you to do a bank send on Osmosis to a cosmos1... address, and it is automatically sent to the corresponding Cosmos Hub address over IBC. This is a big step in enabling more seemless IBC UX.\n - TxFees - Enables validators to easily accept txfees in multiple assets, whitelisted by governance, by declaring minimum fees in OSMO. Alternative fee assets are converted to their OSMO value, using the spot price on their primary OSMO base pair pool. This upgrade pre-whitelists all the assets currently supported on the Osmosis frontend with an OSMO basepair pool.\n- Implements Proposal 32 - Clawback of unclaimed Osmo and Ion on airdrop end date. (December 15th, 5PM UTC)\n- Upgrade IBC from a standalone module in the SDK to IBC v2. This improves the utility of Ethereum Bridges and Cosmwasm bridges.\n- Blocking OFAC banned ETH addresses \n- Numerous minor bug fixes, gas fixes, and significant speedups.
solana
-
solana是如何算seed地址
const PDA_MARKER = "ProgramDerivedAddress" // Create a program address. // Ported from https://github.com/solana-labs/solana/blob/216983c50e0a618facc39aa07472ba6d23f1b33a/sdk/program/src/pubkey.rs#L204 func CreateProgramAddress(seeds [][]byte, programID PublicKey) (PublicKey, error) { if len(seeds) > MaxSeeds { return PublicKey{}, ErrMaxSeedLengthExceeded } for _, seed := range seeds { if len(seed) > MaxSeedLength { return PublicKey{}, ErrMaxSeedLengthExceeded } } buf := []byte{} for _, seed := range seeds { buf = append(buf, seed...) } buf = append(buf, programID[:]...) buf = append(buf, []byte(PDA_MARKER)...) hash := sha256.Sum256(buf) if IsOnCurve(hash[:]) { return PublicKey{}, errors.New("invalid seeds; address must fall off the curve") } return PublicKeyFromBytes(hash[:]), nil }
-
Projects to contribute to
Solana (9700 GitHub Stars) https://github.com/solana-labs/solana
-
DuneAnalytics - A Guide to Solana for Ethereum Analysts
EIP Core standards: Changes to Solana’s core code go through “feature gates” in the Solana repo. Yes, it’s much less organized than the EIP pages you are used to, and a headache to understand or keep up with. A cost of the speed of development, I’m told.
- Rust Cryptography Should Be Written in Rust
-
How Solana Ignores Security Best Practices
I visited the project on github (https://github.com/solana-labs/solana), and tried to get an overview of the ~800 open issues and ~100 open PRs.
-
Top 10+ Blockchain Networks to look for in 2023
Solana
-
Blockchains: Ethereum vs Solana vs Avalanche vs MultiversX (Elrond). What are the differences?
With the introduction of new and advanced blockchain platforms in the Web 3.0 scene, the narrative around Ethereum has slowly shifted towards its younger “Ethereum Alternatives”. Solana, Avalanche, and MultiversX (former Elrond) are some of the crypto blockchains that are given this terminology, as they share similar features but are comparatively cheaper and better than Ethereum.
-
Helium Mobile
I understand this initiative is connected with Solana network [1] in some way?
[1] https://solana.com/
-
Hacked for over $2 million on Solana DeFi Exchange Raydium
They do, actually: https://github.com/solana-labs/solana/security/policy
-
Proof of History algorithm
Not sure I understand your question, but if you want the source code you can find it on github (https://github.com/solana-labs/solana)
What are some alternatives?
go-ethereum - Go implementation of the Ethereum protocol
opensea-js - TypeScript SDK for the OpenSea marketplace
solana-go - Go SDK library and RPC client for the Solana Blockchain
solana-docker-mac-m1 - Docker config for Mac M1, to support development on Solana
cometbft - CometBFT: A distributed, Byzantine fault-tolerant, deterministic state machine replication engine. A fork and successor to Tendermint Core.
cardano-node - The core component that is used to participate in a Cardano decentralised blockchain.
blockgum - Blockgum is a Geth alternative as It supports HDWallet, which can generate billions of addresses. It uses Single Master Public and Private keys. No need to maintain Millions of Private keys. Backup once and you are good forever. Blockgum can read multiple chains ie Multichain Wallet Full Server side wallet solution. the https://blockgum.com
anchor - ⚓ Solana Sealevel Framework
starport - Ignite CLI is the all-in-one platform to build, launch, and maintain any crypto application on a sovereign and secured blockchain [Moved to: https://github.com/ignite-hq/cli]
metaplex - A directory of what the Metaplex Foundation works on!
tendermint - ⟁ Tendermint Core (BFT Consensus) in Go
trezor-firmware - :lock: Trezor Firmware Monorepo