solana-docs 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +8 -0
- package/.eslintrc +21 -0
- package/.prettierignore +7 -0
- package/.travis/before_install.sh +9 -0
- package/.travis/script.sh +4 -0
- package/README.md +59 -0
- package/art/data-plane-fanout.bob +19 -0
- package/art/data-plane-neighborhood.bob +25 -0
- package/art/data-plane-seeding.bob +15 -0
- package/art/data-plane.bob +18 -0
- package/art/fork-generation.bob +13 -0
- package/art/forks-pruned.bob +9 -0
- package/art/forks-pruned2.bob +11 -0
- package/art/forks.bob +13 -0
- package/art/passive-staking-callflow.msc +30 -0
- package/art/retransmit_stage.bob +45 -0
- package/art/runtime.bob +10 -0
- package/art/sdk-tools.bob +20 -0
- package/art/spv-bank-hash.bob +19 -0
- package/art/spv-block-merkle.bob +19 -0
- package/art/tpu.bob +19 -0
- package/art/tvu.bob +37 -0
- package/art/validator-proposal.bob +60 -0
- package/art/validator.bob +30 -0
- package/babel.config.js +3 -0
- package/build-cli-usage.sh +42 -0
- package/build.sh +40 -0
- package/convert-ascii-to-svg.sh +21 -0
- package/crowdin.yml +16 -0
- package/docusaurus.config.js +161 -0
- package/offline-cmd-md-links.sh +11 -0
- package/package.json +50 -0
- package/publish-docs.sh +56 -0
- package/set-solana-release-tag.sh +20 -0
- package/sidebars.js +210 -0
- package/src/cli/.usage.md.header +59 -0
- package/src/cli/choose-a-cluster.md +43 -0
- package/src/cli/conventions.md +80 -0
- package/src/cli/delegate-stake.md +206 -0
- package/src/cli/deploy-a-program.md +302 -0
- package/src/cli/install-solana-cli-tools.md +164 -0
- package/src/cli/transfer-tokens.md +158 -0
- package/src/cli.md +22 -0
- package/src/cluster/bench-tps.md +129 -0
- package/src/cluster/fork-generation.md +64 -0
- package/src/cluster/leader-rotation.md +88 -0
- package/src/cluster/managing-forks.md +36 -0
- package/src/cluster/overview.md +39 -0
- package/src/cluster/performance-metrics.md +25 -0
- package/src/cluster/rpc-endpoints.md +50 -0
- package/src/cluster/stake-delegation-and-rewards.md +197 -0
- package/src/cluster/synchronization.md +28 -0
- package/src/cluster/turbine-block-propagation.md +101 -0
- package/src/cluster/vote-signing.md +59 -0
- package/src/clusters.md +173 -0
- package/src/css/custom.css +73 -0
- package/src/developing/backwards-compatibility.md +151 -0
- package/src/developing/clients/javascript-api.md +332 -0
- package/src/developing/clients/javascript-reference.md +750 -0
- package/src/developing/clients/jsonrpc-api.md +5173 -0
- package/src/developing/clients/rust-api.md +36 -0
- package/src/developing/on-chain-programs/debugging.md +110 -0
- package/src/developing/on-chain-programs/deploying.md +24 -0
- package/src/developing/on-chain-programs/developing-c.md +202 -0
- package/src/developing/on-chain-programs/developing-rust.md +406 -0
- package/src/developing/on-chain-programs/examples.md +61 -0
- package/src/developing/on-chain-programs/faq.md +81 -0
- package/src/developing/on-chain-programs/overview.md +218 -0
- package/src/developing/plugins/accountsdb_plugin.md +360 -0
- package/src/developing/programming-model/accounts.md +231 -0
- package/src/developing/programming-model/calling-between-programs.md +351 -0
- package/src/developing/programming-model/overview.md +17 -0
- package/src/developing/programming-model/runtime.md +131 -0
- package/src/developing/programming-model/transactions.md +210 -0
- package/src/developing/runtime-facilities/programs.md +168 -0
- package/src/developing/runtime-facilities/sysvars.md +142 -0
- package/src/developing/test-validator.md +153 -0
- package/src/economics_overview.md +20 -0
- package/src/history.md +60 -0
- package/src/icons/Archivers.inline.svg +11 -0
- package/src/icons/Bulb.inline.svg +13 -0
- package/src/icons/Chat.inline.svg +10 -0
- package/src/icons/Clipboard.inline.svg +13 -0
- package/src/icons/Cloudbreak.inline.svg +11 -0
- package/src/icons/Code.inline.svg +11 -0
- package/src/icons/Fire.inline.svg +10 -0
- package/src/icons/Gamepad.inline.svg +11 -0
- package/src/icons/Globe.inline.svg +1 -0
- package/src/icons/Gulfstream.inline.svg +11 -0
- package/src/icons/History.inline.svg +11 -0
- package/src/icons/Money.inline.svg +11 -0
- package/src/icons/Pipeline.inline.svg +15 -0
- package/src/icons/PoH.inline.svg +11 -0
- package/src/icons/Sealevel.inline.svg +11 -0
- package/src/icons/Tools.inline.svg +11 -0
- package/src/icons/Tower.inline.svg +11 -0
- package/src/icons/Turbine.inline.svg +12 -0
- package/src/icons/duotone-icons/Clothes/Brassiere.svg +10 -0
- package/src/icons/duotone-icons/Clothes/Briefcase.svg +11 -0
- package/src/icons/duotone-icons/Clothes/Cap.svg +11 -0
- package/src/icons/duotone-icons/Clothes/Crown.svg +11 -0
- package/src/icons/duotone-icons/Clothes/Dress.svg +11 -0
- package/src/icons/duotone-icons/Clothes/Hanger.svg +10 -0
- package/src/icons/duotone-icons/Clothes/Hat.svg +11 -0
- package/src/icons/duotone-icons/Clothes/Panties.svg +10 -0
- package/src/icons/duotone-icons/Clothes/Shirt.svg +11 -0
- package/src/icons/duotone-icons/Clothes/Shoes.svg +11 -0
- package/src/icons/duotone-icons/Clothes/Shorts.svg +10 -0
- package/src/icons/duotone-icons/Clothes/Sneakers.svg +11 -0
- package/src/icons/duotone-icons/Clothes/Socks.svg +11 -0
- package/src/icons/duotone-icons/Clothes/Sun-glasses.svg +11 -0
- package/src/icons/duotone-icons/Clothes/T-Shirt.svg +10 -0
- package/src/icons/duotone-icons/Clothes/Tie.svg +11 -0
- package/src/icons/duotone-icons/Code/Backspace.svg +11 -0
- package/src/icons/duotone-icons/Code/CMD.svg +10 -0
- package/src/icons/duotone-icons/Code/Code.inline.svg +11 -0
- package/src/icons/duotone-icons/Code/Commit.svg +11 -0
- package/src/icons/duotone-icons/Code/Compiling.inline.svg +11 -0
- package/src/icons/duotone-icons/Code/Control.svg +10 -0
- package/src/icons/duotone-icons/Code/Done-circle.svg +11 -0
- package/src/icons/duotone-icons/Code/Error-circle.svg +11 -0
- package/src/icons/duotone-icons/Code/Git#1.svg +12 -0
- package/src/icons/duotone-icons/Code/Git#2.svg +15 -0
- package/src/icons/duotone-icons/Code/Git#3.svg +13 -0
- package/src/icons/duotone-icons/Code/Git#4.svg +13 -0
- package/src/icons/duotone-icons/Code/Github.svg +11 -0
- package/src/icons/duotone-icons/Code/Info-circle.svg +12 -0
- package/src/icons/duotone-icons/Code/Left-circle.svg +11 -0
- package/src/icons/duotone-icons/Code/Loading.svg +12 -0
- package/src/icons/duotone-icons/Code/Lock-circle.svg +11 -0
- package/src/icons/duotone-icons/Code/Lock-overturning.svg +11 -0
- package/src/icons/duotone-icons/Code/Minus.svg +11 -0
- package/src/icons/duotone-icons/Code/Option.svg +11 -0
- package/src/icons/duotone-icons/Code/Plus.svg +11 -0
- package/src/icons/duotone-icons/Code/Puzzle.svg +10 -0
- package/src/icons/duotone-icons/Code/Question-circle.svg +11 -0
- package/src/icons/duotone-icons/Code/Right-circle.svg +11 -0
- package/src/icons/duotone-icons/Code/Settings#4.svg +11 -0
- package/src/icons/duotone-icons/Code/Shift.svg +10 -0
- package/src/icons/duotone-icons/Code/Spy.svg +11 -0
- package/src/icons/duotone-icons/Code/Stop.svg +10 -0
- package/src/icons/duotone-icons/Code/Terminal.svg +11 -0
- package/src/icons/duotone-icons/Code/Thunder-circle.svg +11 -0
- package/src/icons/duotone-icons/Code/Time-schedule.svg +11 -0
- package/src/icons/duotone-icons/Code/Warning-1-circle.svg +12 -0
- package/src/icons/duotone-icons/Code/Warning-2.svg +12 -0
- package/src/icons/duotone-icons/Communication/Active-call.svg +11 -0
- package/src/icons/duotone-icons/Communication/Add-user.svg +11 -0
- package/src/icons/duotone-icons/Communication/Address-card.svg +10 -0
- package/src/icons/duotone-icons/Communication/Adress-book#1.svg +11 -0
- package/src/icons/duotone-icons/Communication/Adress-book#2.svg +11 -0
- package/src/icons/duotone-icons/Communication/Archive.svg +10 -0
- package/src/icons/duotone-icons/Communication/Call#1.svg +10 -0
- package/src/icons/duotone-icons/Communication/Call.svg +10 -0
- package/src/icons/duotone-icons/Communication/Chat#1.svg +11 -0
- package/src/icons/duotone-icons/Communication/Chat#2.svg +11 -0
- package/src/icons/duotone-icons/Communication/Chat#4.svg +10 -0
- package/src/icons/duotone-icons/Communication/Chat#5.svg +11 -0
- package/src/icons/duotone-icons/Communication/Chat#6.svg +11 -0
- package/src/icons/duotone-icons/Communication/Chat-check.svg +11 -0
- package/src/icons/duotone-icons/Communication/Chat-error.svg +11 -0
- package/src/icons/duotone-icons/Communication/Chat-locked.svg +11 -0
- package/src/icons/duotone-icons/Communication/Chat-smile.svg +11 -0
- package/src/icons/duotone-icons/Communication/Clipboard-check.svg +12 -0
- package/src/icons/duotone-icons/Communication/Clipboard-list.svg +17 -0
- package/src/icons/duotone-icons/Communication/Contact#1.svg +11 -0
- package/src/icons/duotone-icons/Communication/Delete-user.svg +11 -0
- package/src/icons/duotone-icons/Communication/Dial-numbers.svg +18 -0
- package/src/icons/duotone-icons/Communication/Flag.svg +11 -0
- package/src/icons/duotone-icons/Communication/Forward.svg +10 -0
- package/src/icons/duotone-icons/Communication/Group-chat.svg +11 -0
- package/src/icons/duotone-icons/Communication/Group.svg +11 -0
- package/src/icons/duotone-icons/Communication/Incoming-box.svg +12 -0
- package/src/icons/duotone-icons/Communication/Incoming-call.svg +11 -0
- package/src/icons/duotone-icons/Communication/Incoming-mail.svg +11 -0
- package/src/icons/duotone-icons/Communication/Mail-@.svg +10 -0
- package/src/icons/duotone-icons/Communication/Mail-attachment.svg +11 -0
- package/src/icons/duotone-icons/Communication/Mail-box.svg +11 -0
- package/src/icons/duotone-icons/Communication/Mail-error.svg +11 -0
- package/src/icons/duotone-icons/Communication/Mail-heart.svg +11 -0
- package/src/icons/duotone-icons/Communication/Mail-locked.svg +11 -0
- package/src/icons/duotone-icons/Communication/Mail-notification.svg +11 -0
- package/src/icons/duotone-icons/Communication/Mail-opened.svg +11 -0
- package/src/icons/duotone-icons/Communication/Mail-unocked.svg +11 -0
- package/src/icons/duotone-icons/Communication/Mail.svg +10 -0
- package/src/icons/duotone-icons/Communication/Missed-call.svg +11 -0
- package/src/icons/duotone-icons/Communication/Outgoing-box.svg +12 -0
- package/src/icons/duotone-icons/Communication/Outgoing-call.svg +11 -0
- package/src/icons/duotone-icons/Communication/Outgoing-mail.svg +11 -0
- package/src/icons/duotone-icons/Communication/RSS.svg +12 -0
- package/src/icons/duotone-icons/Communication/Readed-mail.svg +11 -0
- package/src/icons/duotone-icons/Communication/Reply-all.svg +11 -0
- package/src/icons/duotone-icons/Communication/Reply.svg +10 -0
- package/src/icons/duotone-icons/Communication/Right.svg +10 -0
- package/src/icons/duotone-icons/Communication/Safe-chat.svg +11 -0
- package/src/icons/duotone-icons/Communication/Send.svg +10 -0
- package/src/icons/duotone-icons/Communication/Sending mail.svg +11 -0
- package/src/icons/duotone-icons/Communication/Sending.svg +11 -0
- package/src/icons/duotone-icons/Communication/Share.svg +11 -0
- package/src/icons/duotone-icons/Communication/Shield-thunder.svg +11 -0
- package/src/icons/duotone-icons/Communication/Shield-user.svg +12 -0
- package/src/icons/duotone-icons/Communication/Snoozed-mail.svg +11 -0
- package/src/icons/duotone-icons/Communication/Spam.svg +10 -0
- package/src/icons/duotone-icons/Communication/Thumbtack.svg +11 -0
- package/src/icons/duotone-icons/Communication/Urgent-mail.svg +11 -0
- package/src/icons/duotone-icons/Communication/Write.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Baking-glove.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Bowl.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Chef.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Cooking-book.svg +17 -0
- package/src/icons/duotone-icons/Cooking/Cooking-pot.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Cutting board.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Dinner.svg +14 -0
- package/src/icons/duotone-icons/Cooking/Dish.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Dishes.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Fork-spoon-knife.svg +15 -0
- package/src/icons/duotone-icons/Cooking/Fork-spoon.svg +13 -0
- package/src/icons/duotone-icons/Cooking/Fork.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Frying-pan.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Grater.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Kitchen-scale.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Knife#1.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Knife#2.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Knife&fork#1.svg +13 -0
- package/src/icons/duotone-icons/Cooking/Knife&fork#2.svg +13 -0
- package/src/icons/duotone-icons/Cooking/Ladle.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Rolling-pin.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Saucepan.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Shovel.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Sieve.svg +11 -0
- package/src/icons/duotone-icons/Cooking/Spoon.svg +12 -0
- package/src/icons/duotone-icons/Design/Adjust.svg +10 -0
- package/src/icons/duotone-icons/Design/Anchor-center-down.svg +14 -0
- package/src/icons/duotone-icons/Design/Anchor-center-up.svg +14 -0
- package/src/icons/duotone-icons/Design/Anchor-center.svg +11 -0
- package/src/icons/duotone-icons/Design/Anchor-left-down.svg +14 -0
- package/src/icons/duotone-icons/Design/Anchor-left-up.svg +14 -0
- package/src/icons/duotone-icons/Design/Anchor-left.svg +14 -0
- package/src/icons/duotone-icons/Design/Anchor-right-down.svg +14 -0
- package/src/icons/duotone-icons/Design/Anchor-right-up.svg +14 -0
- package/src/icons/duotone-icons/Design/Anchor-right.svg +14 -0
- package/src/icons/duotone-icons/Design/Arrows.svg +11 -0
- package/src/icons/duotone-icons/Design/Bezier-curve.svg +11 -0
- package/src/icons/duotone-icons/Design/Border.svg +10 -0
- package/src/icons/duotone-icons/Design/Brush.svg +11 -0
- package/src/icons/duotone-icons/Design/Bucket.svg +11 -0
- package/src/icons/duotone-icons/Design/Cap-1.svg +11 -0
- package/src/icons/duotone-icons/Design/Cap-2.svg +10 -0
- package/src/icons/duotone-icons/Design/Cap-3.svg +11 -0
- package/src/icons/duotone-icons/Design/Circle.svg +10 -0
- package/src/icons/duotone-icons/Design/Color-profile.svg +11 -0
- package/src/icons/duotone-icons/Design/Color.svg +10 -0
- package/src/icons/duotone-icons/Design/Component.svg +10 -0
- package/src/icons/duotone-icons/Design/Crop.svg +11 -0
- package/src/icons/duotone-icons/Design/Difference.svg +11 -0
- package/src/icons/duotone-icons/Design/Edit.svg +11 -0
- package/src/icons/duotone-icons/Design/Eraser.svg +10 -0
- package/src/icons/duotone-icons/Design/Flatten.svg +11 -0
- package/src/icons/duotone-icons/Design/Flip-horizontal.svg +12 -0
- package/src/icons/duotone-icons/Design/Flip-vertical.svg +12 -0
- package/src/icons/duotone-icons/Design/Horizontal.svg +11 -0
- package/src/icons/duotone-icons/Design/Image.svg +10 -0
- package/src/icons/duotone-icons/Design/Interselect.svg +11 -0
- package/src/icons/duotone-icons/Design/Join-1.svg +11 -0
- package/src/icons/duotone-icons/Design/Join-2.svg +11 -0
- package/src/icons/duotone-icons/Design/Join-3.svg +11 -0
- package/src/icons/duotone-icons/Design/Layers.svg +11 -0
- package/src/icons/duotone-icons/Design/Line.svg +12 -0
- package/src/icons/duotone-icons/Design/Magic.svg +11 -0
- package/src/icons/duotone-icons/Design/Mask.svg +11 -0
- package/src/icons/duotone-icons/Design/Patch.svg +12 -0
- package/src/icons/duotone-icons/Design/Pen&ruller.svg +11 -0
- package/src/icons/duotone-icons/Design/Pen-tool-vector.svg +11 -0
- package/src/icons/duotone-icons/Design/Pencil.svg +11 -0
- package/src/icons/duotone-icons/Design/Picker.svg +11 -0
- package/src/icons/duotone-icons/Design/Pixels.svg +15 -0
- package/src/icons/duotone-icons/Design/Polygon.svg +10 -0
- package/src/icons/duotone-icons/Design/Position.svg +10 -0
- package/src/icons/duotone-icons/Design/Rectangle.svg +10 -0
- package/src/icons/duotone-icons/Design/Saturation.svg +11 -0
- package/src/icons/duotone-icons/Design/Select.svg +11 -0
- package/src/icons/duotone-icons/Design/Sketch.svg +11 -0
- package/src/icons/duotone-icons/Design/Stamp.svg +11 -0
- package/src/icons/duotone-icons/Design/Substract.svg +11 -0
- package/src/icons/duotone-icons/Design/Target.svg +11 -0
- package/src/icons/duotone-icons/Design/Triangle.svg +10 -0
- package/src/icons/duotone-icons/Design/Union.svg +10 -0
- package/src/icons/duotone-icons/Design/Vertical.svg +11 -0
- package/src/icons/duotone-icons/Design/Zoom minus.svg +12 -0
- package/src/icons/duotone-icons/Design/Zoom plus.svg +12 -0
- package/src/icons/duotone-icons/Devices/Airpods.svg +13 -0
- package/src/icons/duotone-icons/Devices/Android.svg +11 -0
- package/src/icons/duotone-icons/Devices/Apple-Watch.svg +11 -0
- package/src/icons/duotone-icons/Devices/Battery-charging.svg +12 -0
- package/src/icons/duotone-icons/Devices/Battery-empty.svg +11 -0
- package/src/icons/duotone-icons/Devices/Battery-full.svg +11 -0
- package/src/icons/duotone-icons/Devices/Battery-half.svg +11 -0
- package/src/icons/duotone-icons/Devices/Bluetooth.svg +11 -0
- package/src/icons/duotone-icons/Devices/CPU#1.svg +17 -0
- package/src/icons/duotone-icons/Devices/CPU#2.svg +23 -0
- package/src/icons/duotone-icons/Devices/Camera.svg +12 -0
- package/src/icons/duotone-icons/Devices/Cardboard-vr.svg +11 -0
- package/src/icons/duotone-icons/Devices/Cassete.svg +12 -0
- package/src/icons/duotone-icons/Devices/Diagnostics.svg +12 -0
- package/src/icons/duotone-icons/Devices/Display#1.svg +11 -0
- package/src/icons/duotone-icons/Devices/Display#2.svg +12 -0
- package/src/icons/duotone-icons/Devices/Display#3.svg +12 -0
- package/src/icons/duotone-icons/Devices/Gameboy.svg +11 -0
- package/src/icons/duotone-icons/Devices/Gamepad#1.svg +11 -0
- package/src/icons/duotone-icons/Devices/Gamepad#2.svg +11 -0
- package/src/icons/duotone-icons/Devices/Generator.svg +13 -0
- package/src/icons/duotone-icons/Devices/Hard-drive.svg +11 -0
- package/src/icons/duotone-icons/Devices/Headphones.svg +11 -0
- package/src/icons/duotone-icons/Devices/Homepod.svg +11 -0
- package/src/icons/duotone-icons/Devices/Keyboard.svg +11 -0
- package/src/icons/duotone-icons/Devices/LTE#1.svg +11 -0
- package/src/icons/duotone-icons/Devices/LTE#2.svg +11 -0
- package/src/icons/duotone-icons/Devices/Laptop-macbook.svg +11 -0
- package/src/icons/duotone-icons/Devices/Laptop.svg +11 -0
- package/src/icons/duotone-icons/Devices/Mic.svg +11 -0
- package/src/icons/duotone-icons/Devices/Midi.svg +16 -0
- package/src/icons/duotone-icons/Devices/Mouse.svg +12 -0
- package/src/icons/duotone-icons/Devices/Phone.svg +12 -0
- package/src/icons/duotone-icons/Devices/Printer.svg +11 -0
- package/src/icons/duotone-icons/Devices/Radio.svg +14 -0
- package/src/icons/duotone-icons/Devices/Router#1.svg +11 -0
- package/src/icons/duotone-icons/Devices/Router#2.svg +11 -0
- package/src/icons/duotone-icons/Devices/SD-card.svg +10 -0
- package/src/icons/duotone-icons/Devices/Server.svg +12 -0
- package/src/icons/duotone-icons/Devices/Speaker.svg +11 -0
- package/src/icons/duotone-icons/Devices/TV#1.svg +12 -0
- package/src/icons/duotone-icons/Devices/TV#2.svg +11 -0
- package/src/icons/duotone-icons/Devices/Tablet.svg +11 -0
- package/src/icons/duotone-icons/Devices/USB.svg +12 -0
- package/src/icons/duotone-icons/Devices/Usb-storage.svg +11 -0
- package/src/icons/duotone-icons/Devices/Video-camera.svg +11 -0
- package/src/icons/duotone-icons/Devices/Watch#1.svg +13 -0
- package/src/icons/duotone-icons/Devices/Watch#2.svg +13 -0
- package/src/icons/duotone-icons/Devices/Wi-fi.svg +11 -0
- package/src/icons/duotone-icons/Devices/iMac.svg +12 -0
- package/src/icons/duotone-icons/Devices/iPhone-X.svg +11 -0
- package/src/icons/duotone-icons/Devices/iPhone-back.svg +10 -0
- package/src/icons/duotone-icons/Devices/iPhone-x-back.svg +10 -0
- package/src/icons/duotone-icons/Electric/Air-conditioning.svg +11 -0
- package/src/icons/duotone-icons/Electric/Blender.svg +10 -0
- package/src/icons/duotone-icons/Electric/Fan.svg +12 -0
- package/src/icons/duotone-icons/Electric/Fridge.svg +10 -0
- package/src/icons/duotone-icons/Electric/Gas-stove.svg +11 -0
- package/src/icons/duotone-icons/Electric/Hair-dryer.svg +11 -0
- package/src/icons/duotone-icons/Electric/Highvoltage.svg +10 -0
- package/src/icons/duotone-icons/Electric/Iron.svg +11 -0
- package/src/icons/duotone-icons/Electric/Kettle.svg +11 -0
- package/src/icons/duotone-icons/Electric/Mixer.svg +11 -0
- package/src/icons/duotone-icons/Electric/Outlet.svg +11 -0
- package/src/icons/duotone-icons/Electric/Range-hood.svg +11 -0
- package/src/icons/duotone-icons/Electric/Shutdown.svg +11 -0
- package/src/icons/duotone-icons/Electric/Socket-eu.svg +10 -0
- package/src/icons/duotone-icons/Electric/Socket-us.svg +10 -0
- package/src/icons/duotone-icons/Electric/Washer.svg +11 -0
- package/src/icons/duotone-icons/Files/Cloud-download.svg +11 -0
- package/src/icons/duotone-icons/Files/Cloud-upload.svg +11 -0
- package/src/icons/duotone-icons/Files/Compilation.svg +14 -0
- package/src/icons/duotone-icons/Files/Compiled-file.svg +14 -0
- package/src/icons/duotone-icons/Files/Deleted-file.svg +11 -0
- package/src/icons/duotone-icons/Files/Deleted-folder.svg +11 -0
- package/src/icons/duotone-icons/Files/Download.inline.svg +12 -0
- package/src/icons/duotone-icons/Files/Downloaded file.svg +11 -0
- package/src/icons/duotone-icons/Files/Downloads-folder.svg +11 -0
- package/src/icons/duotone-icons/Files/Export.svg +12 -0
- package/src/icons/duotone-icons/Files/File-cloud.svg +11 -0
- package/src/icons/duotone-icons/Files/File-done.svg +11 -0
- package/src/icons/duotone-icons/Files/File-minus.svg +11 -0
- package/src/icons/duotone-icons/Files/File-plus.svg +11 -0
- package/src/icons/duotone-icons/Files/File.svg +12 -0
- package/src/icons/duotone-icons/Files/Folder-check.svg +11 -0
- package/src/icons/duotone-icons/Files/Folder-cloud.svg +11 -0
- package/src/icons/duotone-icons/Files/Folder-error.svg +11 -0
- package/src/icons/duotone-icons/Files/Folder-heart.svg +11 -0
- package/src/icons/duotone-icons/Files/Folder-minus.svg +11 -0
- package/src/icons/duotone-icons/Files/Folder-plus.svg +11 -0
- package/src/icons/duotone-icons/Files/Folder-solid.svg +10 -0
- package/src/icons/duotone-icons/Files/Folder-star.svg +11 -0
- package/src/icons/duotone-icons/Files/Folder-thunder.svg +11 -0
- package/src/icons/duotone-icons/Files/Folder.svg +10 -0
- package/src/icons/duotone-icons/Files/Group-folders.svg +11 -0
- package/src/icons/duotone-icons/Files/Import.svg +12 -0
- package/src/icons/duotone-icons/Files/Locked-folder.svg +11 -0
- package/src/icons/duotone-icons/Files/Media-folder.svg +11 -0
- package/src/icons/duotone-icons/Files/Media.svg +11 -0
- package/src/icons/duotone-icons/Files/Music.svg +11 -0
- package/src/icons/duotone-icons/Files/Pictures#1.svg +13 -0
- package/src/icons/duotone-icons/Files/Pictures#2.svg +15 -0
- package/src/icons/duotone-icons/Files/Protected-file.svg +11 -0
- package/src/icons/duotone-icons/Files/Selected-file.svg +11 -0
- package/src/icons/duotone-icons/Files/Share.svg +13 -0
- package/src/icons/duotone-icons/Files/Upload-folder.svg +11 -0
- package/src/icons/duotone-icons/Files/Upload.svg +12 -0
- package/src/icons/duotone-icons/Files/Uploaded-file.svg +11 -0
- package/src/icons/duotone-icons/Files/User-folder.svg +12 -0
- package/src/icons/duotone-icons/Food/Beer.svg +14 -0
- package/src/icons/duotone-icons/Food/Bottle#1.svg +11 -0
- package/src/icons/duotone-icons/Food/Bottle#2.svg +11 -0
- package/src/icons/duotone-icons/Food/Bread.svg +11 -0
- package/src/icons/duotone-icons/Food/Bucket.svg +11 -0
- package/src/icons/duotone-icons/Food/Burger.svg +12 -0
- package/src/icons/duotone-icons/Food/Cake.svg +12 -0
- package/src/icons/duotone-icons/Food/Carrot.svg +13 -0
- package/src/icons/duotone-icons/Food/Cheese.svg +11 -0
- package/src/icons/duotone-icons/Food/Chicken.svg +13 -0
- package/src/icons/duotone-icons/Food/Coffee#1.svg +14 -0
- package/src/icons/duotone-icons/Food/Coffee#2.svg +12 -0
- package/src/icons/duotone-icons/Food/Cookie.svg +13 -0
- package/src/icons/duotone-icons/Food/Dinner.svg +11 -0
- package/src/icons/duotone-icons/Food/Fish.svg +11 -0
- package/src/icons/duotone-icons/Food/French Bread.svg +10 -0
- package/src/icons/duotone-icons/Food/Glass-martini.svg +11 -0
- package/src/icons/duotone-icons/Food/Ice-cream#1.svg +11 -0
- package/src/icons/duotone-icons/Food/Ice-cream#2.svg +11 -0
- package/src/icons/duotone-icons/Food/Miso-soup.svg +11 -0
- package/src/icons/duotone-icons/Food/Orange.svg +11 -0
- package/src/icons/duotone-icons/Food/Pizza.svg +13 -0
- package/src/icons/duotone-icons/Food/Sushi.svg +11 -0
- package/src/icons/duotone-icons/Food/Two-bottles.svg +11 -0
- package/src/icons/duotone-icons/Food/Wine.svg +11 -0
- package/src/icons/duotone-icons/General/Attachment#1.svg +11 -0
- package/src/icons/duotone-icons/General/Attachment#2.svg +13 -0
- package/src/icons/duotone-icons/General/Binocular.svg +10 -0
- package/src/icons/duotone-icons/General/Bookmark.svg +10 -0
- package/src/icons/duotone-icons/General/Clip.svg +10 -0
- package/src/icons/duotone-icons/General/Clipboard.svg +13 -0
- package/src/icons/duotone-icons/General/Cursor.svg +10 -0
- package/src/icons/duotone-icons/General/Dislike.svg +11 -0
- package/src/icons/duotone-icons/General/Duplicate.svg +11 -0
- package/src/icons/duotone-icons/General/Edit.svg +10 -0
- package/src/icons/duotone-icons/General/Expand-arrows.svg +11 -0
- package/src/icons/duotone-icons/General/Fire.svg +10 -0
- package/src/icons/duotone-icons/General/Folder.svg +10 -0
- package/src/icons/duotone-icons/General/Half-heart.svg +11 -0
- package/src/icons/duotone-icons/General/Half-star.svg +11 -0
- package/src/icons/duotone-icons/General/Heart.svg +10 -0
- package/src/icons/duotone-icons/General/Hidden.svg +12 -0
- package/src/icons/duotone-icons/General/Like.svg +11 -0
- package/src/icons/duotone-icons/General/Lock.svg +16 -0
- package/src/icons/duotone-icons/General/Notification#2.svg +11 -0
- package/src/icons/duotone-icons/General/Notifications#1.svg +10 -0
- package/src/icons/duotone-icons/General/Other#1.svg +12 -0
- package/src/icons/duotone-icons/General/Other#2.svg +12 -0
- package/src/icons/duotone-icons/General/Sad.svg +11 -0
- package/src/icons/duotone-icons/General/Save.svg +11 -0
- package/src/icons/duotone-icons/General/Scale.svg +11 -0
- package/src/icons/duotone-icons/General/Scissors.svg +11 -0
- package/src/icons/duotone-icons/General/Search.svg +11 -0
- package/src/icons/duotone-icons/General/Settings#3.svg +11 -0
- package/src/icons/duotone-icons/General/Settings-1.inline.svg +11 -0
- package/src/icons/duotone-icons/General/Settings-2.svg +10 -0
- package/src/icons/duotone-icons/General/Shield-check.svg +11 -0
- package/src/icons/duotone-icons/General/Shield-disabled.svg +11 -0
- package/src/icons/duotone-icons/General/Shield-protected.svg +11 -0
- package/src/icons/duotone-icons/General/Size.svg +11 -0
- package/src/icons/duotone-icons/General/Smile.svg +11 -0
- package/src/icons/duotone-icons/General/Star.svg +10 -0
- package/src/icons/duotone-icons/General/Thunder-move.svg +11 -0
- package/src/icons/duotone-icons/General/Thunder.svg +10 -0
- package/src/icons/duotone-icons/General/Trash.svg +11 -0
- package/src/icons/duotone-icons/General/Unlock.svg +16 -0
- package/src/icons/duotone-icons/General/Update.svg +10 -0
- package/src/icons/duotone-icons/General/User.svg +11 -0
- package/src/icons/duotone-icons/General/Visible.svg +11 -0
- package/src/icons/duotone-icons/Home/Air-ballon.svg +11 -0
- package/src/icons/duotone-icons/Home/Alarm-clock.svg +12 -0
- package/src/icons/duotone-icons/Home/Armchair.svg +11 -0
- package/src/icons/duotone-icons/Home/Bag-chair.svg +11 -0
- package/src/icons/duotone-icons/Home/Bath.svg +11 -0
- package/src/icons/duotone-icons/Home/Bed.svg +12 -0
- package/src/icons/duotone-icons/Home/Book-open.svg +11 -0
- package/src/icons/duotone-icons/Home/Book.svg +16 -0
- package/src/icons/duotone-icons/Home/Box.svg +11 -0
- package/src/icons/duotone-icons/Home/Broom.svg +11 -0
- package/src/icons/duotone-icons/Home/Building.svg +12 -0
- package/src/icons/duotone-icons/Home/Bulb#1.svg +13 -0
- package/src/icons/duotone-icons/Home/Bulb#2.svg +13 -0
- package/src/icons/duotone-icons/Home/Chair#1.svg +11 -0
- package/src/icons/duotone-icons/Home/Chair#2.svg +11 -0
- package/src/icons/duotone-icons/Home/Clock.svg +11 -0
- package/src/icons/duotone-icons/Home/Commode#1.svg +11 -0
- package/src/icons/duotone-icons/Home/Commode#2.svg +11 -0
- package/src/icons/duotone-icons/Home/Couch.svg +11 -0
- package/src/icons/duotone-icons/Home/Cupboard.svg +11 -0
- package/src/icons/duotone-icons/Home/Curtains.svg +11 -0
- package/src/icons/duotone-icons/Home/Deer.svg +11 -0
- package/src/icons/duotone-icons/Home/Door-open.svg +11 -0
- package/src/icons/duotone-icons/Home/Earth.svg +11 -0
- package/src/icons/duotone-icons/Home/Fireplace.svg +11 -0
- package/src/icons/duotone-icons/Home/Flashlight.svg +11 -0
- package/src/icons/duotone-icons/Home/Flower#1.svg +13 -0
- package/src/icons/duotone-icons/Home/Flower#2.svg +14 -0
- package/src/icons/duotone-icons/Home/Flower#3.svg +12 -0
- package/src/icons/duotone-icons/Home/Globe.svg +11 -0
- package/src/icons/duotone-icons/Home/Home-heart.svg +11 -0
- package/src/icons/duotone-icons/Home/Home.svg +10 -0
- package/src/icons/duotone-icons/Home/Key.svg +11 -0
- package/src/icons/duotone-icons/Home/Ladder.svg +11 -0
- package/src/icons/duotone-icons/Home/Lamp#1.svg +13 -0
- package/src/icons/duotone-icons/Home/Lamp#2.svg +12 -0
- package/src/icons/duotone-icons/Home/Library.svg +11 -0
- package/src/icons/duotone-icons/Home/Mailbox.svg +11 -0
- package/src/icons/duotone-icons/Home/Mirror.svg +11 -0
- package/src/icons/duotone-icons/Home/Picture.svg +13 -0
- package/src/icons/duotone-icons/Home/Ruller.svg +10 -0
- package/src/icons/duotone-icons/Home/Stairs.svg +10 -0
- package/src/icons/duotone-icons/Home/Timer.svg +13 -0
- package/src/icons/duotone-icons/Home/Toilet.svg +11 -0
- package/src/icons/duotone-icons/Home/Towel.svg +10 -0
- package/src/icons/duotone-icons/Home/Trash.svg +11 -0
- package/src/icons/duotone-icons/Home/Water-mixer.svg +12 -0
- package/src/icons/duotone-icons/Home/Weight#1.svg +11 -0
- package/src/icons/duotone-icons/Home/Weight#2.svg +11 -0
- package/src/icons/duotone-icons/Home/Wood#1.svg +11 -0
- package/src/icons/duotone-icons/Home/Wood#2.svg +11 -0
- package/src/icons/duotone-icons/Home/Wood-horse.svg +10 -0
- package/src/icons/duotone-icons/Layout/Layout-3d.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-4-blocks.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-arrange.inline.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-grid.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-horizontal.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-left-panel-1.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-left-panel-2.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-right-panel-1.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-right-panel-2.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-top-panel-1.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-top-panel-2.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-top-panel-3.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-top-panel-4.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-top-panel-5.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-top-panel-6.svg +11 -0
- package/src/icons/duotone-icons/Layout/Layout-vertical.svg +11 -0
- package/src/icons/duotone-icons/Map/Compass.svg +10 -0
- package/src/icons/duotone-icons/Map/Direction#1.svg +10 -0
- package/src/icons/duotone-icons/Map/Direction#2.svg +10 -0
- package/src/icons/duotone-icons/Map/Location-arrow.svg +10 -0
- package/src/icons/duotone-icons/Map/Marker#1.svg +10 -0
- package/src/icons/duotone-icons/Map/Marker#2.svg +10 -0
- package/src/icons/duotone-icons/Map/Position.svg +12 -0
- package/src/icons/duotone-icons/Media/Add-music.svg +11 -0
- package/src/icons/duotone-icons/Media/Airplay-video.svg +11 -0
- package/src/icons/duotone-icons/Media/Airplay.svg +11 -0
- package/src/icons/duotone-icons/Media/Back.svg +11 -0
- package/src/icons/duotone-icons/Media/Backward.svg +11 -0
- package/src/icons/duotone-icons/Media/CD.svg +11 -0
- package/src/icons/duotone-icons/Media/DVD.svg +11 -0
- package/src/icons/duotone-icons/Media/Eject.svg +11 -0
- package/src/icons/duotone-icons/Media/Equalizer.svg +13 -0
- package/src/icons/duotone-icons/Media/Forward.svg +11 -0
- package/src/icons/duotone-icons/Media/Media-library#1.svg +13 -0
- package/src/icons/duotone-icons/Media/Media-library#2.svg +11 -0
- package/src/icons/duotone-icons/Media/Media-library#3.svg +17 -0
- package/src/icons/duotone-icons/Media/Movie-Lane #2.svg +11 -0
- package/src/icons/duotone-icons/Media/Movie-lane#1.svg +11 -0
- package/src/icons/duotone-icons/Media/Music-cloud.svg +11 -0
- package/src/icons/duotone-icons/Media/Music-note.svg +10 -0
- package/src/icons/duotone-icons/Media/Music.svg +10 -0
- package/src/icons/duotone-icons/Media/Mute.svg +11 -0
- package/src/icons/duotone-icons/Media/Next.svg +11 -0
- package/src/icons/duotone-icons/Media/Pause.svg +10 -0
- package/src/icons/duotone-icons/Media/Play.svg +10 -0
- package/src/icons/duotone-icons/Media/Playlist#1.svg +11 -0
- package/src/icons/duotone-icons/Media/Playlist#2.svg +11 -0
- package/src/icons/duotone-icons/Media/Rec.svg +10 -0
- package/src/icons/duotone-icons/Media/Repeat-one.svg +11 -0
- package/src/icons/duotone-icons/Media/Repeat.svg +11 -0
- package/src/icons/duotone-icons/Media/Shuffle.svg +11 -0
- package/src/icons/duotone-icons/Media/Volume-down.svg +11 -0
- package/src/icons/duotone-icons/Media/Volume-full.svg +11 -0
- package/src/icons/duotone-icons/Media/Volume-half.svg +11 -0
- package/src/icons/duotone-icons/Media/Volume-up.svg +11 -0
- package/src/icons/duotone-icons/Media/Vynil.svg +11 -0
- package/src/icons/duotone-icons/Media/Youtube.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Angle-double-down.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Angle-double-left.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Angle-double-right.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Angle-double-up.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Angle-down.svg +10 -0
- package/src/icons/duotone-icons/Navigation/Angle-left.svg +10 -0
- package/src/icons/duotone-icons/Navigation/Angle-right.svg +10 -0
- package/src/icons/duotone-icons/Navigation/Angle-up.svg +10 -0
- package/src/icons/duotone-icons/Navigation/Arrow-down.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Arrow-from-bottom.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Arrow-from-left.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Arrow-from-right.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Arrow-from-top.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Arrow-left.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Arrow-right.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Arrow-to-bottom.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Arrow-to-left.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Arrow-to-right.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Arrow-to-up.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Arrow-up.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Arrows-h.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Arrows-v.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Check.svg +10 -0
- package/src/icons/duotone-icons/Navigation/Close.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Double-check.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Down-2.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Down-left.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Down-right.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Exchange.svg +13 -0
- package/src/icons/duotone-icons/Navigation/Left 3.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Left-2.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Minus.svg +9 -0
- package/src/icons/duotone-icons/Navigation/Plus.svg +10 -0
- package/src/icons/duotone-icons/Navigation/Right 3.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Right-2.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Route.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Sign-in.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Sign-out.svg +12 -0
- package/src/icons/duotone-icons/Navigation/Up-2.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Up-down.svg +13 -0
- package/src/icons/duotone-icons/Navigation/Up-left.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Up-right.svg +11 -0
- package/src/icons/duotone-icons/Navigation/Waiting.svg +10 -0
- package/src/icons/duotone-icons/Shopping/ATM.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Bag#1.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Bag#2.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Barcode-read.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Barcode-scan.svg +12 -0
- package/src/icons/duotone-icons/Shopping/Barcode.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Bitcoin.svg +12 -0
- package/src/icons/duotone-icons/Shopping/Box#1.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Box#3.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Box2.inline.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Calculator.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Cart#1.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Cart#2.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Cart#3.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Chart-bar#1.svg +13 -0
- package/src/icons/duotone-icons/Shopping/Chart-bar#2.svg +13 -0
- package/src/icons/duotone-icons/Shopping/Chart-bar#3.svg +13 -0
- package/src/icons/duotone-icons/Shopping/Chart-line#1.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Chart-line#2.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Chart-pie.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Credit-card.svg +12 -0
- package/src/icons/duotone-icons/Shopping/Dollar.svg +12 -0
- package/src/icons/duotone-icons/Shopping/Euro.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Gift.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Loader.svg +12 -0
- package/src/icons/duotone-icons/Shopping/MC.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Money.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Pound.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Price #1.svg +10 -0
- package/src/icons/duotone-icons/Shopping/Price #2.svg +14 -0
- package/src/icons/duotone-icons/Shopping/Rouble.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Safe.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Sale#1.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Sale#2.svg +13 -0
- package/src/icons/duotone-icons/Shopping/Settings.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Sort#1.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Sort#2.svg +10 -0
- package/src/icons/duotone-icons/Shopping/Sort#3.svg +10 -0
- package/src/icons/duotone-icons/Shopping/Ticket.svg +10 -0
- package/src/icons/duotone-icons/Shopping/Wallet#2.svg +11 -0
- package/src/icons/duotone-icons/Shopping/Wallet#3.svg +12 -0
- package/src/icons/duotone-icons/Shopping/Wallet.svg +12 -0
- package/src/icons/duotone-icons/Text/Align-auto.svg +11 -0
- package/src/icons/duotone-icons/Text/Align-center.svg +11 -0
- package/src/icons/duotone-icons/Text/Align-justify.svg +11 -0
- package/src/icons/duotone-icons/Text/Align-left.svg +12 -0
- package/src/icons/duotone-icons/Text/Align-right.svg +11 -0
- package/src/icons/duotone-icons/Text/Article.svg +11 -0
- package/src/icons/duotone-icons/Text/Bold.svg +10 -0
- package/src/icons/duotone-icons/Text/Bullet-list.svg +11 -0
- package/src/icons/duotone-icons/Text/Code.svg +10 -0
- package/src/icons/duotone-icons/Text/Edit-text.svg +11 -0
- package/src/icons/duotone-icons/Text/Filter.svg +10 -0
- package/src/icons/duotone-icons/Text/Font.svg +11 -0
- package/src/icons/duotone-icons/Text/H1.svg +11 -0
- package/src/icons/duotone-icons/Text/H2.svg +11 -0
- package/src/icons/duotone-icons/Text/Itallic.svg +10 -0
- package/src/icons/duotone-icons/Text/Menu.svg +11 -0
- package/src/icons/duotone-icons/Text/Paragraph.svg +10 -0
- package/src/icons/duotone-icons/Text/Quote#1.svg +11 -0
- package/src/icons/duotone-icons/Text/Quote#2.svg +11 -0
- package/src/icons/duotone-icons/Text/Redo.svg +10 -0
- package/src/icons/duotone-icons/Text/Strikethrough.svg +11 -0
- package/src/icons/duotone-icons/Text/Text-height.svg +11 -0
- package/src/icons/duotone-icons/Text/Text-width.svg +11 -0
- package/src/icons/duotone-icons/Text/Text.svg +10 -0
- package/src/icons/duotone-icons/Text/Underline.svg +11 -0
- package/src/icons/duotone-icons/Text/Undo.svg +10 -0
- package/src/icons/duotone-icons/Tools/Angle Grinder.svg +12 -0
- package/src/icons/duotone-icons/Tools/Axe.svg +11 -0
- package/src/icons/duotone-icons/Tools/Brush.svg +11 -0
- package/src/icons/duotone-icons/Tools/Compass.svg +11 -0
- package/src/icons/duotone-icons/Tools/Hummer#2.svg +12 -0
- package/src/icons/duotone-icons/Tools/Hummer.svg +11 -0
- package/src/icons/duotone-icons/Tools/Pantone.svg +12 -0
- package/src/icons/duotone-icons/Tools/Road-Cone.svg +11 -0
- package/src/icons/duotone-icons/Tools/Roller.svg +12 -0
- package/src/icons/duotone-icons/Tools/Roulette.svg +11 -0
- package/src/icons/duotone-icons/Tools/Screwdriver.svg +11 -0
- package/src/icons/duotone-icons/Tools/Shovel.svg +11 -0
- package/src/icons/duotone-icons/Tools/Spatula.svg +11 -0
- package/src/icons/duotone-icons/Tools/Swiss-knife.svg +11 -0
- package/src/icons/duotone-icons/Tools/Tools.svg +11 -0
- package/src/icons/duotone-icons/Weather/Celcium.svg +11 -0
- package/src/icons/duotone-icons/Weather/Cloud#1.svg +10 -0
- package/src/icons/duotone-icons/Weather/Cloud#2.svg +11 -0
- package/src/icons/duotone-icons/Weather/Cloud-fog.svg +11 -0
- package/src/icons/duotone-icons/Weather/Cloud-sun.svg +11 -0
- package/src/icons/duotone-icons/Weather/Cloud-wind.svg +12 -0
- package/src/icons/duotone-icons/Weather/Cloudy-night.svg +11 -0
- package/src/icons/duotone-icons/Weather/Cloudy.svg +11 -0
- package/src/icons/duotone-icons/Weather/Day-rain.svg +11 -0
- package/src/icons/duotone-icons/Weather/Fahrenheit.svg +11 -0
- package/src/icons/duotone-icons/Weather/Fog.svg +15 -0
- package/src/icons/duotone-icons/Weather/Moon.svg +10 -0
- package/src/icons/duotone-icons/Weather/Night-fog.svg +11 -0
- package/src/icons/duotone-icons/Weather/Night-rain.svg +11 -0
- package/src/icons/duotone-icons/Weather/Rain#1.svg +11 -0
- package/src/icons/duotone-icons/Weather/Rain#2.svg +11 -0
- package/src/icons/duotone-icons/Weather/Rain#5.svg +11 -0
- package/src/icons/duotone-icons/Weather/Rainbow.svg +12 -0
- package/src/icons/duotone-icons/Weather/Snow#1.svg +11 -0
- package/src/icons/duotone-icons/Weather/Snow#2.svg +11 -0
- package/src/icons/duotone-icons/Weather/Snow#3.svg +11 -0
- package/src/icons/duotone-icons/Weather/Snow.svg +11 -0
- package/src/icons/duotone-icons/Weather/Storm.svg +11 -0
- package/src/icons/duotone-icons/Weather/Sun-fog.svg +11 -0
- package/src/icons/duotone-icons/Weather/Sun.svg +11 -0
- package/src/icons/duotone-icons/Weather/Suset#1.svg +11 -0
- package/src/icons/duotone-icons/Weather/Suset#2.svg +11 -0
- package/src/icons/duotone-icons/Weather/Temperature-empty.svg +10 -0
- package/src/icons/duotone-icons/Weather/Temperature-full.svg +10 -0
- package/src/icons/duotone-icons/Weather/Temperature-half.svg +10 -0
- package/src/icons/duotone-icons/Weather/Thunder-night.svg +11 -0
- package/src/icons/duotone-icons/Weather/Thunder.svg +11 -0
- package/src/icons/duotone-icons/Weather/Umbrella.svg +11 -0
- package/src/icons/duotone-icons/Weather/Wind.svg +11 -0
- package/src/icons/social/facebook.svg +10 -0
- package/src/icons/social/instagram.svg +10 -0
- package/src/icons/social/pinterest.svg +3 -0
- package/src/icons/social/twitter.svg +10 -0
- package/src/implemented-proposals/abi-management.md +161 -0
- package/src/implemented-proposals/bank-timestamp-correction.md +77 -0
- package/src/implemented-proposals/commitment.md +92 -0
- package/src/implemented-proposals/durable-tx-nonces.md +131 -0
- package/src/implemented-proposals/ed_overview/ed_economic_sustainability.md +9 -0
- package/src/implemented-proposals/ed_overview/ed_mvp.md +24 -0
- package/src/implemented-proposals/ed_overview/ed_overview.md +19 -0
- package/src/implemented-proposals/ed_overview/ed_references.md +7 -0
- package/src/implemented-proposals/ed_overview/ed_storage_rent_economics.md +17 -0
- package/src/implemented-proposals/ed_overview/ed_validation_client_economics/ed_vce_overview.md +9 -0
- package/src/implemented-proposals/ed_overview/ed_validation_client_economics/ed_vce_state_validation_protocol_based_rewards.md +64 -0
- package/src/implemented-proposals/ed_overview/ed_validation_client_economics/ed_vce_state_validation_transaction_fees.md +20 -0
- package/src/implemented-proposals/ed_overview/ed_validation_client_economics/ed_vce_validation_stake_delegation.md +28 -0
- package/src/implemented-proposals/implemented-proposals.md +9 -0
- package/src/implemented-proposals/installer.md +216 -0
- package/src/implemented-proposals/instruction_introspection.md +28 -0
- package/src/implemented-proposals/leader-leader-transition.md +55 -0
- package/src/implemented-proposals/leader-validator-transition.md +52 -0
- package/src/implemented-proposals/persistent-account-storage.md +83 -0
- package/src/implemented-proposals/readonly-accounts.md +25 -0
- package/src/implemented-proposals/reliable-vote-transmission.md +60 -0
- package/src/implemented-proposals/rent.md +69 -0
- package/src/implemented-proposals/repair-service.md +108 -0
- package/src/implemented-proposals/rpc-transaction-history.md +107 -0
- package/src/implemented-proposals/snapshot-verification.md +56 -0
- package/src/implemented-proposals/staking-rewards.md +33 -0
- package/src/implemented-proposals/testing-programs.md +53 -0
- package/src/implemented-proposals/tower-bft.md +138 -0
- package/src/implemented-proposals/transaction-fees.md +32 -0
- package/src/implemented-proposals/validator-timestamp-oracle.md +107 -0
- package/src/inflation/adjusted_staking_yield.md +118 -0
- package/src/inflation/inflation_schedule.md +40 -0
- package/src/inflation/terminology.md +54 -0
- package/src/integrations/exchange.md +753 -0
- package/src/introduction.md +33 -0
- package/src/offline-signing/durable-nonce.md +247 -0
- package/src/offline-signing.md +174 -0
- package/src/pages/index.js +160 -0
- package/src/pages/styles.module.css +41 -0
- package/src/proposals/accepted-design-proposals.md +11 -0
- package/src/proposals/accounts-db-replication.md +185 -0
- package/src/proposals/bankless-leader.md +57 -0
- package/src/proposals/block-confirmation.md +85 -0
- package/src/proposals/cluster-test-framework.md +102 -0
- package/src/proposals/comprehensive-compute-fees.md +164 -0
- package/src/proposals/embedding-move.md +37 -0
- package/src/proposals/interchain-transaction-verification.md +105 -0
- package/src/proposals/ledger-replication-to-implement.md +417 -0
- package/src/proposals/log_data.md +146 -0
- package/src/proposals/optimistic-confirmation-and-slashing.md +89 -0
- package/src/proposals/optimistic-transaction-propagation-signal.md +109 -0
- package/src/proposals/optimistic_confirmation.md +408 -0
- package/src/proposals/program-instruction-macro.md +226 -0
- package/src/proposals/return-data.md +144 -0
- package/src/proposals/rip-curl.md +56 -0
- package/src/proposals/rust-clients.md +54 -0
- package/src/proposals/simple-payment-and-state-verification.md +258 -0
- package/src/proposals/slashing.md +60 -0
- package/src/proposals/snapshot-verification.md +11 -0
- package/src/proposals/tick-verification.md +70 -0
- package/src/proposals/transactions-v2.md +334 -0
- package/src/proposals/validator-proposal.md +54 -0
- package/src/proposals/vote-signing-to-implement.md +116 -0
- package/src/running-validator/restart-cluster.md +117 -0
- package/src/running-validator/validator-failover.md +146 -0
- package/src/running-validator/validator-info.md +64 -0
- package/src/running-validator/validator-monitor.md +47 -0
- package/src/running-validator/validator-reqs.md +115 -0
- package/src/running-validator/validator-stake.md +132 -0
- package/src/running-validator/validator-start.md +492 -0
- package/src/running-validator/validator-troubleshoot.md +17 -0
- package/src/running-validator/vote-accounts.md +219 -0
- package/src/running-validator.md +7 -0
- package/src/staking/stake-accounts.md +141 -0
- package/src/staking/stake-programming.md +27 -0
- package/src/staking.md +117 -0
- package/src/storage_rent_economics.md +17 -0
- package/src/terminology.md +346 -0
- package/src/theme/Footer/index.js +126 -0
- package/src/theme/Footer/styles.module.css +15 -0
- package/src/transaction_fees.md +21 -0
- package/src/validator/anatomy.md +13 -0
- package/src/validator/blockstore.md +91 -0
- package/src/validator/gossip.md +90 -0
- package/src/validator/runtime.md +69 -0
- package/src/validator/tpu.md +5 -0
- package/src/validator/tvu.md +9 -0
- package/src/wallet-guide/apps.md +74 -0
- package/src/wallet-guide/cli.md +67 -0
- package/src/wallet-guide/file-system-wallet.md +65 -0
- package/src/wallet-guide/hardware-wallets/ledger.md +219 -0
- package/src/wallet-guide/hardware-wallets.md +53 -0
- package/src/wallet-guide/ledger-live.md +77 -0
- package/src/wallet-guide/paper-wallet.md +203 -0
- package/src/wallet-guide/solflare.md +201 -0
- package/src/wallet-guide/support.md +16 -0
- package/src/wallet-guide/web-wallets.md +52 -0
- package/src/wallet-guide.md +63 -0
- package/static/.nojekyll +0 -0
- package/static/img/favicon.ico +0 -0
- package/static/katex/README.md +91 -0
- package/static/katex/contrib/auto-render.js +350 -0
- package/static/katex/contrib/auto-render.min.js +1 -0
- package/static/katex/contrib/auto-render.mjs +226 -0
- package/static/katex/contrib/copy-tex.css +13 -0
- package/static/katex/contrib/copy-tex.js +213 -0
- package/static/katex/contrib/copy-tex.min.css +1 -0
- package/static/katex/contrib/copy-tex.min.js +1 -0
- package/static/katex/contrib/copy-tex.mjs +85 -0
- package/static/katex/contrib/mathtex-script-type.js +137 -0
- package/static/katex/contrib/mathtex-script-type.min.js +1 -0
- package/static/katex/contrib/mathtex-script-type.mjs +24 -0
- package/static/katex/contrib/mhchem.js +3241 -0
- package/static/katex/contrib/mhchem.min.js +1 -0
- package/static/katex/contrib/mhchem.mjs +3109 -0
- package/static/katex/contrib/render-a11y-string.js +870 -0
- package/static/katex/contrib/render-a11y-string.min.js +1 -0
- package/static/katex/contrib/render-a11y-string.mjs +753 -0
- package/static/katex/fonts/KaTeX_AMS-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_AMS-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_AMS-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
- package/static/katex/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
- package/static/katex/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
- package/static/katex/fonts/KaTeX_Fraktur-Bold.woff +0 -0
- package/static/katex/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_Fraktur-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Main-Bold.ttf +0 -0
- package/static/katex/fonts/KaTeX_Main-Bold.woff +0 -0
- package/static/katex/fonts/KaTeX_Main-Bold.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
- package/static/katex/fonts/KaTeX_Main-BoldItalic.woff +0 -0
- package/static/katex/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Main-Italic.ttf +0 -0
- package/static/katex/fonts/KaTeX_Main-Italic.woff +0 -0
- package/static/katex/fonts/KaTeX_Main-Italic.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Main-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_Main-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_Main-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
- package/static/katex/fonts/KaTeX_Math-BoldItalic.woff +0 -0
- package/static/katex/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Math-Italic.ttf +0 -0
- package/static/katex/fonts/KaTeX_Math-Italic.woff +0 -0
- package/static/katex/fonts/KaTeX_Math-Italic.woff2 +0 -0
- package/static/katex/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
- package/static/katex/fonts/KaTeX_SansSerif-Bold.woff +0 -0
- package/static/katex/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
- package/static/katex/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
- package/static/katex/fonts/KaTeX_SansSerif-Italic.woff +0 -0
- package/static/katex/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
- package/static/katex/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_SansSerif-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Script-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_Script-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_Script-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Size1-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_Size1-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_Size1-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Size2-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_Size2-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_Size2-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Size3-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_Size3-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_Size3-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Size4-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_Size4-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_Size4-Regular.woff2 +0 -0
- package/static/katex/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
- package/static/katex/fonts/KaTeX_Typewriter-Regular.woff +0 -0
- package/static/katex/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
- package/static/katex/katex.css +1034 -0
- package/static/katex/katex.js +17308 -0
- package/static/katex/katex.min.css +1 -0
- package/static/katex/katex.min.js +1 -0
- package/static/katex/katex.mjs +16911 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Ledger Nano S and Nano X
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
This document describes how to set up a
|
|
6
|
+
[Ledger Nano S](https://shop.ledger.com/products/ledger-nano-s) or
|
|
7
|
+
[Ledger Nano X](https://shop.ledger.com/pages/ledger-nano-x)
|
|
8
|
+
with the [Ledger Live](https://www.ledger.com/ledger-live) software.
|
|
9
|
+
|
|
10
|
+
Once the setup steps shown below are complete and the Solana app is installed
|
|
11
|
+
on your Nano device, users have several options of how to
|
|
12
|
+
[use the Nano to interact with the Solana Network](#interact-with-the-solana-network)
|
|
13
|
+
|
|
14
|
+
## Getting Started
|
|
15
|
+
|
|
16
|
+
- Order a [Nano S](https://shop.ledger.com/products/ledger-nano-s) or
|
|
17
|
+
[Nano X](https://shop.ledger.com/pages/ledger-nano-x) from Ledger.
|
|
18
|
+
- Follow the instructions for device setup included in the package,
|
|
19
|
+
or [Ledger's Start page](https://www.ledger.com/start/)
|
|
20
|
+
- Install [Ledger Live desktop software](https://www.ledger.com/ledger-live/)
|
|
21
|
+
- If you already have Ledger Live installed, please update to the latest
|
|
22
|
+
version of Ledger Live, which enables the newest firmware and app updates.
|
|
23
|
+
- Connect your Nano to your computer and follow the on-screen instructions.
|
|
24
|
+
- Update the firmware on your new Nano. This is needed to ensure you are able
|
|
25
|
+
to install the latest version of the Solana App.
|
|
26
|
+
- [Update Nano S Firmware](https://support.ledger.com/hc/en-us/articles/360002731113-Update-Ledger-Nano-S-firmware)
|
|
27
|
+
- [Update Nano X Firmware](https://support.ledger.com/hc/en-us/articles/360013349800)
|
|
28
|
+
|
|
29
|
+
## Install the Solana App on your Nano
|
|
30
|
+
|
|
31
|
+
- Open Ledger Live
|
|
32
|
+
- Click on "Manager" in the left pane on the app and search for "Solana" in the
|
|
33
|
+
App Catalog, then click "Install".
|
|
34
|
+
- Make sure your device is plugged in via USB and is unlocked with its PIN
|
|
35
|
+
- You may be prompted on the Nano to confirm the install of Solana App
|
|
36
|
+
- "Solana" should now show as "Installed" in the Ledger Live Manager
|
|
37
|
+
|
|
38
|
+
## Upgrade to the latest version of the Solana App
|
|
39
|
+
|
|
40
|
+
To make sure you have the latest functionality, if you are using an older version
|
|
41
|
+
of the Solana App, please upgrade to version `v1.0.1` by following these steps.
|
|
42
|
+
|
|
43
|
+
- Make sure you have Ledger Live version 2.10.0 or later.
|
|
44
|
+
- To check your version of Ledger Live, click on the Settings button in the
|
|
45
|
+
upper-right corner, then click "About". If a newer version of Ledger Live is
|
|
46
|
+
available, you should see a banner prompting you to upgrade when you first open
|
|
47
|
+
Ledger Live.
|
|
48
|
+
- Update the firmware on your Nano
|
|
49
|
+
- [Update Nano S Firmware](https://support.ledger.com/hc/en-us/articles/360002731113-Update-Ledger-Nano-S-firmware)
|
|
50
|
+
- [Update Nano X Firmware](https://support.ledger.com/hc/en-us/articles/360013349800)
|
|
51
|
+
- After a successful firmware update, the Solana app should automatically get
|
|
52
|
+
re-installed with the latest version of the app.
|
|
53
|
+
|
|
54
|
+
## Interact with the Solana network
|
|
55
|
+
|
|
56
|
+
Users can use any of the following options to use their Nano to interact with
|
|
57
|
+
Solana:
|
|
58
|
+
|
|
59
|
+
- [SolFlare.com](https://solflare.com/) is a non-custodial web wallet built
|
|
60
|
+
specifically for Solana and supports basic transfers and staking operations
|
|
61
|
+
with the Ledger device.
|
|
62
|
+
Check out our guide for [using a Nano with SolFlare](solflare.md).
|
|
63
|
+
|
|
64
|
+
- Developers and advanced users may
|
|
65
|
+
[use a Nano with the Solana command line tools](hardware-wallets/ledger.md).
|
|
66
|
+
New wallet features are almost always supported in the native command line tools
|
|
67
|
+
before being supported by third-party wallets.
|
|
68
|
+
|
|
69
|
+
## Known Issues
|
|
70
|
+
|
|
71
|
+
- Nano X sometimes cannot connect to web wallets using the Windows operating
|
|
72
|
+
system. This is likely to affect any browser-based wallets that use WebUSB.
|
|
73
|
+
The Ledger team is working to resolve this.
|
|
74
|
+
|
|
75
|
+
## Support
|
|
76
|
+
|
|
77
|
+
Check out our [Wallet Support Page](support.md) for ways to get help.
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Paper Wallet
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
This document describes how to create and use a paper wallet with the Solana CLI
|
|
6
|
+
tools.
|
|
7
|
+
|
|
8
|
+
> We do not intend to advise on how to _securely_ create or manage paper wallets. Please research the security concerns carefully.
|
|
9
|
+
|
|
10
|
+
## Overview
|
|
11
|
+
|
|
12
|
+
Solana provides a key generation tool to derive keys from
|
|
13
|
+
[BIP39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki)-compliant
|
|
14
|
+
seed phrases. Solana CLI commands for running a validator and staking tokens all
|
|
15
|
+
support keypair input via seed phrases.
|
|
16
|
+
|
|
17
|
+
## Paper Wallet Usage
|
|
18
|
+
|
|
19
|
+
Solana commands can be run without ever saving a keypair to disk on a machine.
|
|
20
|
+
If avoiding writing a private key to disk is a security concern of yours, you've
|
|
21
|
+
come to the right place.
|
|
22
|
+
|
|
23
|
+
> Even using this secure input method, it's still possible that a private key gets written to disk by unencrypted memory swaps. It is the user's responsibility to protect against this scenario.
|
|
24
|
+
|
|
25
|
+
## Before You Begin
|
|
26
|
+
|
|
27
|
+
- [Install the Solana command-line tools](../cli/install-solana-cli-tools.md)
|
|
28
|
+
|
|
29
|
+
### Check your installation
|
|
30
|
+
|
|
31
|
+
Check that `solana-keygen` is installed correctly by running:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
solana-keygen --version
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Creating a Paper Wallet
|
|
38
|
+
|
|
39
|
+
Using the `solana-keygen` tool, it is possible to generate new seed phrases as
|
|
40
|
+
well as derive a keypair from an existing seed phrase and (optional) passphrase.
|
|
41
|
+
The seed phrase and passphrase can be used together as a paper wallet. As long
|
|
42
|
+
as you keep your seed phrase and passphrase stored safely, you can use them to
|
|
43
|
+
access your account.
|
|
44
|
+
|
|
45
|
+
> For more information about how seed phrases work, review this [Bitcoin Wiki page](https://en.bitcoin.it/wiki/Seed_phrase).
|
|
46
|
+
|
|
47
|
+
### Seed Phrase Generation
|
|
48
|
+
|
|
49
|
+
Generating a new keypair can be done using the `solana-keygen new` command. The
|
|
50
|
+
command will generate a random seed phrase, ask you to enter an optional
|
|
51
|
+
passphrase, and then will display the derived public key and the generated seed
|
|
52
|
+
phrase for your paper wallet.
|
|
53
|
+
|
|
54
|
+
After copying down your seed phrase, you can use the
|
|
55
|
+
[public key derivation](#public-key-derivation) instructions to verify that you
|
|
56
|
+
have not made any errors.
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
solana-keygen new --no-outfile
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
> If the `--no-outfile` flag is **omitted**, the default behavior is to write the keypair to `~/.config/solana/id.json`, resulting in a [file system wallet](file-system-wallet.md).
|
|
63
|
+
|
|
64
|
+
The output of this command will display a line like this:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
pubkey: 9ZNTfG4NyQgxy2SWjSiQoUyBPEvXT2xo7fKc5hPYYJ7b
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
The value shown after `pubkey:` is your _wallet address_.
|
|
71
|
+
|
|
72
|
+
**Note:** In working with paper wallets and file system wallets, the terms "pubkey"
|
|
73
|
+
and "wallet address" are sometimes used interchangably.
|
|
74
|
+
|
|
75
|
+
> For added security, increase the seed phrase word count using the `--word-count` argument
|
|
76
|
+
|
|
77
|
+
For full usage details, run:
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
solana-keygen new --help
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
### Public Key Derivation
|
|
85
|
+
|
|
86
|
+
Public keys can be derived from a seed phrase and a passphrase if you choose to
|
|
87
|
+
use one. This is useful for using an offline-generated seed phrase to derive a
|
|
88
|
+
valid public key. The `solana-keygen pubkey` command will walk you through how
|
|
89
|
+
to use your seed phrase (and a passphrase if you chose to use one) as a signer
|
|
90
|
+
with the solana command-line tools using the `prompt` URI scheme.
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
solana-keygen pubkey prompt://
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
> Note that you could potentially use different passphrases for the same seed phrase. Each unique passphrase will yield a different keypair.
|
|
97
|
+
|
|
98
|
+
The `solana-keygen` tool uses the same BIP39 standard English word list as it
|
|
99
|
+
does to generate seed phrases. If your seed phrase was generated with another
|
|
100
|
+
tool that uses a different word list, you can still use `solana-keygen`, but
|
|
101
|
+
will need to pass the `--skip-seed-phrase-validation` argument and forego this
|
|
102
|
+
validation.
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
solana-keygen pubkey prompt:// --skip-seed-phrase-validation
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
After entering your seed phrase with `solana-keygen pubkey prompt://` the console
|
|
109
|
+
will display a string of base-58 characters. This is the [derived](#hierarchical-derivation) solana BIP44 _wallet address_
|
|
110
|
+
associated with your seed phrase.
|
|
111
|
+
|
|
112
|
+
> Copy the derived address to a USB stick for easy usage on networked computers
|
|
113
|
+
|
|
114
|
+
If needed, you can access the legacy, raw keypair's pubkey by instead passing the `ASK` keyword:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
solana-keygen pubkey ASK
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
> A common next step is to [check the balance](#checking-account-balance) of the account associated with a public key
|
|
121
|
+
|
|
122
|
+
For full usage details, run:
|
|
123
|
+
|
|
124
|
+
```bash
|
|
125
|
+
solana-keygen pubkey --help
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
### Hierarchical Derivation
|
|
129
|
+
|
|
130
|
+
The solana-cli supports
|
|
131
|
+
[BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) and
|
|
132
|
+
[BIP44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki)
|
|
133
|
+
hierarchical derivation of private keys from your seed phrase and passphrase by
|
|
134
|
+
adding either the `?key=` query string or the `?full-path=` query string.
|
|
135
|
+
|
|
136
|
+
By default, `prompt:` will derive solana's base derivation path `m/44'/501'`. To
|
|
137
|
+
derive a child key, supply the `?key=<ACCOUNT>/<CHANGE>` query string.
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
solana-keygen pubkey prompt://?key=0/1
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
To use a derivation path other than solana's standard BIP44, you can supply `?full-path=m/<PURPOSE>/<COIN_TYPE>/<ACCOUNT>/<CHANGE>`.
|
|
144
|
+
|
|
145
|
+
```bash
|
|
146
|
+
solana-keygen pubkey prompt://?full-path=m/44/2017/0/1
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
Because Solana uses Ed25519 keypairs, as per
|
|
150
|
+
[SLIP-0010](https://github.com/satoshilabs/slips/blob/master/slip-0010.md) all
|
|
151
|
+
derivation-path indexes will be promoted to hardened indexes -- eg.
|
|
152
|
+
`?key=0'/0'`, `?full-path=m/44'/2017'/0'/1'` -- regardless of whether ticks are
|
|
153
|
+
included in the query-string input.
|
|
154
|
+
|
|
155
|
+
## Verifying the Keypair
|
|
156
|
+
|
|
157
|
+
To verify you control the private key of a paper wallet address, use
|
|
158
|
+
`solana-keygen verify`:
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
solana-keygen verify <PUBKEY> prompt://
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
where `<PUBKEY>` is replaced with the wallet address and the keyword `prompt://`
|
|
165
|
+
tells the command to prompt you for the keypair's seed phrase; `key` and
|
|
166
|
+
`full-path` query-strings accepted. Note that for security reasons, your seed
|
|
167
|
+
phrase will not be displayed as you type. After entering your seed phrase, the
|
|
168
|
+
command will output "Success" if the given public key matches the keypair
|
|
169
|
+
generated from your seed phrase, and "Failed" otherwise.
|
|
170
|
+
|
|
171
|
+
## Checking Account Balance
|
|
172
|
+
|
|
173
|
+
All that is needed to check an account balance is the public key of an account.
|
|
174
|
+
To retrieve public keys securely from a paper wallet, follow the
|
|
175
|
+
[Public Key Derivation](#public-key-derivation) instructions on an
|
|
176
|
+
[air gapped computer](<https://en.wikipedia.org/wiki/Air_gap_(networking)>).
|
|
177
|
+
Public keys can then be typed manually or transferred via a USB stick to a
|
|
178
|
+
networked machine.
|
|
179
|
+
|
|
180
|
+
Next, configure the `solana` CLI tool to
|
|
181
|
+
[connect to a particular cluster](../cli/choose-a-cluster.md):
|
|
182
|
+
|
|
183
|
+
```bash
|
|
184
|
+
solana config set --url <CLUSTER URL> # (i.e. https://api.mainnet-beta.solana.com)
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
Finally, to check the balance, run the following command:
|
|
188
|
+
|
|
189
|
+
```bash
|
|
190
|
+
solana balance <PUBKEY>
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
## Creating Multiple Paper Wallet Addresses
|
|
194
|
+
|
|
195
|
+
You can create as many wallet addresses as you like. Simply re-run the
|
|
196
|
+
steps in [Seed Phrase Generation](#seed-phrase-generation) or
|
|
197
|
+
[Public Key Derivation](#public-key-derivation) to create a new address.
|
|
198
|
+
Multiple wallet addresses can be useful if you want to transfer tokens between
|
|
199
|
+
your own accounts for different purposes.
|
|
200
|
+
|
|
201
|
+
## Support
|
|
202
|
+
|
|
203
|
+
Check out our [Wallet Support Page](support.md) for ways to get help.
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: SolFlare Web Wallet
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
## Introduction
|
|
6
|
+
|
|
7
|
+
[SolFlare.com](https://solflare.com/) is a community-created web wallet built
|
|
8
|
+
specifically for Solana.
|
|
9
|
+
SolFlare supports sending and receiving native SOL tokens as well as sending and
|
|
10
|
+
receiving SPL Tokens (Solana's ERC-20 equivalent).
|
|
11
|
+
SolFlare also supports staking of SOL tokens.
|
|
12
|
+
|
|
13
|
+
As a _non-custodial_ wallet, your private keys are not stored by the SolFlare
|
|
14
|
+
site itself, but rather they are stored in an encrypted
|
|
15
|
+
[Keystore File](#using-a-keystore-file) or on a
|
|
16
|
+
[Ledger Nano S or X hardware wallet](#using-a-ledger-nano-hardware-wallet).
|
|
17
|
+
|
|
18
|
+
This guide describes how to set up a wallet using SolFlare, how to send and
|
|
19
|
+
receive SOL tokens, and how to create and manage a stake account.
|
|
20
|
+
|
|
21
|
+
## Getting Started
|
|
22
|
+
|
|
23
|
+
Go to https://www.solflare.com in a supported browser. Most popular web browsers
|
|
24
|
+
should work when interacting with a Keystore File, but currently only
|
|
25
|
+
Chrome and Brave are supported when interacting with a Ledger Nano.
|
|
26
|
+
|
|
27
|
+
### Using a Keystore File
|
|
28
|
+
|
|
29
|
+
#### Create a new Keystore File
|
|
30
|
+
|
|
31
|
+
To create a wallet with a Keystore file, click on "Create a Wallet" and select
|
|
32
|
+
"Using Keystore File". Follow the prompts to create a password which will be
|
|
33
|
+
used to encrypt your Keystore file, and then to download the new file to your
|
|
34
|
+
computer. You will be prompted to then upload the Keystore file back to the site
|
|
35
|
+
to verify that the download was saved correctly.
|
|
36
|
+
|
|
37
|
+
**NOTE: If you lose your Keystore file or the password used to encrypt it, any
|
|
38
|
+
funds in that wallet will be lost permanently. Neither the Solana team nor the
|
|
39
|
+
SolFlare developers can help you recover lost keys.**
|
|
40
|
+
|
|
41
|
+
You may want to consider saving a backup copy of your Keystore file on an
|
|
42
|
+
external drive separate from your main computer, and storing your password in a
|
|
43
|
+
separate location.
|
|
44
|
+
|
|
45
|
+
#### Access your wallet with a Keystore File
|
|
46
|
+
|
|
47
|
+
To use SolFlare with a previously created Keystore file, click on
|
|
48
|
+
"Access a Wallet" and select "Using Keystore File". If you just created a new
|
|
49
|
+
Keystore file, you will be taken to the Access page directly.
|
|
50
|
+
You will be prompted to enter the password and upload your Keystore file,
|
|
51
|
+
then you will be taken to the wallet interface main page.
|
|
52
|
+
|
|
53
|
+
### Using a Ledger Nano hardware wallet
|
|
54
|
+
|
|
55
|
+
_NOTE: Please see [known issues](ledger-live.md#known-issues) for any current
|
|
56
|
+
limitations in using the Nano._
|
|
57
|
+
|
|
58
|
+
#### Initial Device Setup
|
|
59
|
+
|
|
60
|
+
To use a Ledger Nano with SolFlare, first ensure you have
|
|
61
|
+
[set up your Nano](ledger-live.md) and have [installed the latest version of
|
|
62
|
+
the Solana app](ledger-live.md#upgrade-to-the-latest-version-of-the-solana-app)
|
|
63
|
+
on your device.
|
|
64
|
+
|
|
65
|
+
#### Select a Ledger address to access
|
|
66
|
+
|
|
67
|
+
Plug in your Nano and open the Solana app so the device screen displays
|
|
68
|
+
"Application is Ready".
|
|
69
|
+
|
|
70
|
+
From the SolFlare home page, click "Access a Wallet" then select "Using Ledger
|
|
71
|
+
Nano S | Ledger Nano X". Under "Select derivation path", select the only option:
|
|
72
|
+
|
|
73
|
+
`` Solana - 44`/501`/ ``
|
|
74
|
+
|
|
75
|
+
Note: Your browser may prompt you to ask if SolFlare may communicate with your
|
|
76
|
+
Ledger device. Click to allow this.
|
|
77
|
+
|
|
78
|
+
Select an address to interact with from the lower drop down box then click "Access".
|
|
79
|
+
|
|
80
|
+
The Ledger device can derive a large number of private keys and associated
|
|
81
|
+
public addresses. This allows you to manage and interact with an arbitrary
|
|
82
|
+
number of different accounts from the same device.
|
|
83
|
+
|
|
84
|
+
If you deposit funds to an address derived from your Ledger device,
|
|
85
|
+
make sure to access the same address when using SolFlare to be able to access
|
|
86
|
+
those funds. If you connect to the incorrect address,
|
|
87
|
+
simply click Logout and re-connect with the correct address.
|
|
88
|
+
|
|
89
|
+
## Select a Network
|
|
90
|
+
|
|
91
|
+
Solana maintains [three distinct networks](../clusters), each of which has
|
|
92
|
+
its own purpose in supporting the Solana ecosystem. Mainnet Beta is selected by
|
|
93
|
+
default on SolFlare, as this is the permanent network where exchanges and other
|
|
94
|
+
production apps are deployed. To select a different network, click on the name
|
|
95
|
+
of the currently selected network at the top of the wallet dashboard, either
|
|
96
|
+
Mainnet, Testnet or Devnet, then click on the name of the network you wish to be
|
|
97
|
+
using.
|
|
98
|
+
|
|
99
|
+
## Sending and Receiving SOL Tokens
|
|
100
|
+
|
|
101
|
+
### Receiving
|
|
102
|
+
|
|
103
|
+
To receive tokens into your wallet, someone must transfer some to your wallet's
|
|
104
|
+
address. The address is displayed at the top-left on the screen, and you can
|
|
105
|
+
click the Copy icon to copy the address and provide it to whoever is sending you
|
|
106
|
+
tokens. If you hold tokens in a different wallet or on an exchange, you can
|
|
107
|
+
withdraw to this address as well. Once the transfer is made, the balance shown
|
|
108
|
+
on SolFlare should update within a few seconds.
|
|
109
|
+
|
|
110
|
+
### Sending
|
|
111
|
+
|
|
112
|
+
Once you have some tokens at your wallet address, you can send them to any other
|
|
113
|
+
wallet address or an exchange deposit address by clicking "Transfer SOL" in the
|
|
114
|
+
upper-right corner. Enter the recipient address and the amount of SOL to
|
|
115
|
+
transfer and click "Submit". You will be prompted to confirm the details of the
|
|
116
|
+
transaction before you [use your key to sign the transaction](#signing-a-transaction)
|
|
117
|
+
and then it will be submitted to the network.
|
|
118
|
+
|
|
119
|
+
## Staking SOL Tokens
|
|
120
|
+
|
|
121
|
+
SolFlare supports creating and managing stake accounts and delegations. To learn
|
|
122
|
+
about how staking on Solana works in general, check out our
|
|
123
|
+
[Staking Guide](../staking).
|
|
124
|
+
|
|
125
|
+
### Create a Stake Account
|
|
126
|
+
|
|
127
|
+
You can use some of the SOL tokens in your wallet to create a new stake account.
|
|
128
|
+
From the wallet main page click "Staking" at the top of the page. In the upper-
|
|
129
|
+
right, click "Create Account". Enter the amount of SOL you want to use to
|
|
130
|
+
fund your new stake account. This amount will be withdrawn from your wallet
|
|
131
|
+
and transfered to the stake account. Do not transfer your entire wallet balance
|
|
132
|
+
to a stake account, as the wallet is still used to pay any transaction fees
|
|
133
|
+
associated with your stake account. Consider leaving at least 1 SOL in your
|
|
134
|
+
wallet account.
|
|
135
|
+
|
|
136
|
+
After you submit and [sign the transaction](#signing-a-transaction) you will see
|
|
137
|
+
your new stake account appear in the box labeled "Your Staking Accounts".
|
|
138
|
+
|
|
139
|
+
Stake accounts created on SolFlare set your wallet address as the
|
|
140
|
+
[staking and withdrawing authority](../staking/stake-accounts#understanding-account-authorities)
|
|
141
|
+
for your new account, which gives your wallet's key the authority to sign
|
|
142
|
+
for any transactions related to the new stake account.
|
|
143
|
+
|
|
144
|
+
### View your Stake Accounts
|
|
145
|
+
|
|
146
|
+
On the main Wallet dashboard page or on the Staking dashboard page, your stake
|
|
147
|
+
accounts will be visible in the "Your Staking Accounts" box. Stake accounts
|
|
148
|
+
exist at a different address from your wallet.
|
|
149
|
+
|
|
150
|
+
SolFlare will locate any display all stake accounts on the
|
|
151
|
+
[selected network](#select-a-network)
|
|
152
|
+
for which your wallet address is assigned as the
|
|
153
|
+
[stake authority](../staking/stake-accounts#understanding-account-authorities).
|
|
154
|
+
Stake accounts that were created outside of SolFlare will also be displayed and
|
|
155
|
+
can be managed as long as the wallet you logged in with is assigned as the stake
|
|
156
|
+
authority.
|
|
157
|
+
|
|
158
|
+
### Delegate tokens in a Stake Account
|
|
159
|
+
|
|
160
|
+
Once you have [selected a validator](../staking#select-a-validator), you may
|
|
161
|
+
delegate the tokens in one of your stake accounts to them. From the Staking
|
|
162
|
+
dashboard, click "Delegate" at the right side of a displayed stake account.
|
|
163
|
+
Select the validator you wish to delegate to from the drop down list and click
|
|
164
|
+
Delegate.
|
|
165
|
+
|
|
166
|
+
To un-delegate your staked tokens (also called deactivating your stake), the
|
|
167
|
+
process is similar. On the Staking page, at the right side of a delegated stake
|
|
168
|
+
account, click the "Undelegate" button and follow the prompts.
|
|
169
|
+
|
|
170
|
+
### Split a Stake Account
|
|
171
|
+
|
|
172
|
+
You may split an existing stake account into two stake accounts. Click on the
|
|
173
|
+
address of a stake account controlled by your wallet, and under the Actions bar,
|
|
174
|
+
click "Split". Specify the amount of SOL tokens you want to split. This will be
|
|
175
|
+
the amount of tokens in your new stake account and your existing stake account
|
|
176
|
+
balance will be reduced by the same amount. Splitting your stake account
|
|
177
|
+
allows you to delegate to multiple different validators with different amounts
|
|
178
|
+
of tokens. You may split a stake account as many times as you want, to create
|
|
179
|
+
as many stake accounts as you want.
|
|
180
|
+
|
|
181
|
+
## Signing a Transaction
|
|
182
|
+
|
|
183
|
+
Any time you submit a transaction such as sending tokens to another wallet or
|
|
184
|
+
delegating stake, you need to use your private key to sign the transaction so
|
|
185
|
+
it will be accepted by the network.
|
|
186
|
+
|
|
187
|
+
### Using a Keystore File
|
|
188
|
+
|
|
189
|
+
If you accessed your wallet using a Keystore file, you will be prompted to enter
|
|
190
|
+
your password any time the key is needed to sign a transaction.
|
|
191
|
+
|
|
192
|
+
### Using a Ledger Nano
|
|
193
|
+
|
|
194
|
+
If you accessed your wallet with a Ledger Nano, you will be prompted to
|
|
195
|
+
confirm the pending transaction details on your device whenever the key is needed
|
|
196
|
+
to sign. On the Nano, use the left and right buttons to view and confirm all of the
|
|
197
|
+
transaction details. If everything looks correct, keep clicking the right button
|
|
198
|
+
until the screen shows "Approve". Click both buttons to approve the transaction.
|
|
199
|
+
If something looks incorrect, press the right button once more so the screen shows
|
|
200
|
+
"Reject" and press both buttons to reject the transaction. After you approve
|
|
201
|
+
or reject a transaction, you will see this reflected on the SolFlare page.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Support / Troubleshooting
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
If you have questions or are having trouble setting up or using your wallet
|
|
6
|
+
of choice, please make sure you've read through all the relevant pages in our
|
|
7
|
+
[Wallet Guide](paper-wallet.md). The Solana team is working hard to support new
|
|
8
|
+
features on popular wallets, and we do our best to keep our documents up to date
|
|
9
|
+
with the latest available features.
|
|
10
|
+
|
|
11
|
+
If you have questions after reading the docs, feel free to reach out to us on
|
|
12
|
+
our [Telegram](https://t.me/solana).
|
|
13
|
+
|
|
14
|
+
For **technical support**, reach out to us on
|
|
15
|
+
[Discord](https://discordapp.com/invite/pquxPsq), using the #wallet-support
|
|
16
|
+
channel in our Community section.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Web Wallets
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
## BitKeep
|
|
6
|
+
|
|
7
|
+
[BitKeep](https://bitkeep.com) is an digital currency wallet and can send and receive SOL/SPL tokens.
|
|
8
|
+
BitKeep also support Solana DApps with BitKeep Browser and BitKeep Chrome.
|
|
9
|
+
|
|
10
|
+
## MathWallet
|
|
11
|
+
|
|
12
|
+
[MathWallet](https://mathwallet.org/) supports wallet
|
|
13
|
+
addresses for sending and receiving SOL and SPL Tokens through its
|
|
14
|
+
browser extension and web wallet interface.
|
|
15
|
+
|
|
16
|
+
Note: The MathWallet iOS and Android app do not yet support SOL and SPL Tokens_
|
|
17
|
+
|
|
18
|
+
## Phantom
|
|
19
|
+
|
|
20
|
+
[Phantom](https://phantom.app/) is a friendly non-custodial, browser
|
|
21
|
+
extension, Solana wallet that makes it safe & easy for you to store, send,
|
|
22
|
+
receive, collect, and swap tokens.
|
|
23
|
+
|
|
24
|
+
- Use Solana dapps
|
|
25
|
+
- Beautiful NFT support
|
|
26
|
+
- Ledger hardware wallet support
|
|
27
|
+
|
|
28
|
+
Available for Chrome, Brave, Firefox, Vivaldi, and Edge
|
|
29
|
+
|
|
30
|
+
## Solflare
|
|
31
|
+
|
|
32
|
+
[Solflare](https://solflare.com/) is a non-custodial web wallet created by the
|
|
33
|
+
[Solrise Finance](https://solrise.finance) team that was built specifically for Solana.
|
|
34
|
+
Solflare is accessible and easy to use but also has a very comprehensive set of features, including:
|
|
35
|
+
|
|
36
|
+
- The ability to connect your wallet to almost any Solana Dapp
|
|
37
|
+
- Transaction simulations, which show the balance changes expected from a transaction and protect against malicious dapps
|
|
38
|
+
- Deep staking support with the ability to create and manage all your staking accounts
|
|
39
|
+
- Comprehensive NFT functionality, including the ability to send, receive and preview NFTs from a Metaplex-compatible NFT gallery. Support is provided for image, video, audio, and 3d/VR NFTs.
|
|
40
|
+
- An in wallet swap for SPL tokens
|
|
41
|
+
- Compatibility with the Ledger hardware wallet
|
|
42
|
+
|
|
43
|
+
Solflare is available on web, as a browser extension, and as a mobile app for both Android and iOS.
|
|
44
|
+
The extension is available on Chrome, Brave, Firefox, Opera, and Edge.
|
|
45
|
+
|
|
46
|
+
Check out our [guide for using SolFlare](solflare.md).
|
|
47
|
+
|
|
48
|
+
## Sollet
|
|
49
|
+
|
|
50
|
+
[sollet.io](https://www.sollet.io/) is a non-custodial web wallet created by the
|
|
51
|
+
[Project Serum](https://projectserum.com/) team. sollet.io can be used to send
|
|
52
|
+
and receive SOL and any SPL Token.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Solana Wallet Guide
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
This document describes the different wallet options that are available to users
|
|
6
|
+
of Solana who want to be able to send, receive and interact with
|
|
7
|
+
SOL tokens on the Solana blockchain.
|
|
8
|
+
|
|
9
|
+
## What is a Wallet?
|
|
10
|
+
|
|
11
|
+
A crypto wallet is a device or application that stores a collection of keys and
|
|
12
|
+
can be used to send, receive,
|
|
13
|
+
and track ownership of cryptocurrencies. Wallets can take many forms.
|
|
14
|
+
A wallet might be a directory or file in your computer's file system,
|
|
15
|
+
a piece of paper, or a specialized device called a _hardware wallet_.
|
|
16
|
+
There are also various smartphone apps and computer programs
|
|
17
|
+
that provide a user-friendly way to create and manage wallets.
|
|
18
|
+
|
|
19
|
+
A _keypair_ is a securely generated _private key_ and its
|
|
20
|
+
cryptographically-derived _public key_. A private key and its corresponding
|
|
21
|
+
public key are together known as a _keypair_.
|
|
22
|
+
A wallet contains a collection of one or more keypairs and provides some means
|
|
23
|
+
to interact with them.
|
|
24
|
+
|
|
25
|
+
The _public key_ (commonly shortened to _pubkey_) is known as the wallet's
|
|
26
|
+
_receiving address_ or simply its _address_. The wallet address **may be shared
|
|
27
|
+
and displayed freely**. When another party is going to send some amount of
|
|
28
|
+
cryptocurrency to a wallet, they need to know the wallet's receiving address.
|
|
29
|
+
Depending on a blockchain's implementation, the address can also be used to view
|
|
30
|
+
certain information about a wallet, such as viewing the balance,
|
|
31
|
+
but has no ability to change anything about the wallet or withdraw any tokens.
|
|
32
|
+
|
|
33
|
+
The _private key_ is required to digitally sign any transactions to send
|
|
34
|
+
cryptocurrencies to another address or to make any changes to the wallet.
|
|
35
|
+
The private key **must never be shared**. If someone gains access to the
|
|
36
|
+
private key to a wallet, they can withdraw all the tokens it contains.
|
|
37
|
+
If the private key for a wallet is lost, any tokens that have been sent
|
|
38
|
+
to that wallet's address are **permanently lost**.
|
|
39
|
+
|
|
40
|
+
Different wallet solutions offer different approaches to keypair security,
|
|
41
|
+
interacting with the keypair, and signing transactions to use/spend the tokens.
|
|
42
|
+
Some are easier to use than others.
|
|
43
|
+
Some store and back up private keys more securely.
|
|
44
|
+
Solana supports multiple types of wallets so you can choose the right balance
|
|
45
|
+
of security and convenience.
|
|
46
|
+
|
|
47
|
+
**If you want to be able to receive SOL tokens on the Solana blockchain,
|
|
48
|
+
you first will need to create a wallet.**
|
|
49
|
+
|
|
50
|
+
## Supported Wallets
|
|
51
|
+
|
|
52
|
+
Solana supports several types of wallets in the Solana native
|
|
53
|
+
command-line app as well as wallets from third-parties.
|
|
54
|
+
|
|
55
|
+
For the majority of users, we recommend using one of the
|
|
56
|
+
[app wallets](wallet-guide/apps.md) or a browser-based
|
|
57
|
+
[web wallet](wallet-guide/web-wallets.md), which will provide a more familiar
|
|
58
|
+
user experience rather than needing to learn command line tools.
|
|
59
|
+
|
|
60
|
+
For advanced users or developers, the [command-line wallets](wallet-guide/cli.md)
|
|
61
|
+
may be more appropriate, as new features on the Solana blockchain will always be
|
|
62
|
+
supported on the command line first before being integrated into third-party
|
|
63
|
+
solutions.
|
package/static/.nojekyll
ADDED
|
File without changes
|
|
Binary file
|