Cableguard DEV API forge creates sets of RODIT in testnet with all the configuration and subscription information necessary to set up Cableguard TUN API calls.
Authentication between API clients and server uses PKC with a twist. Ownership of the RODITs doubled-checked with the NEAR Protocol in real time, and the PKC pair used is the pair of the RODIT themselves. Read more here https://vaceituno.medium.com/unleashing-the-power-of-public-key-cryptography-with-non-fungible-tokens-513286d47524
- near cli installed
- Download the code from the repository
- When downloading from VS Code it is possible that the shell script files have the wrong permissions and need to be set x so they can run
- Installing npm
- node -v
- sudo npm cache clean -f
- sudo npm install -g n
- sudo n stable
- node -v
- npm install (in each directory)
- npm run build
- Delete the neardev directory where the contract is,
- npm run deploy
- npm run init
- npm run start
- open the Front End from a browser
- log in with your NEAR Wallet
4b Start the Front End as a background process setsid npm run start >/dev/null 2>&1 < /dev/null &
In your API Endpoints and API Clients, install near and create an implicit account ID and a key pair with the command: near generate-key
Output example:
- Key pair with ed25519:BNcExLS7k84HswwFHpB49jZnh1y6bsRS7P51FVmeBBxs public key for an ACCOUNT "9a1de9b4aa4ddd4a3091f43f1de680a9f5405d70e8ca69c3fb5daa96b5cd1270"
- Resulting in the key pair stored in: ~/.near-credentials/testnet/9a1de9b4aa4ddd4a3091f43f1de680a9f5405d70e8ca69c3fb5daa96b5cd1270.json
- From your NEAR wallet send some 0.01 Near to the newly generated implicit account ID to activate it
Input values for:
- Number of clients: No default value
- API Provider: No default value / IT CAN BE EMPTY
- API Service Description: No default value / IT CAN BE EMPTY
- Date of Expiration of API Service: 1 year in the future from today / IT CAN BE EMPTY
- Date of Start of API Service: today
- IPv4 addresses range of the API clients: 10.0.0.1/24
- Port where the API server listens: A random number between 49152 and 65535
- DNS server IPv4 address: : No default value / IT CAN BE EMPTY
- Initial IPv4 address for API clients: 0.0.0.0/0, ::/0
- IPv4 address of the API server where the clients connect: No default value
- Maximum KB per second of each API connection: 100000
- Private key in Base58 of the server for signatures: No default value
- Implicit account of the service provider in HEX: No default value
Cableguard RODITAPI: RODIT and API manager
Cableguard TOOLS: local API tunnel configuration
Cableguard TUN: API tunnels
Cableguard DEV API forge: RODIT minter
