inspired by this example, courtesy of
quickjs-rust-near
First, download and unzip example_contracts from here:
https://github.com/petersalomonsen/quickjs-rust-near/releases/tag/v0.0.4
Then, via CLI, navigate to the unzipped folder and run these commands:
near loginBEWARE - This costs 9 NEAR!
near deploy <account_id> minimum_web4.wasmClone this repository:
git clone https://github.com/jlwaugh/multivac.git && cd multivacInstall dependencies:
npm installPrepare arguments:
export JSON_ARGS=$(cat ./main.js | jq -Rs '{javascript: .}')Call post_javascript first:
near contract call-function as-transaction <account_id> post_javascript json-args $JSON_ARGS prepaid-gas '100.0 Tgas' attached-deposit '0 NEAR' sign-as <account_id> network-config testnet sign-with-keychain sendCall post_content to publish HTML:
near call <account_id> post_content '{
"key": "/index.html",
"valuebase64": "'"$(base64 < index.html | tr -d '\n')"'"
}' --accountId <account_id> --gas 30000000000000 --deposit 0Navigate to your site: https://<account_id>.page