This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"address": { | |
"ens_domain_name": null, | |
"hash": "0x00DDC08D535918425709DA3e50134AE7CFb2eFf9", | |
"implementation_name": null, | |
"is_contract": false, | |
"is_verified": null, | |
"metadata": null, | |
"name": null, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "Strategy", | |
"data": { | |
"cron": "* ** ", | |
"cronjob": { | |
"type": "Weighted", | |
"data": [ | |
{ | |
"type": "Weight", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.minimap.enabled": false, | |
"workbench.startupEditor": "none", | |
"vim.easymotion": true, | |
"vim.incsearch": true, | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
"vim.hlsearch": true, | |
"vim.insertModeKeyBindings": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.minimap.enabled": false, | |
"breadcrumbs.enabled": false, | |
"workbench.startupEditor": "none", | |
"vim.easymotion": true, | |
"vim.incsearch": true, | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
"vim.hlsearch": true, | |
"vim.insertModeKeyBindings": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module 0x3::token { | |
... | |
struct TokenId has store, copy, drop { | |
token_data_id: TokenDataId, | |
property_version: u64, | |
} | |
struct TokenDataId has copy, drop, store { | |
creator: address, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public entry fun mint_nft(account: &signer) acquires ResourceSigner, MintingInfo { | |
let (resource, resource_addr) = resource_account(); | |
let minting_info = borrow_global_mut<MintingInfo>(@rangers); | |
let name = string::utf8(b""); | |
string::append(&mut name, minting_info.base_name); | |
string::append(&mut name, to_string(minting_info.index)); | |
let img = generate_base64_image(minting_info.index); | |
let uri = generate_base64_metadata(img, minting_info.index); | |
std::debug::print(&uri); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::hash::{Hash, Hasher}; | |
use std::collections::hash_map::DefaultHasher; | |
#[derive(Debug)] | |
struct A { | |
a: i32 | |
} | |
impl Hash for A { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public fun get_random_between(hash: vector<u8>, low: u64, high: u64): u64 { | |
assert!(high > low, E_WTF_DUDE); | |
let range = high - low; | |
let a = aptos_hash::sip_hash(hash); | |
let b = low + (a % range); | |
debug::print(&b); | |
return low + (a % range) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::rc::Rc; | |
enum List { | |
Cons(i32, Rc<List>), | |
Nil, | |
} | |
use self::List::{Cons, Nil}; | |
pub fn implement() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extensions.ignoreRecommendations": true, | |
"bracketPairColorizer.depreciation-notice": false, | |
"terminal.integrated.lineHeight": 1.2, | |
// "github.copilot.enable": { | |
// "*": true, | |
// "yaml": false, | |
// "plaintext": false, | |
// "markdown": false, | |
// "python": false, |