Quint

352 posts

Quint banner
Quint

Quint

@q_uint8

Zürich, CH Katılım Temmuz 2021
321 Takip Edilen971 Takipçiler
Quint
Quint@q_uint8·
@bugarela Probably the best language there is out there.
English
1
0
1
6
Gabriela Moreira
Gabriela Moreira@bugarela·
"Maintaining alignment between specifications, tests, and implementation remains an engineering responsibility. No tool can replace that responsibility, although many tools can help support it. The real opportunity lies in using language models in ways that strengthen the engineering process rather than quietly replacing it." robenglander.com/writing/ai-did…
English
1
0
10
279
Mo icp
Mo icp@novahodler·
Hey $ICP community & devs 👀 Liquidium introduced this new address formats hkmli-faaaa-aaaar-qb4ba-cai-l3oycvi.100110000000000000000000000000000008602000000000000000000000000 Is this a valid ICP address? Why yes? Why not? Drop your best explanation 🔥 @DFINITY @LiquidiumFi
English
4
0
15
1.6K
Quint retweetledi
CycleOps
CycleOps@CycleOps·
We've released more bug fixes and UI improvements in the past month than ever before. It's all thanks to an agentic workflow we built based on our old purely human-driven processes. If you use cycleops.dev or icptopup.com, submit more requests! If they're actionable they'll probably be done in a week.
CycleOps tweet media
English
1
4
14
761
Quint retweetledi
CycleOps
CycleOps@CycleOps·
Hey IC devs 👋 Wondering how the upcoming 2.5x protocol memory cost changes will affect your cycle bill? We were curious too! 😅 So we built a dedicated memory cost change dashboard so that you can use to quickly understand and plan for the before and after cost impact. 🔥 🧵
CycleOps tweet media
English
1
3
14
731
Quint
Quint@q_uint8·
@SnassyIcp Now I also need to make YusanScript... 🤩
English
0
1
2
104
Snassy.icp
Snassy.icp@SnassyIcp·
"Did he say...SneedScript?" Darn tootin' right I did. The Sneed Trading Bot will come with its very own Domain Specific Language (DSL) that will let you configure the bot and run trades via script. While human users will probably prefer managing their bot via the nice UI, the DSL opens the door to a very exciting new use case: collaborating with an AI to manage your bot and your trading strategies! The loop is simple: 1) Click the button in your bot to copy the whole current state of the trading bot, plus some instructions to the AI, into your clipboard. 2) Paste this into your favorite LLM, along with telling it what you want to do - set up a rebalancing portfolio, create a range trade, or something far more complex! You can even just tell it your general trading objectives and let the LLM figure out how to realize it with the available strategies and parameters in the bot. 3) The LLM spits out a response in the SneedScript DSL. 4) You paste this response back to your bot 5) The bot parses the script, and shows you all the operations that running the script will result in, for your approval 6) Click approve to run the script and configure your bot. And then you can just repeat from #1 whenever you want to modify your strategy, or perhaps ask the AI if something has happened on the market that makes it think some settings should change. As an example, I asked ChatGPT: "add a 50/50 ICP/ckLINK rebalancing portfolio" and it gave me the script below. When I ran the script it produced the screenshot below, and when I approved it, my new rebalancing portfolio was promptly created in the bot. This means that not only will you be able to let your favorite LLM help you set up all the strategies you want, including very complex ones. It also means you can easily experiment with letting your AI come up with its own trading strategies, without taking yourself and your approval out of the loop. The future is here. This week. Only on Sneed Hub. Only On ICP. The script: # Add ckLINK token ensure token ckLINK { ledger: "g4tto-rqaaa-aaaar-qageq-cai" } # Create 50/50 ICP/ckLINK rebalancer ensure chore "rebalance-cklink50" { type: rebalance label: "50/50 ICP ↔ ckLINK" } set chore "rebalance-cklink50" interval: 1h set chore "rebalance-cklink50" max_interval: 2h set chore "rebalance-cklink50" task_timeout: 10m set chore "rebalance-cklink50" status: stopped set rebalance "rebalance-cklink50" denomination: ICP set rebalance "rebalance-cklink50" max_trade_size: 1 ICP set rebalance "rebalance-cklink50" min_trade_size: 0.0001 ICP set rebalance "rebalance-cklink50" threshold: 500 bps set rebalance "rebalance-cklink50" max_slippage: 200 bps set rebalance "rebalance-cklink50" max_price_impact: 300 bps set rebalance "rebalance-cklink50" fallback_route_tokens: [ICP, ckUSDC] ensure rebalance_target ICP in "rebalance-cklink50" { target: 5000 bps paused: false } ensure rebalance_target ckLINK in "rebalance-cklink50" { target: 5000 bps paused: false } set purse "rebalance-cklink50" enabled: true
Snassy.icp tweet media
Snassy.icp@SnassyIcp

