Siddharth Suresh
Siddharth Suresh
Updating core refs to new release.
Archivist verifies the tx set hash [here](https://github.com/stellar/go/blob/77cb331d374d53f632cd1571c96d07a8ec143dda/historyarchive/verify.go#L109), but starting from v20, `txSet` in `TransactionHistoryEntry` will be [empty](https://github.com/stellar/stellar-xdr/blob/bb54e505f814386a3f45172e0b7e95b7badbe969/Stellar-ledger.x#L260). Core instead hashes `generalizedTxSet` from the `TransactionHistoryEntry` extension, which archivist needs to do...
The soroban docs link to Stellar classic docs for issuer semantics in https://github.com/stellar/soroban-docs/pull/308, and I noticed the naming wasn't consistent.
Required for https://github.com/stellar/pipelines/issues/698
Making the Stellar Asset Contract return a configurable decimal value instead of a constant value of 7 is a suggestion @leighmcculloch made [here](https://github.com/stellar/rs-soroban-env/pull/607/files#r1044890673). This issue contains two questions we need...
In a test case, If contract A calls wasm contract B, and B panics, B’s panic message doesn’t propagate up into debug events. The output below is what's seen instead...
### What problem does your feature solve? [pre_release_version](https://github.com/stellar/rs-soroban-env/blob/a1cb3fd52bd6753570bfd5a6c108e4b303d81263/soroban-env-common/src/meta.rs#L61) was helpful for the development of protocol 20 because of how often we iterated on the protocol, but going forward, we won't...
We would like to verify the contract used to write the Soroban settings proposal using https://www.sorobanexp.com/contract/dashboard. This tool expects a specific structure that our [contract directory](https://github.com/stellar/rs-soroban-env/blob/main/soroban-test-wasms/wasm-workspace/write_upgrade_bytes/) doesn't follow (the makefile...
### What Resolves https://github.com/stellar/rs-soroban-env/issues/1148.
There have been some questions around if functions like `clawback` and `set_admin` ([some context around set_admin](https://github.com/stellar/rs-soroban-env/issues/635#issuecomment-1400812080)) should be included in the token interface. We should add another interface in the...