mirror of git3://git3.w3q/git3-contract
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
878 B
TypeScript
35 lines
878 B
TypeScript
2 years ago
|
import hre from "hardhat";
|
||
2 years ago
|
const { ethers } = hre;
|
||
2 years ago
|
import fs from "fs";
|
||
2 years ago
|
|
||
|
async function main() {
|
||
2 years ago
|
const accounts = await ethers.getSigners();
|
||
|
console.log(accounts[0].address);
|
||
|
|
||
|
const Git3 = await hre.ethers.getContractAt(
|
||
2 years ago
|
"Git3Hub",
|
||
2 years ago
|
"0xa709975Bc01e745432f8898499E7b9a60f420117"
|
||
|
);
|
||
|
|
||
|
let file = fs.readFileSync("test/git3.png");
|
||
|
|
||
|
let buffer = Array.from(file).slice(0, 24576);
|
||
|
let fileSize = buffer.length;
|
||
|
console.log("buffer", buffer.length);
|
||
|
|
||
|
let cost = 0;
|
||
|
if (fileSize > 24 * 1024 - 326) {
|
||
|
cost = Math.floor((fileSize + 326) / 1024 / 24);
|
||
|
}
|
||
|
let key = ethers.utils.toUtf8Bytes("aaa");
|
||
|
let rept = await Git3.upload(key, buffer, {
|
||
|
value: ethers.utils.parseEther(cost.toString()),
|
||
|
});
|
||
|
console.log("rept", "https://explorer.galileo.web3q.io/tx/" + rept.hash);
|
||
2 years ago
|
}
|
||
|
|
||
|
main().catch((error) => {
|
||
2 years ago
|
console.error(error);
|
||
|
process.exit(1);
|
||
|
});
|