Tyera Eulberg
74684a107c
Revert "Bump version to 1.8.4 ( #21232 )"
...
This reverts commit 19b3ba0442
.
2021-11-10 11:19:39 -07:00
sakridge
19b3ba0442
Bump version to 1.8.4 ( #21232 )
2021-11-10 16:38:44 +01:00
mergify[bot]
53e0c9710e
Fix typo in bankless-leader.md ( #21152 ) ( #21160 )
...
Reseting -> Resetting
(cherry picked from commit ae207b7dbb
)
Co-authored-by: Ikko Ashimine <eltociear@gmail.com >
2021-11-03 23:16:43 +00:00
mergify[bot]
22510678b4
docs: Update language around immutable programs ( #21116 ) ( #21118 )
...
(cherry picked from commit ec86ff8fb3
)
Co-authored-by: Jon Cinque <jon.cinque@gmail.com >
2021-11-01 21:01:27 +00:00
mergify[bot]
a595e06b48
Check whether vote-authorize-voter-checked new vote authority is_interactive ( #21051 ) ( #21057 )
...
* Check interactive signer for vote-authorize-voter-checked
* Recommend checked vote reauthorization
(cherry picked from commit 0b8fcf0808
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2021-10-28 23:10:25 +00:00
Tyera Eulberg
8dd3c1ece1
Bump version to v1.8.3 ( #21040 )
2021-10-28 11:17:11 -06:00
yihau
467abd1f5b
feat: update getClusterNodes
...
(cherry picked from commit dec104c580
)
2021-10-26 13:18:19 -07:00
mergify[bot]
9e81798d6d
fix(docs): missing import ( #20788 ) ( #20996 )
...
add missing import of `Connection`
(cherry picked from commit 521b7b79cc
)
Co-authored-by: Colin Ogoo <ogoo.colin@gmail.com >
2021-10-26 19:10:27 +00:00
mergify[bot]
e84c57b659
Hide deploy from cli subcommands ( #20901 ) ( #20951 )
...
(cherry picked from commit af405f0ed7
)
Co-authored-by: Jack May <jack@solana.com >
2021-10-25 20:03:44 +00:00
yihau
6c4a8b2d72
feat(docs): add transactionCount to getEpochInfo response
...
(cherry picked from commit aa13c90dd7
)
2021-10-24 20:15:12 -07:00
mergify[bot]
47e80be023
Fix response examples for getTokenAccountsByOwner
and getTokenAccountsByDelegate
( #20919 )
...
(cherry picked from commit 63f94a4db3
)
Co-authored-by: Slavomir <gagliardetto@users.noreply.github.com >
2021-10-23 16:43:13 +00:00
mergify[bot]
257d19ca48
Update 'Developing with Rust' GitHub links ( #20860 ) ( #20875 )
...
* Update old GitHub links in 'Developing with Rust' docs
* exclude_entrypoint -> no-entrypoint in 'Developing with Rust'
(cherry picked from commit f729dec321
)
Co-authored-by: Brian Anderson <andersrb@gmail.com >
2021-10-22 08:13:38 +00:00
Trent Nelson
23b6ce7980
Bump version to 1.8.2
2021-10-21 00:43:40 -06:00
mergify[bot]
6de9ef62e8
docs: Amend RPC Transaction History proposal ( #20794 ) ( #20812 )
...
# Problem
The initial proposal ruled out implementing BigTable queries for
the `getBlockTime` RPC, but then it was implemented a couple months
later. Indicating that the functionality was never implemented in
the "implemented-proposals" document is a little confusing, so let's
bring the document in line with what actually happened. 🦾
# Summary of Changes
Remove the blurb about how `getBlockTime` was going to be deprecated
and add it to the list of calls that didn't yet support BigTable
queries at the time the proposal was written.
(cherry picked from commit 0c7bade0b2
)
Co-authored-by: Arthur Burkart <arthur@presynce.com >
2021-10-20 02:07:17 +00:00
mergify[bot]
0759b666ce
Expand Rust API docs entry point ( #20770 ) ( #20801 )
...
(cherry picked from commit cc4bb5a451
)
Co-authored-by: Brian Anderson <andersrb@gmail.com >
2021-10-20 01:53:55 +00:00
mergify[bot]
8e666f47e0
optimistic-confirmation-and-slashing - fix typos ( #20741 ) ( #20765 )
...
(cherry picked from commit 84660bbf3d
)
Co-authored-by: Elliot Lee <github.public@intelliot.com >
2021-10-18 17:49:45 +00:00
Sean Young
0619705ce5
Simplify ed25519 instruction index
...
Allow u16::MAX to be specified for the instruction index. This makes it
possible to specify the current instruction, so it is not necessary to
know the instruction number.
2021-10-18 15:41:24 +01:00
Sean Young
0a6bb84aec
feat: add ed25519 signature verify program
...
Solang requires a method for verify ed25519 signatures. Add a new
builtin program at address Ed25519SigVerify111111111111111111111111111
which takes any number of ed25519 signature, public key, and message.
If any of the signatures fails to verify, an error is returned.
The changes for the web3.js package will go into another commit, since
the tests test against a released solana node. Adding web3.js ed25519
testing will break CI.
(cherry picked from commit b491354e51
)
Conflicts:
Cargo.lock
Cargo.toml
programs/bpf/Cargo.lock
runtime/Cargo.toml
sdk/src/feature_set.rs
sdk/src/transaction.rs
sdk/src/transaction/sanitized.rs
2021-10-18 15:41:24 +01:00
mergify[bot]
f8fccc7e91
docs: prefer solana gossip
to solana-gossip spy
( #20734 )
...
(cherry picked from commit 9543fd9cdd
)
Co-authored-by: Trent Nelson <trent@solana.com >
2021-10-15 19:42:20 +00:00
Sean Young
ebe77a0985
Proposal: log binary data for Solidity
...
Rename "Program return data: " to "Program return: " since "data" is
redundant.
(cherry picked from commit b89177c8de
)
Conflicts:
programs/bpf_loader/src/syscalls.rs
sdk/bpf/c/inc/sol/log.h
sdk/program/Cargo.toml
sdk/src/feature_set.rs
sdk/src/process_instruction.rs
2021-10-13 14:34:36 +01:00
Sean Young
927d3b5e0d
Add return data implementation
...
This consists of:
- syscalls
- passing return data from invoked to invoker
- printing to stable log
- rust and C SDK changes
(cherry picked from commit 53b47b87b2
)
2021-10-12 18:31:42 +01:00
mergify[bot]
b8f68860a4
docs: Remove outdated instructions for managing stake accounts ( #20555 ) ( #20600 )
...
(cherry picked from commit 03d3e0098e
)
Co-authored-by: Justin Starry <justin@solana.com >
2021-10-11 20:17:02 +00:00
mergify[bot]
67738a229c
fix(docs): getInflationRate epoch type from f64 => u64 ( #20589 ) ( #20590 )
...
(cherry picked from commit 185c9f9e8f
)
Co-authored-by: Yihau Chen <a122092487@gmail.com >
2021-10-11 16:03:41 +00:00
Dan Albert
e5dc8d731b
Web3 docs updated with quickstart guide ( #19457 ) ( #20571 )
2021-10-09 16:01:35 -06:00
Dan Albert
f9dcb8228f
Added web3 reference guide ( #19970 ) ( #20568 )
...
Co-authored-by: cryptogosu <82475023+cryptogosu@users.noreply.github.com >
2021-10-09 15:24:50 -06:00
mergify[bot]
c3cc7d52fe
Revert "docs: Explain what solana-stake-accounts new
does ( #20401 )" ( #20554 ) ( #20556 )
...
This reverts commit 00c6536528
.
(cherry picked from commit 17314f4a95
)
Co-authored-by: Justin Starry <justin@solana.com >
2021-10-08 19:46:48 +00:00
mergify[bot]
4268cf1d8b
docs: Explain what solana-stake-accounts new
does ( #20401 ) ( #20547 )
...
(cherry picked from commit 00c6536528
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-10-08 15:54:03 +00:00
Lijun Wang
7d0494fcaa
Merge AccountsDb plugin framework to v1.8 ( #20518 )
...
Merge AccountsDb plugin framework to v1.8 (#20518 )
Summary of Changes
Create a plugin mechanism in the accounts update path so that accounts data can be streamed out to external data stores (be it Kafka or Postgres). The plugin mechanism allows
Data stores of connection strings/credentials to be configured,
Accounts with patterns to be streamed
PostgreSQL implementation of the streaming for different destination stores to be plugged in.
The code comprises 4 major parts:
accountsdb-plugin-intf: defines the plugin interface which concrete plugin should implement.
accountsdb-plugin-manager: manages the load/unload of plugins and provide interfaces which the validator can notify of accounts update to plugins.
accountsdb-plugin-postgres: the concrete plugin implementation for PostgreSQL
The validator integrations: updated streamed right after snapshot restore and after account update from transaction processing or other real updates.
The plugin is optionally loaded on demand by new validator CLI argument -- there is no impact if the plugin is not loaded.
2021-10-07 14:15:05 -07:00
mergify[bot]
33d8e242c5
Fixup docs on deprecated JSON-RPC methods (backport #20515 ) ( #20521 )
...
* Update expected removal version to match backward-compatibility policy (#20515 )
(cherry picked from commit d56ad8ff4f
)
# Conflicts:
# docs/src/developing/clients/jsonrpc-api.md
* Fix conflict
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2021-10-07 20:37:01 +00:00
Tao Zhu
348ba57b12
Bump version to 1.8.1
2021-10-06 17:57:06 -07:00
Trent Nelson
a4df784e82
Bump version to 1.8.0
2021-10-06 15:48:23 -06:00
mergify[bot]
6181df68cf
Staking docs: link to overview ( #20426 )
...
(cherry picked from commit 2d5b471c09
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-10-04 23:22:21 +00:00
mergify[bot]
e718f4b04a
terminology.md: remove CBC block and unneeded filename ( #20269 ) ( #20349 )
...
(cherry picked from commit a7f2d9f55f
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-30 23:19:12 +00:00
Tyera Eulberg
734b380cdb
Bump version to v1.7.15 ( #20338 )
2021-09-30 10:51:34 -06:00
mergify[bot]
ef5a0e842c
stake-accounts.md: fix grammar, link Solana Explorer ( #20270 ) ( #20274 )
...
(cherry picked from commit f24fff8495
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-29 22:57:00 -06:00
sakridge
fec15f69f4
Increment 1.7 version ( #20316 )
2021-09-29 15:37:45 -04:00
mergify[bot]
2dc00d0e13
Paper wallet: fix URI scheme ( #20233 ) ( #20278 )
...
(cherry picked from commit 38844a7010
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-28 01:29:42 +00:00
mergify[bot]
e20fdde0a4
Wallet guide: fix grammar ( #20228 ) ( #20254 )
...
(cherry picked from commit f107aa296b
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-27 16:56:14 +00:00
mergify[bot]
5b52ac8990
Fix grammar in conventions.md ( #20236 ) ( #20252 )
...
(cherry picked from commit af57bd3d48
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-27 16:39:39 +00:00
mergify[bot]
302887da67
Add new logos to README files and docs ( #20049 ) ( #20093 )
...
* Add new logos to README files and docs
* Add explorer logos
(cherry picked from commit 8dbed193c2
)
Co-authored-by: Ryan M. Shea <8948187+rmshea@users.noreply.github.com >
2021-09-25 15:15:29 -04:00
mergify[bot]
b7af118091
Fix typo ( #20218 ) ( #20219 )
...
(cherry picked from commit b95653331c
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-25 18:54:59 +00:00
mergify[bot]
bee923ca6c
gossip.md: simplify Markdown ( #20201 ) ( #20205 )
...
No need for \-escaping
(cherry picked from commit e9c839a9e7
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-25 14:01:47 +00:00
mergify[bot]
879df38059
Terminology: link BPF ( #20199 ) ( #20204 )
...
(cherry picked from commit cb4121da19
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-25 13:50:12 +00:00
mergify[bot]
0bfb466184
Fix blatant md formatting at the very top ( #20198 ) ( #20203 )
...
(cherry picked from commit c137c50d15
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-25 13:43:43 +00:00
mergify[bot]
71bb3bf6aa
Improve grammar in terminology/ledger ( #20197 ) ( #20202 )
...
(cherry picked from commit 20fbf09072
)
Co-authored-by: Ted Robertson <10043369+tredondo@users.noreply.github.com >
2021-09-25 13:30:39 +00:00
mergify[bot]
7f21a55a32
Fix public key md links ( #20162 ) ( #20167 )
...
(cherry picked from commit 9653f6b28d
)
Co-authored-by: Israel Ferrer Camacho <rallat@gmail.com >
2021-09-24 15:28:46 +00:00
mergify[bot]
63b24d9577
Update TransactionError link to docs.rs ( #20145 ) ( #20146 )
...
(cherry picked from commit a70fd8e606
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2021-09-23 21:15:36 +00:00
mergify[bot]
f51ee23837
Fix typo in docs/cli/deploy-a-program ( #20097 ) ( #20098 )
...
(cherry picked from commit 3d0db28d12
)
Co-authored-by: Christoph Michel <MrToph@users.noreply.github.com >
2021-09-22 01:46:58 +00:00
mergify[bot]
3e870a40f2
Fix broken links in terminology.md ( #19978 ) ( #19992 )
...
(cherry picked from commit 073c5359b0
)
Co-authored-by: visortelle <visortelle@gmail.com >
2021-09-18 00:16:32 +00:00
mergify[bot]
b8ab6a46a8
Fix typos in terminology.md ( #19977 ) ( #19979 )
...
(cherry picked from commit 1ec22572f2
)
Co-authored-by: visortelle <visortelle@gmail.com >
2021-09-17 16:48:55 +00:00