This is an example of running a transfer
transaction via Transit wallet providers (currently works via Scatter Desktop
only).
http://demo.eostransit.io (Make sure you have scatter configured as per below)
The demo is configured to connect to one of the the EOS New York test networks (PennStation).
In order to interact with the demo, you'll need to:
A. Have Scatter Desktop installed
B. Add the PennStation network to Scatter desktop
C. Add the "eostransitio" to scatter.
Can be downloaded here: https://github.com/GetScatter/ScatterDesktop/releases/
Go into the Scatter settings, then:
- Click Networks.
- Add a new network
- Use the following details as shown in the picture below:
- Name: EOSIO
- Name: Penn
- Host: api.pennstation.eosnewyork.io
- Protocol: https
- Port: 7101
- ChainID: cf057bbfb72640471fd910bcb67639c22df9f92470936cddc1ade0e2f2e7dc4f
- Click "Add Keys"
- Click "Import Key"
- Click "Text"
- Paste the following private key "5HsFbNxsRAxPimCakneKtnDnidoj6fQf9uSEMuUiJw2VqkB2i4W"
- Name the account "EOSTransit demo account"
That it you should be ready to test http://demo.eostransit.io
Make sure you have yarn
installed.
-
Install the dependencies.
Note that before
eos-transit
,eos-transit-scatter-provider
andeos-transit-stub-provider
are published, they are managed bylerna
along with packages themselves. That means, before running the examples,lerna
should wire up all the dependencies and instead of runningyarn install
manually from this folder, the following commands should be run from the project root:$ yarn bootstrap $ yarn build-packages
This will make
lerna
install all the necessary dependencies. -
Start the development server with (from this example folder root this time):
$ yarn start
-
Access the server at
localhost:3300
(or whateverPORT
you configured to run the development server forcreate-react-app
).