File tree Expand file tree Collapse file tree 4 files changed +23
-1
lines changed
Expand file tree Collapse file tree 4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1+ Pontus-X native symbol rename
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ require (
183183 github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a
184184 github.com/oasisprotocol/metadata-registry-tools v0.0.0-20240304080528-3218befba9ca
185185 github.com/oasisprotocol/oasis-core/go v0.2504.0
186- github.com/oasisprotocol/oasis-sdk/client-sdk/go v0.16.0
186+ github.com/oasisprotocol/oasis-sdk/client-sdk/go v0.16.1-0.20251014092014-fb69325c5e3c
187187 github.com/rs/cors v1.11.1
188188 go.dedis.ch/kyber/v3 v3.1.0
189189 golang.org/x/crypto v0.43.0
Original file line number Diff line number Diff line change @@ -640,6 +640,8 @@ github.com/oasisprotocol/oasis-core/go v0.2504.0 h1:efo1IfMDZMlvby3s+g3iNFUfzC5V
640640github.com/oasisprotocol/oasis-core/go v0.2504.0 /go.mod h1:mj2X/x97RT0FTex2gDygZPHxCROtfcG+orP/gyQKk4U =
641641github.com/oasisprotocol/oasis-sdk/client-sdk/go v0.16.0 h1:RR18vzfrczejDUsD5nXln6weBNqUZoslh0rEpXcieDk =
642642github.com/oasisprotocol/oasis-sdk/client-sdk/go v0.16.0 /go.mod h1:cLtdOgAtSsVGQAZ1KWCXCgnj9CzNeOOEWUMZB0PIBeA =
643+ github.com/oasisprotocol/oasis-sdk/client-sdk/go v0.16.1-0.20251014092014-fb69325c5e3c h1:Nzn4cOkzj6pEOJy8sC7N/sRESXznyfTrwOPwhlsvZ+w =
644+ github.com/oasisprotocol/oasis-sdk/client-sdk/go v0.16.1-0.20251014092014-fb69325c5e3c /go.mod h1:cLtdOgAtSsVGQAZ1KWCXCgnj9CzNeOOEWUMZB0PIBeA =
643645github.com/oklog/run v1.0.0 h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw =
644646github.com/oklog/run v1.0.0 /go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA =
645647github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec =
Original file line number Diff line number Diff line change 1+ BEGIN ;
2+
3+ UPDATE chain .runtime_transactions
4+ SET fee_symbol = ' EURAU'
5+ WHERE runtime IN (' pontusx_dev' , ' pontusx_test' ) AND fee_symbol = ' EUROe' ;
6+
7+ UPDATE chain .runtime_transactions
8+ SET amount_symbol = ' EURAU'
9+ WHERE runtime IN (' pontusx_dev' , ' pontusx_test' ) AND amount_symbol = ' EUROe' ;
10+
11+ UPDATE chain .runtime_transfers
12+ SET symbol = ' EURAU'
13+ WHERE runtime IN (' pontusx_dev' , ' pontusx_test' ) AND symbol = ' EUROe' ;
14+
15+ UPDATE chain .runtime_sdk_balances
16+ SET symbol = ' EURAU'
17+ WHERE runtime IN (' pontusx_dev' , ' pontusx_test' ) AND symbol = ' EUROe' ;
18+
19+ COMMIT ;
You can’t perform that action at this time.
0 commit comments