Complete technical reference for BTCFi campaign implementation, including smart contract addresses, token denominations, and integration specifications.
Smart Contract Addresses
Points & Rewards Contracts
Points Contract : neutron1yu55umrtnna36vyjvhexp6q2ktljunukzxp9vptsfnylequg7gvqrcqf42
Boost Pointer Contract : neutron1wn3y2gefk2whkmsu49ql75jytdgvdtn2q583t25j5fvcn47fh9cqv4834k
Vesting Contract : neutron1dz57hjkdytdshl2uyde0nqvkwdww0ckx7qfe05raz4df6m3khfyqfnj0nr
NTRN Lock Contract : neutron14lnmj4k0tqsfn3x8kmnmacg64ct2utyz0aaxtm5g3uwwp8kk4f6shcgrtt
Token Denominations
Bitcoin LST Denominations
FBTC : ibc / 2 EB30350120BBAFC168F55D0E65551A27A724175E8FBCC7B37F9A71618FE136B
LBTC : ibc / B7BF60BB54433071B49D586F54BD4DED5E20BEFBBA91958E87488A761115106B
solvBTC : ibc / C0F284F165E6152F6DDDA900537C1BC8DA1EA00F03B9C9EC1841FA7E004EF7A3
eBTC : ibc / E2A000FD3EDD91C9429B473995CE2C7C555BCC8CFC1D0A3D02F514392B7A80E8
pumpBTC : ibc / 1075520501498 E008B02FD414CD8079C0A2BAF9657278F8FB8F7D37A857ED668
uniBTC : ibc / 3 F1D988D9EEA19EB0F3950B4C19664218031D8BCE68CE7DE30F187D5ACEA0463
Base Assets
WBTCd . atom : ibc / 0 E293A7622DC9A6439DB60E6D234B5AF446962E27CA3AB44D0590603DFF6968E
eth . atom : ibc / 694 A6B26A43A2FBECCFFEAC022DEACB39578E54207FDD32005CD976B57B98004
eth . axl : ibc / A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D
Supervault Addresses
Vaults paired with wBTC.atom
fbtc : neutron1ct00dzd944axt0pw9ak25a3ar40n8tmdwwnqxv6dpxxy6v3ysz9sw7n3jd
lbtc : neutron1720ank30032ml4h6rsygv0j9q4kdg9yr5g57yn55rmw3mnstg24q2keq2y
ebtc : neutron1s8k6gcrnsfrs9rj3j8757w4e0ttmzsdmjvwfwxruhu2t8xjgwxaqegzjgt
pumpbtc : neutron16x9rk787mdaatmd58cevex6sc3p55uhshjmzyf3aa9atx0dgauvs8u8tj0
solvbtc : neutron1vve4kr2j8ftydrh3gjqpns4p86l8x5unpvvheqdwlhpvawarea2suu8972
unibtc : neutron1704tmu9nvgk0l8xmpua0su6dq3r89mht0adlx8gxte695qapstks6lzmma
Network Configuration
Neutron Mainnet
Chain ID : neutron - 1
RPC : https : //rpc-vertexa.neutron-1.neutron.org
REST : https : //rest-solara.neutron-1.neutron.org
For comprehensive network information including additional RPC endpoints, testnet details, and node configurations, see Network Endpoints .
Supported Bridges
Ethereum → Neutron : Eureka Bridge
Noble → Neutron : IBC
Osmosis → Neutron : IBC
Cosmos Hub → Neutron : IBC
Integration Approach
Smart Contract Queries
Use standard Cosmos SDK tools for smart contract interaction:
// Example using CosmJS
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate' ;
// Connect to Neutron
const client = await CosmWasmClient . connect ( 'https://rpc-neutron.keplr.app' );
// Query user points (when contract is deployed)
const userPoints = await client . queryContractSmart (
pointsContractAddress , // Contract address will be provided upon deployment
{ get_user_balance: { address: userAddress } }
);
Additional Resources
Address Linking Cross-chain coordination implementation details
Neutron Developer Docs Complete Neutron development resources
Network Endpoints RPC, REST, and GRPC endpoints for Neutron networks and node information
This reference focuses on factual, implemented components. API specifications will be added as development progresses.