Skip to content

Commit

Permalink
feat(sbtc): update contracts with mainnet addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranjamie committed Dec 17, 2024
1 parent f3a746a commit cd58bce
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
16 changes: 15 additions & 1 deletion config/wallet-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,18 @@
"recoverUninscribedTaprootUtxosFeatureEnabled": true,
"runesEnabled": true,
"swapsEnabled": true,
"sbtc": {
"enabled": false,
"contracts": {
"mainnet": {
"address": "SM3VDXK3WZZSA84XXFKAFAF15NNZX32CTSG82JFQ4.sbtc-token::sbtc-token"
},
"testnet": {
"address": "SNGWPN3XDAQE673MXYXF81016M50NHF5X5PWWM70.sbtc-token::sbtc-token"
}
},
"showPromoLinkOnNetworks": ["testnet", "sbtcTestnet"]
},
"tokensEnabledByDefault": [
"DOGGOTOTHEMOON",
"RSICGENESISRUNE",
Expand All @@ -108,6 +120,8 @@
"SM26NBC8SFHNW4P1Y4DFH27974P56WN86C92HPEHH.token-lqstx::lqstx",
"SP1Y5YSTAHZ88XYK1VPDH24GY0HPX5J4JECTMY4A1.velar-token::velar",
"SP4SZE494VC2YC5JYG7AYFQ44F5Q4PYV7DVMDPBG.ststx-token::ststx",
"SP2C2YFP12AJZB4MABJBAJ55XECVS7E4PMMZ89YZR.arkadiko-token::diko"
"SP2C2YFP12AJZB4MABJBAJ55XECVS7E4PMMZ89YZR.arkadiko-token::diko",
"SNGWPN3XDAQE673MXYXF81016M50NHF5X5PWWM70.sbtc-token::sbtc-token",
"SM3VDXK3WZZSA84XXFKAFAF15NNZX32CTSG82JFQ4.sbtc-token::sbtc-token"
]
}
40 changes: 40 additions & 0 deletions config/wallet-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,46 @@
"swapsEnabled": {
"type": "boolean",
"description": "Determines whether or not the swaps feature is enabled"
},
"sbtc": {
"type": "object",
"description": "Configuration for SBTC",
"properties": {
"enabled": {
"type": "boolean",
"description": "Determines whether or not SBTC is enabled"
},
"showPromoLinkOnNetworks": {
"type": "array",
"description": "Networks on which the promo link should be shown",
"items": {
"type": "string"
}
},
"contracts": {
"type": "object",
"properties": {
"mainnet": {
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "Mainnet contract address"
}
}
},
"testnet": {
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "Testnet contract address"
}
}
}
}
}
}
}
},
"$defs": {
Expand Down

0 comments on commit cd58bce

Please sign in to comment.