Sovereign Financial

70 posts

Sovereign Financial

Sovereign Financial

@sovfin

Developing SovFi Telegram bot for interfacing with GalaSwap on GalaChain! 🌐 https://t.co/EmGsnBkrKZ

Entrou em Haziran 2024
248 Seguindo63 Seguidores
Jason Brink aka BitBender
Jason Brink aka BitBender@BitBenderBrink·
As $GALA comes up on its staking requirement, a few community members have come to me asking for me to look into some of the bridging transactions. I have learned a couple things. Over the past week, a grand total of 302 users have bridged about 689m GALA into GalaChain, where it needs to be for the staking to work. Of those bridging more than 1m $GALA, there have been 48. One of those users was Gala Games' Reserve wallet, which bridged in 500,000,000 $GALA, meaning that 72.6% of all $GALA bridged in over the last week was Gala itself. While I will give every bridging person the benefit of the doubt (even if 171 of those bridging were moving less than 10k $GALA) that means that only 301 users have bridged in enough to run 189 nodes. Out of the currently 35k nodes online...there has been enough $GALA bridged in to run less than 1% of them. Even if we look at all $GALA on GalaChain (4.7b), it is only enough to run 4,700 nodes, or 13% of the network...but that is forgetting that 171k users hold that GALA. This isn't decentralization, the community of node operators doesn't want it, and its absolutely antithetical to everything that web3 and blockchain is supposed to be. I poured my heart and soul into Gala for four years, and to see this going down is...ugh...just so beyond gut-wrenching I can't stand it. I still believe this can be turned around. There is a path forward where the community can be respected, not disregarded. I’m calling on the team at Gala to stop making decisions that push people away. It’s time to listen, to take responsibility, and to come together in support of the very community that helped build this from the ground up. I’ve already sent an email to Gala sharing my concerns, but I haven’t received any response. At the same time, I hear from the community constantly. People are confused. They’re frustrated. They feel betrayed. I spent too much time building all of this with you to sit back and watch it burn to the ground through colossal unforced errors. Anyone who would like to inspect the transactions themselves can do so here: docs.google.com/spreadsheets/d…
Jason Brink aka BitBender tweet media
English
80
43
235
17.4K
Sovereign Financial
Sovereign Financial@sovfin·
Really appreciate you diving deep into this @BitBenderBrink - your analysis is spot on and it's truly unfortunate seeing things go down this path. The centralization concerns are valid and go against everything web3 should represent. After 4 years of community building, this feels like a step backward. A potential solution: distribute Gstake NFTs equivalent to original purchase price to early supporters BEFORE the 1M $GALA staking requirement goes live. This would acknowledge those who helped build the foundation and maintain some level of decentralization. The community deserves better than watching 72.6% controlled by one entity. Time for @GoGalaGames to listen and course-correct. 🧵 #GalaChain #Decentralization #CommunityFirst
English
1
0
0
99
Sovereign Financial
Sovereign Financial@sovfin·
@Benefactor0101 @gala This is fantastic! Our biggest concern was the GalaChain implementation, and with everything else we have on our plate, this will definitely help speed things up.
Sovereign Financial tweet media
English
0
0
3
236
benefactor
benefactor@Benefactor0101·
Based on the latest information I have about GalaChain as of March 11, 2025, I can provide you with a TypeScript implementation of a Tic Tac Toe game that connects to GalaChain using its SDK and the @gala-chain/connect package. GalaChain uses TypeScript for its chaincode (smart contracts) and provides a client SDK for interacting with the blockchain, built on Hyperledger Fabric. The @gala-chain/connect package, specifically BrowserConnectClient, is designed for browser-based wallet connections, making it ideal for a front-end game like Tic Tac Toe. Below, I’ll create a TypeScript-based Tic Tac Toe game with GalaChain integration. This assumes you’ve set up a GalaChain environment and deployed a chaincode for the game. Since GalaChain’s exact chaincode deployment details might vary, I’ll focus on the client-side connection and interaction, with a hypothetical chaincode structure based on available documentation.Prerequisites GalaChain SDK: Install via npm: npm install @gala-chain/sdk @gala-chain/connect. Node.js/TypeScript: Ensure you have a TypeScript project set up (npm init, npm install typescript --save-dev, tsc --init). GalaChain Network: Access to a GalaChain testnet or local network with a deployed Tic Tac Toe chaincode. Wallet: A GalaChain-compatible wallet (e.g., Gala Wallet) for signing transactions. Step 1: Hypothetical Chaincode Structure First, let’s assume a GalaChain chaincode (TicTacToeChaincode.ts) has been deployed. Here’s a simplified version you’d write and deploy using GalaChain’s SDK (this would run on the blockchain): typescript import { GalaChainContext, GalaContract, Submit } from "@gala-chain/chaincode"; export class TicTacToeChaincode extends GalaContract { constructor() { super("TicTacToe", "1.0.0"); } @Submit({ in: { position: "number" } }) async makeMove(ctx: GalaChainContext, dto: { position: number }) { const gameKey = "currentGame"; let game = await ctx.get(gameKey) as { board: number[], turn: string, active: boolean, winner?: string } || { board: Array(9).fill(0), // 0 = empty, 1 = X, 2 = O turn: "player1", active: true }; if (!game.active) throw new Error("Game is over"); if (ctx.caller !== game.turn) throw new Error("Not your turn"); if (dto.position < 0 || dto.position > 8 || game.board[dto.position] !== 0) throw new Error("Invalid move"); game.board[dto.position] = game.turn === "player1" ? 1 : 2; game.turn = game.turn === "player1" ? "player2" : "player1"; const winner = this.checkWinner(game.board); if (winner) { game.active = false; game.winner = winner === 1 ? "player1" : "player2"; } else if (game.board.every(cell => cell !== 0)) { game.active = false; } await ctx.put(gameKey, game); return game; } private checkWinner(board: number[]): number | null { const wins = [[0,1,2], [3,4,5], [6,7,8], [0,3,6], [1,4,7], [2,5,8], [0,4,8], [2,4,6]]; for (const [a, b, c] of wins) { if (board[a] && board[a] === board[b] && board[a] === board[c]) return board[a]; } return null; } @Submit() async getGame(ctx: GalaChainContext) { return (await ctx.get("currentGame")) || { board: Array(9).fill(0), turn: "player1", active: true }; } } Deployment: You’d use galachain init and galachain deploy to deploy this to a GalaChain network (refer to docs.galachain.com). Step 2: Client-Side TypeScript with GalaChain Connect Now, let’s build the front-end in TypeScript using @gala-chain/connect to connect to a wallet and interact with the chaincode. Project Setup Initialize a TypeScript project:bash npm init -y npm install typescript @gala-chain/sdk @gala-chain/connect --save npx tsc --init Create index.ts and an HTML file. Code (index.ts) typescript import { BrowserConnectClient } from "@gala-chain/connect"; import { GalaChainClient } from "@gala-chain/sdk"; // Game state interface interface GameState { board: number[]; turn: string; active: boolean; winner?: string; } // Connect to GalaChain async function connectToGalaChain(): Promise { const wallet = new BrowserConnectClient(); try { const connectionResult = await wallet.connect(); console.log(`Connected with wallet: ${connectionResult}`); // Replace with your GalaChain network endpoint and chaincode ID return new GalaChainClient(connectionResult, "testnet.galachain.com", "TicTacToe"); } catch (error) { console.error("Connection failed:", error); throw error; } } // Game logic and UI interaction class TicTacToeGame { private client: GalaChainClient | null = null; private gameState: GameState = { board: Array(9).fill(0), turn: "player1", active: true }; async init() { this.client = await connectToGalaChain(); await this.loadGameState(); this.renderBoard(); } async loadGameState() { if (!this.client) return; const response = await this.client.submitTransaction("getGame", {}); this.gameState = response as GameState; this.renderBoard(); } async makeMove(position: number) { if (!this.client || !this.gameState.active || this.gameState.board[position] !== 0) return; try { const response = await this.client.submitTransaction("makeMove", { position }); this.gameState = response as GameState; this.renderBoard(); } catch (error) { console.error("Move failed:", error); } } renderBoard() { const grid = document.getElementById("tic-tac-toe")!; grid.innerHTML = ""; this.gameState.board.forEach((cell, idx) => { const div = document.createElement("div"); div.textContent = cell === 0 ? "" : cell === 1 ? "X" : "O"; div.addEventListener("click", () => this.makeMove(idx)); grid.appendChild(div); }); const status = document.getElementById("status")!; if (!this.gameState.active) { status.textContent = this.gameState.winner ? `${this.gameState.winner} wins!` : "Draw!"; } else { status.textContent = `Turn: ${this.gameState.turn}`; } } } // Start the game const game = new TicTacToeGame(); game.init(); HTML (index.html) html Tic Tac Toe on GalaChain
Compile and Run Compile TypeScript: npx tsc. Bundle for browser (e.g., with Webpack or Parcel): npx parcel index.html. Open in a browser with a GalaChain wallet extension installed. How It Works Connection: BrowserConnectClient connects to the user’s GalaChain wallet in the browser, authenticating them for transactions. Chaincode Interaction: GalaChainClient submits transactions (makeMove, getGame) to the deployed TicTacToeChaincode. Game Logic: The chaincode enforces rules (turn order, valid moves, win conditions) on-chain, while the front-end renders the state. State Persistence: The game state is stored on GalaChain, ensuring immutability and verifiability. GalaChain-Specific Notes Endpoint: Replace "testnet.galachain.com" with your actual GalaChain network URL (check docs.galachain.com or GalaChain Discord for testnet details). Chaincode ID: "TicTacToe" must match the deployed chaincode name. Wallet: Ensure the browser has a GalaChain-compatible wallet (e.g., Gala Wallet) for BrowserConnectClient to work. TypeScript Advantage: GalaChain’s use of TypeScript ensures type safety and modern tooling (e.g., decorators like @Submit). Running the Game Deploy the chaincode to GalaChain (using galachain deploy after setting up your environment). Start the front-end server (e.g., parcel index.html). Open the browser, connect your wallet, and play Tic Tac Toe with moves recorded on GalaChain. This is a basic implementation. You could enhance it with player authentication, multiple games via unique IDs, or $GALA token rewards for winners—features GalaChain’s ecosystem supports well. Let me know if you need help with deployment or further customization!
English
8
7
52
7.1K
benefactor
benefactor@Benefactor0101·
I just asked Grok to develop a game on #galachain and it found the sdk and did it...wow! $gala
English
47
120
207
18.4K
MoonPay 🟣
MoonPay 🟣@moonpay·
if you bought crypto this week and we don’t follow you, let us know and we’ll follow 🫡
English
634
57
1.2K
77.6K
Flare ☀️
Flare ☀️@FlareNetworks·
By isolating ISO markets from the Kinetic protocol, it ensures that any issues affecting a specific asset are contained, minimizing the risk of broader protocol disruptions. Good approach! Allowing Kinetidc to conservatively introduce more 'risky assets' into isolated pools, enhancing overall market resilience 👍🏻
English
1
3
25
909
Sovereign Financial
Sovereign Financial@sovfin·
Well said! $FLR must be included in the U.S. Crypto Reserve. It seamlessly connects all cryptocurrencies, enabling value to flow across blockchains.
Sovereign Financial tweet media
W0rm226☀️@Crypt0W0rm226

🚀 Why @FlareNetworks ( $FLR ) Must Be Included in the U.S. Crypto Reserve 🔥 If the U.S. wants to lead the global crypto economy, it needs Flare ( $FLR ) at the core of its Crypto Strategic Reserve. Here’s why: 1. The Bridge That Unites All Reserve Assets 🌉 The U.S. Crypto Reserve is set to include $BTC, $ETH, $XRP, $SOL, and $ADA, but these assets operate on different networks with limited interoperability. Flare fixes this. Flare’s State Connector enables trustless interoperability between all major chains. $BTC, $ETH, $XRP, $SOL, and $ADA can interact without centralized bridges or security risks. Flare ensures instant, cross-chain liquidity, strengthening the U.S. Crypto Reserve’s global financial power. 2. Smart Contracts for Non-Smart Contract Assets 💡 Bitcoin ($BTC) & XRP ($XRP) lack native smart contract functionality, limiting their use in DeFi. Flare’s F-Asset System brings full Ethereum Virtual Machine (EVM) compatibility, allowing $FBTC and $FXRP to function in DeFi, lending, and yield farming without requiring custodial bridges. 3. Supercharging U.S. Financial Infrastructure with F-Assets 💰 Flare’s F-Asset system tokenizes real-world assets (RWA) and cryptocurrencies for seamless financial integration. The U.S. Treasury could stake its digital reserves (e.g., $FBTC, $FXRP, $FADA) and generate passive income through yield farming, reducing reliance on taxation. Stablecoin Issuance: The Federal Reserve could issue a trustless USD stablecoin on Flare, allowing real-time, secure payments on a decentralized network. 4. Institutional-Grade Decentralized Data Feeds 📊 Flare’s Time Series Oracles (FTSOs) provide real-time, tamper-proof financial data directly on-chain. This ensures transparent, decentralized pricing for U.S. reserves, eliminating manipulation risks. 5. Global Trustless KYC – The Future of Digital Identity 🌎 Flare’s Trustless KYC (tKYC) enables secure, decentralized identity verification. It allows the U.S. to verify crypto transactions & users without compromising privacy, ensuring compliance while maintaining decentralization. 6. DeFi That Works for Governments & Institutions 🏦 Flare provides a secure, scalable platform for institutional DeFi, allowing U.S. entities to participate in staking, lending, and asset management. Tokenized Treasuries & Bonds: The U.S. could issue tokenized government bonds on Flare, creating a liquid, decentralized financial market. Why Exclude Flare When It Powers the Future? 🤔 $BTC, $ETH, $XRP, $SOL, and $ADA all become more powerful on Flare. It’s the backbone of cross-chain finance, decentralized infrastructure, and institutional DeFi. If the U.S. is serious about being the Crypto Capital of the World, Flare MUST be included in the Reserve. 🚀🔥 @realDonaldTrump @POTUS @EricTrump @worldlibertyfi @SECGov @USTreasury @federalreserve @WhiteHouse #FlareNetwork #CryptoReserve #XRP #BTC #ETH #SOL #ADA #DeFi #FAssets #FTSO #CrossChain #TrustlessKYC #Web3Finance #DigitalDollar #USCryptoReserve

English
1
0
2
165
Jason Brink aka BitBender
Jason Brink aka BitBender@BitBenderBrink·
One of the projects I am excited about that is part of the @LFGincorporated ecosystem is @tiktrixgg. I have known the team from TikTrix FOREVER...they are an awesome Korean team and their focus on hypercasual games that ARE NOT just tappers is something everyone should check out.
English
1
1
11
1.3K
MoonPay 🟣
MoonPay 🟣@moonpay·
______ looking good here
English
441
34
417
38.6K
Sovereign Financial
Sovereign Financial@sovfin·
@moonpay @Uniswap Awesome off-ramp, tired of using Gemini! It's too tedious for web3. Add $GALA buy/sell, I'd like to give MoonPay a go.
English
0
2
6
204
MoonPay 🟣
MoonPay 🟣@moonpay·
the unicorn can offramp now withdraw from @uniswap to your bank, credit, debit, paypal, and venmo accounts powered by moonpay
English
36
39
170
25.5K
benefactor
benefactor@Benefactor0101·
Who does that look like? $GALA
benefactor tweet media
English
90
75
317
31.2K
Sovereign Financial
Sovereign Financial@sovfin·
He’s right! 🚀 People are seriously sleeping on these low-cap gems. 🌟 Ecosystems like $GALA, $XRP, $FLR, and $SGB are primed to take off. Don’t miss the wave! 🌊🔥 #Crypto #Altcoins #GalaChain
English
0
1
4
840
Sovereign Financial
Sovereign Financial@sovfin·
@Benefactor0101 🤩 this would be absolutely critical in propelling our project, GalaChain Telegram Bot 🤖 using $SVR: t.me/SovereignFinan…. We have a ton to develop including referral system and an online dashboard to collect rewards whilst previewing balance and trade history.
English
0
0
2
149
benefactor
benefactor@Benefactor0101·
Attention builders! As part of $GALA s on going efforts to promote legit projects on #GalaChain and support their marketing efforts we have a new effort underway. If your project needs to be listed on centralized exchanges, and those exchanges are on GalaChain, Gala will pay for the expenses to list your token on up to 3 (maybe 4) exchanges. Of course you need to meet certain requirements but if you're awesome we will support you! Get building! docs.galachain.com/v2.0.0/
English
204
1.6K
5.7K
415.9K
Sovereign Financial
Sovereign Financial@sovfin·
@Benefactor0101 We concur. Early adopters are rewarded immensely, to say the least. Keep building persisting through the noise. Massive amount of liquidity incoming as Money Supply increases. #galachain
Sovereign Financial tweet media
English
0
0
3
851
benefactor
benefactor@Benefactor0101·
At $GALA we are stewards of an ecosystem. We recently launched the $FILM token to be the reward mechanism for the #DePIN network of nodes and for the creators of content. We have tested a new idea this time around...The idea was that you had to burn the $FILM token to mint it. Initially, you had to burn a lot but over time it drops to a very small amount. Some have said this was a form of punishment for early adopters. I frankly think this is a false narrative driven primarily by bad actors/selfish actors. And it certainly was not meant to be a punishment for early adopters on any level. And if you take some time to think about it we are in fact doing something to benefit them in the long run....hopefully. As I said it was a test. This is our role as stewards. We try our best to create the most positive conditions for the Gala Ecosystem as a whole. You may not agree with the strategy and I invite you to our discord to share you point of view...in a polite manner of course. But I want to point out something that may not be obvious to many...as stewards of this ecosystem we have spent incredible sums of money. I think we can confidently say we have spent several 100s of millions building technology, licensing games, supporting a staff and many other things that cost real dollars and cents. But also along the way we have awarded over 2 billion usd worth of rewards to 100s of 1000s of people who provided support of the ecosystem. So while you may not like every move we make...I think by now you should have learned that we make moves with the intent to support and protect the ecosystem at large. We continue to make moves and we have several exciting things cooking in the background that we will get to share shortly. For those of you reading this that I have banned in Discord...try explaining yourself without insulting anyone next time. For everyone else...we plan on spending several 100s of millions more to grow and support the ecosystem. #galachain
English
107
352
1.8K
280.8K
benefactor
benefactor@Benefactor0101·
The $GALA community had an interesting notion…what if we switched our ipfs to a private network and if you wanted access you need $GALA…seems like a good idea
English
49
150
643
47K
Sovereign Financial
Sovereign Financial@sovfin·
Hi! Thanks for reaching out. Here’s an update: GalaChain Telegram Bot v1 (t.me/SovereignFinan…) is live with top trending coins, and withdrawals/deposits are fully operational. Instead of developing our own on-ramp and bridge for ETH to Gala, we’re allowing GalaSwap to upgrade to GalaConnect. In the meantime, we’re also working on implementing a referral system to reward users. Stay tuned for more updates!
English
1
0
1
265
ThePhoenixHasRisen
ThePhoenixHasRisen@Phoenix4life69·
@sovfin Is there an update to be had on this project? I bought tokens early on and was following on Galacoins discord but have not seen anything in a long time.
English
1
0
1
44