This Week: The Sneed Trading Bot Get ready for the World's First 100% on-chain, fully non-custodial trading engine! The list of features is not short. Here is a taste of what you will be able to expect. **Automated Trading** Configure trade actions with conditions for when to execute: price thresholds, balance conditions, frequency windows. Set min/max amounts or trade a percentage of your balance. Choose your preferred DEX (ICPSwap or KongSwap) or let the bot auto-select the best quote. Set slippage limits and max price impact per action. Chain multiple actions in a single chore — each runs in sequence, on a configurable timer with randomized intervals. **Trailing Stops & Take Profits** Built-in trailing stop loss and trailing take profit. The bot tracks watermark prices and triggers when the price drops from peak (stop loss) or rises from trough (take profit). Choose whether to reset the watermark after execution or let it ride. **Budget Limits & Auto-Halt** Set cumulative input budgets, output budgets, and maximum execution counts per action. When a limit is hit, the chore stops automatically. Useful for DCA strategies with a fixed total budget. **Portfolio Rebalancing** Set target allocations in basis points across any number of tokens. The rebalancer computes deviations and trades overweight tokens into underweight ones, using weighted random pair selection. Configure deviation thresholds, min/max trade sizes, slippage, and impact limits. **Fund Movement & Distribution** Schedule recurring fund movements: fund purses, reclaim from purses, or send tokens to external accounts. Set up distribution lists that automatically split tokens across multiple recipients (external wallets or internal purses) with configurable thresholds and share allocations. **Chore Purses — Isolated Balances** Virtual accounting layer that gives each chore its own isolated balance. Fund a trading chore with exactly 10 ICP and it can only trade with that 10 ICP. Purses support cross-chore sharing — a rebalance chore can trade from a trade chore's purse. Includes overcommit detection and automatic lock management. **Circuit Breakers** Automated safety rules with complex conditions. Combine price thresholds, balance conditions, value monitoring, and percentage changes with AND/OR logic, nested as deep as you want. When conditions trigger, the bot can: stop, pause or start chores, freeze tokens, pause tokens in rebalance, or stop everything. Full event log for every trigger. **DEX Aggregation** Quotes from ICPSwap and KongSwap, automatically selects the best output. Filters quotes by price impact before ranking. Supports ICRC-2 approval path and ICRC-1 transfer fallback. Pool discovery and caching for ICPSwap. **Quick Trades** One-off manual trades through the bot with full control: pick your tokens, amount, DEX, slippage, impact limits. Queue management with status tracking and cancellation. **Performance Analytics** Equity curve chart tracking your portfolio value over time in ICP or USD. Daily OHLC portfolio summaries, price candles per token pair, capital flow breakdown per token, and per-purse performance tracking. Net capital deployed and P&L calculation with percentage returns. **Comprehensive Logging** Every trade attempt is logged: successes, skips, and failures with full error details. Portfolio snapshots before and after trades. Per-purse snapshots. Configurable log sizes, per-chore logging overrides, and filterable log queries. **Inter-Bot Event System** Bots can subscribe to events from other bots and execute reaction rules when events arrive. Set up a staking bot that pauses your trading bot when a chore fails. Configure conditions, cooldown periods, and choose from a library of reaction actions. Full audit log of every reaction. **Token Management** Add tokens, refresh metadata, scan for tokens with non-zero balances. Pause tokens (blocks trading but allows fund operations) or freeze them (blocks everything). Per-token controls across all chores. **Fine-Grained Permissions** 22 distinct permission types. Give a hotkey access to view portfolio but not execute trades. Let a collaborator manage the rebalancer but not withdraw funds. Every API call is permission-checked. **SneedScript — AI-Powered Configuration DSL** Export your entire bot configuration to a human-readable script. Paste it into your favorite LLM along with your trading objectives. The LLM writes a configuration program. Paste it back — the bot parses it, shows you exactly what will change, and you approve before execution. Idempotent operations mean you can safely re-apply scripts without duplicating anything. Supports everything: tokens, chores, actions, rebalance targets, distributions, circuit breakers, event subscriptions, purse management, and more. **Multiple Chore Instances** Run multiple instances of any chore type simultaneously. Three different trading strategies, two rebalancers, a fund mover, and a distributor — all running independently on their own timers with their own purses. **Manual Operations** Send tokens, withdraw to external accounts, fund and reclaim from purses, recover stuck funds from DEX pools — all from the UI. **Fully On-Chain** The bot runs as an Internet Computer canister. No servers, no API keys, no custody risk. Your keys, your bot, your trades. Upgradeable with stable variable migration. All of this goes live this week. We're just getting started.

