Public
Edited
Oct 26, 2022
1 star
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
drainRaceStatus = {
const faucetAddress = createActorStatus.waitResponse.ReturnDec.IDAddress
if (drainRaceButton) {
const start = Date.now()
console.log('Drain race started')
yield {
invoking: true,
start
}
const balances = await getBalances([faucetAddress])
const faucetBalance = new FilecoinNumber(balances[0].balance, 'attofil')
console.log('Faucet balance:', faucetBalance.toFil())
yield {
invoking: true,
initialFaucetBalance: faucetBalance.toFil(),
start
}
const responsePromises = []
for (const key of keys) {
const message = {
To: faucetAddress,
From: key.address,
Nonce: 0,
Value: new FilecoinNumber(0, 'attofil'),
GasLimit: 1000000000,
GasFeeCap: new FilecoinNumber(0, 'attofil'),
GasPremium: new FilecoinNumber(0, 'attofil'),
Method: 2,
Params: cbor.encode([bigToBytes(faucetBalance)]).toString('base64')
}
const privateKey = key.privateKey
console.log('message', message)
responsePromises.push(filecoin_client.tx.sendMessage(
message,
privateKey,
true, // updateMsgNonce
false // waitMsg
))
}
const responses = await Promise.all(responsePromises)
const waitStart = Date.now()
yield {
waiting: true,
start,
waitStart,
initialFaucetBalance: faucetBalance.toFil(),
responses
}
const promises = []
for (const response of responses) {
promises.push(client.stateWaitMsg(response, 0))
}
const waitResponses = await Promise.all(promises)
const decodedResults = []
for (const waitResponse of waitResponses) {
let decodedResult = null
if (waitResponse.Receipt && waitResponse.Receipt.Return) {
decodedResult = cbor.decodeAll(waitResponse.Receipt.Return, 'base64')
}
decodedResults.push(decodedResult)
}
yield { invoked: true, responses, waitResponses, decodedResults }
}
}
Insert cell
Insert cell
new FilecoinNumber('5', 'attofil')
Insert cell
cbor.encode([new FilecoinNumber('5', 'attofil')]).toString('base64')
Insert cell
function bigToBytes(num) {
// https://github.com/Zondax/filecoin-signing-tools/blob/5a126fa599695dac720c692cb286a8c572187f88/signer-npm/js/src/index.js#L54
// https://github.com/spacegap/spacegap.github.io/blob/ccfa30a3e5303c4538c59f3a23186882eddf810e/src/services/filecoin/index.js#L145

if (num === '0' || num === 0) {
return new Uint8Array(0)
}
const numBigInt = (typeof num === 'object') ? (new BN(num.toAttoFil(), 10)) : (new BN(num, 10))
const numArray = numBigInt.toArrayLike(Array, 'be', numBigInt.byteLength())
if (numBigInt.isNeg()) {
numArray.unshift(1)
} else {
numArray.unshift(0)
}
return new Uint8Array(numArray)
}
Insert cell
bigToBytes(-1234)
Insert cell
bigToBytes(1234)
Insert cell
bigToBytes(new FilecoinNumber(1234, 'attofil'))
Insert cell
({ x: 1 }).toString()
Insert cell
bigToBytes("1234")
Insert cell
bigToBytes("12345678901234567890")
Insert cell
bigToBytes(12345678901234567890n)
Insert cell
function bytesToBig (p) { // https://github.com/spacegap/spacegap.github.io/blob/ccfa30a3e5303c4538c59f3a23186882eddf810e/src/services/filecoin/index.js#L145
let sign = p[0]
let acc = new BN(0)
for (let i = 1; i < p.length; i++) {
acc = acc.mul(new BN(256))
acc = acc.add(new BN(p[i]))
}
if (sign === 1) {
return -acc
} else if (sign === 0) {
return acc
} else {
throw new Error('Unexpected value for first byte, expected 0 or 1 for sign')
}
}
Insert cell
bytesToBig(bigToBytes(12345678901234567890n)).toString()
Insert cell
bytesToBig(bigToBytes(-1234)).toString()
Insert cell
Insert cell
Insert cell
Insert cell
skypack = (library) => import(`https://cdn.skypack.dev/${library}?min`)
Insert cell
LotusRPC = (await import('@filecoin-shipyard/lotus-client-rpc')).LotusRPC
Insert cell
BrowserProvider = (await import('@filecoin-shipyard/lotus-client-provider-browser')).BrowserProvider
Insert cell
schema = (await import('@filecoin-shipyard/lotus-client-schema')).mainnet.fullNode
Insert cell
stripAnsi = (await import('https://unpkg.com/strip-ansi@7.0.1/index.js?module')).default
Insert cell
cbor = import('https://cdn.skypack.dev/borc')
Insert cell
CID = (await import('https://jspm.dev/cids')).default
Insert cell
import {button} from '@jimpick/download-data-button-with-wasm-support'
Insert cell
filecoinJsSigner = import('https://jspm.dev/@blitslabs/filecoin-js-signer')
Insert cell
FilecoinClient = filecoinJsSigner.FilecoinClient
Insert cell
FilecoinSigner = filecoinJsSigner.FilecoinSigner
Insert cell
Insert cell
filecoinNumber = import('https://cdn.skypack.dev/@glif/filecoin-number')
Insert cell
FilecoinNumber = filecoinNumber.FilecoinNumber
Insert cell
BN = require('https://bundle.run/bn.js@5.2.0')
Insert cell
Insert cell
Insert cell
initialCode = (await fetch(initialCodeUrl)).text()
Insert cell
method2Code = `
#[derive(Debug, Deserialize_tuple)]
pub struct WithdrawalParams {
#[serde(with = "bigint_ser")]
pub amount: TokenAmount,
}

/// Method num 2.
pub fn withdraw(params: u32) -> Option<RawBytes> {
let params = sdk::message::params_raw(params).unwrap().1;
let params = RawBytes::new(params);
let params: WithdrawalParams = params.deserialize().unwrap();
let caller = sdk::message::caller();
let address = Address::new_id(caller);
let send_params = RawBytes::default();

let _receipt = fvm_sdk::send::send(
&address,
METHOD_SEND,
send_params,
params.amount.clone()
).unwrap();
let ret = to_vec(format!("Withdraw {:?} => t0{}",
params, caller).as_str());

match ret {
Ok(ret) => Some(RawBytes::new(ret)),
Err(err) => {
abort!(
USR_ILLEGAL_STATE,
"failed to serialize return value: {:?}",
err
);
}
}
}
`.trim()
Insert cell
templateStart = {
const code = initialCode
.replace('pub fn invoke(_: u32)', 'pub fn invoke(params: u32)')
.replace('say_hello()', 'withdraw(params)')
.replace(/\/\/\/ Method num 2.*/s, '')
.split('\n')

code.splice(
10, 0,
'use fvm_shared::bigint::bigint_ser;',
'use fvm_shared::econ::TokenAmount;',
'use fvm_shared::METHOD_SEND;',
'use fvm_shared::address::Address;',
)
return code.join('\n')
}
Insert cell
Insert cell
initialCargoToml = (await fetch(initialCargoTomlUrl)).text()
Insert cell
patchedCargoToml = {
function gitVersion (version) {
const rev = '297a7694'
return `{ version = "${version}", git = "https://github.com/filecoin-project/ref-fvm", rev = "${rev}" }`
}
return (
initialCargoToml
.replace(/fvm_sdk = .*/, `fvm_sdk = ${gitVersion('0.6.1')}`)
.replace(/fvm_shared = .*/, `fvm_shared = ${gitVersion('0.6.1')}`)
.replace(/fvm_ipld_blockstore = .*/, `fvm_ipld_blockstore = ${gitVersion('0.1.0')}`)
.replace(/fvm_ipld_encoding = .*/, `fvm_ipld_encoding = ${gitVersion('0.2.0')}`)
)
}
Insert cell
Insert cell
Insert cell
Insert cell
client = {
const provider = new BrowserProvider(`${baseUrl}/rpc/v0`, { token })
return new LotusRPC(provider, { schema })
}
Insert cell
filecoin_client = new FilecoinClient(`${baseUrl}/rpc/v0`, token)
Insert cell
async function *heightStream () {
let last
while (true) {
try {
const newHeight = (await client.chainHead()).Height
if (newHeight !== last) {
yield newHeight
last = newHeight
}
} catch (e) {
yield 0
}
await Promises.delay(4000)
}
}
Insert cell
mutable ready = false
Insert cell
async function *heightReadyTapStream () {
let lastReady = false
for await (const height of heightStream()) {
const newReady = height > 7
if (newReady !== lastReady) {
mutable ready = newReady
lastReady = newReady
}
yield height
}
}
Insert cell
currentHeight = heightReadyTapStream()
Insert cell
walletDefaultAddress = ready && client.walletDefaultAddress()
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more