English
7
6
26
2K
peter cross chains ⛓️
peter cross chains ⛓️@petehodl·
We believe Liquidium will reach a multi-billion dollar TVL, and the road to our goal starts today. Incredibly proud of our team, more than a year of development, and still so much to come. You will never beat someone who genuinely enjoys building. That’s us 🦾
Liquidium | Bitcoin Loans@LiquidiumFi

Liquidity has been trapped in chain silos for too long! That changes TODAY⚡️ Introducing Liquidium․Fi: the first REAL cross-chain lending protocol. Borrow & lend seamlessly across Bitcoin and Ethereum, with Solana coming next. Borders are gone. Liquidity is free 🌍

English
8
8
44
942
Quint retweetledi
DFINITY Developers ∞
DFINITY Developers ∞@DFINITYDev·
Security Advisory: Phishing risk in SIW-E/B/S implementations 🛡️ A security advisory has been released regarding the IC-SIW* (Ethereum, Bitcoin, Solana) login flows. 🔹 Issue: These implementations are prone to phishing because they map a wallet address to an ICP principal regardless of which website requested the sign-in. ⚠️ Risk: An attacker using a malicious domain (e.g., h0nest.com) could trick a user into signing in and obtain a delegation to control the user's IC principal and funds. The advisory suggests hardening security through three possible approaches: ▶️ Verifying app origin in the wallet (requires SIW* standard support). ▶️ Using passkeys as a second factor for privileged operations. ▶️ Implementing the ICRC-21 call consent messages standard for transaction-level authorization. 👇 Read the full advisory and risk analysis: forum.dfinity.org/t/security-adv…
English
6
13
72
4.4K
Quint
Quint@q_uint8·
@WaterNeuron burns ~12T cycles/DAY (~$17.5), which is around ~6.4K $/YEAR. Increasing the cycle cost 5x seems really excessive and not very competitive. Running a DAO will just become really expensive. You can find some stats provided by @CycleOps here: sns.cycleops.dev
dom williams.icp ∞@dominic_w

UPDATED Mission 70 white paper — proposing to 5X the cost of ICP's onchain compute as provided sovereign cloud will remain very competitive. ↗️↗️↗️ Caffeine & cloud engine demand ↗️↗️ cost of onchain compute ↙️ inflation (gov + nodes) 🔥 huge deflation internetcomputer.org/whitepapers/mi…

English
1
1
14
879
DFINITY Developers ∞
DFINITY Developers ∞@DFINITYDev·
Canister Migration is live! 🚀♾️ You can now move canisters from one subnet to another while keeping the same Canister ID. This unlocks a new level of flexibility for scaling and optimizing your dapps on #ICP. Why migrate? 🔹 Optimize Latency: Co-locate canisters that communicate frequently for faster performance. 🔹 Upgrade Security: Move to a Fiduciary or Sovereign subnet (like the new Swiss subnet 🇨🇭). 🔹 Load Balance: Easily move away from busy subnets to ensure consistent performance. Quick Facts: ✅ Retains all code, data, and Canister ID. ✅ Fully seamless for users and XNet messages. ✅ Tested & supported via PocketIC and dfx. ✅ Migration cost: 10T cycles. Ready to move? 🔗 Check the announcement and learn how to migrate: forum.dfinity.org/t/canister-mig…
English
6
36
181
4.6K
Quint
Quint@q_uint8·
@meneseprotocol I just don’t get what is stopping you? If it would consume less resources, then just use ICP? It is permissionless?
English
1
0
0
37
Menese Protocol
Menese Protocol@meneseprotocol·
We have two ways; one launch it as DAO there or make our own infrastructure to decentralize. We wanted to gauge which choice should we take ideally we want the first because it is tested and will consume less engineering resources. But we want to leave to the community to signal which path should we dedicate resources to.
English
1
0
4
77
Menese Protocol
Menese Protocol@meneseprotocol·
We have made a non binding motion for community signaling and support for the launch of $Cloak DAO on $ICP which will control significant privacy 2.0 enabled infrastructure. This is the first step into Menese becoming an Operating System for different blockchains. We just onboarded an innovative blockchain protocol, now we are asking for your support. Show up and vote 🙏🏻 nns.ic0.app/proposal/?u=qo…
English
5
10
57
1.6K
Chief
Chief@chief_000000·
@DFINITYDev @q_uint8 When will NNS have the forced upgrade option? Wasn’t it 26th? $ICP
English
1
0
0
77
Quint retweetledi
DFINITY Developers ∞
DFINITY Developers ∞@DFINITYDev·
A Go CDK for ICP? 🐹♾️ Community member @q_uint8 is experimenting with bringing Go to the Internet Computer and wants your feedback on the project's direction! The Progress So Far: 🔹 Basic Go canisters successfully exposing Candid interfaces. 🔹 Support for query and update calls. 🔹 Fully interactable via dfx. The Next Steps (Your Input Needed!): 🚀 Should inter-canister calls be the next priority? 💾 How should stable storage be handled in a Go environment? 👥 Interested in collaborating on a Go CDK? If you're a Gopher or a developer looking for more language options on #ICP, join the discussion and help shape this effort. 👇 Share your thoughts here: forum.dfinity.org/t/writing-smar…
English
5
22
91
2.5K
Quint
Quint@q_uint8·
@SnassyIcp Will it support you upgrading the canister with more functionality? I.e. multisig etc?
English
1
0
3
30
Snassy.icp
Snassy.icp@SnassyIcp·
One cool thing that will be possible with the upcoming canister-owned ICP neurons from Sneed DAO is that you can share full control over a neuron. ICP Neurons support hotkeys, but the only permissions those hotkeys give are to vote and create proposals - they can't disburse maturity, change followings, split the neuron, etc. With canister controlled neurons you have the option of adding controllers to your canister that controls the neuron. Every controller will have full access to the neuron's functions. You can of course just use hotkeys as before as well, but now you will have more options. Another cool thing is that you can have your own, custom hotkey system, where you can add hotkeys to your canister (as many as you like) with granular permissions, controlling exactly what hotkeys may access what functions. Canister controlled ICP Neurons are the future - coming soon on app.sneeddao.com
English
2
6
25
585
Quint retweetledi
CanScale
CanScale@can_scale·
I’d like to propose a slight modification to the #Mission70 ICP dissolve delay changes that scales all delays from the old min/max of 6 months/8 years to the newly proposed min/max of 2 weeks/2 years. Give it a read and let me know what you think. forum.dfinity.org/t/discussion-s…
English
0
1
2
194