LOADING...
LOADING...
LOADING...
当前位置:主页 > 知识列表 >

string

1. 2020年最硬核DeFi项目String

...一定会催生新的金融产品,今天就让我们一起来谈谈2020年DeFi圈的黑马——String。String是什么?String中文名称“弦”,出自物理的一个分支学科——弦理论,同样也是String团队常年对DeFi生态研究中洞察得到的。弦理论的一个基本观点就是,自然界的基本单元不是电子、光子、中微子和夸克之类的点状粒...

知识:跨链,代币,去中心化,通证

2. PDXUtopia区块链协议栈使用Solidity调用wasm智能合约

...ity ^0.5.3;contract hello_wasm_abi {function getcounter() public view returns(uint256);function get(string memory key) public view returns(string memory);function put(string memory key,string memory val) public payable;}```### JSON ABI编译合约接口可以得到对应的 `ABI JSON` 描述,提供合约地址和此 `JSON ABI` 文档,`DAPP` 开发者即可实例化 `hello_wasm_abi` 合约,...

知识:合约,合约地址,智能合约,创建区块

3. PDXUtopia区块链协议栈支持WASM合约与Solidity之间互相调用

...contract?hello_wasm_abi?{??? ??function?getcounter()?public?view?returns(uint256);?? function?get(string?memory?key)?public?view?returns(string?memory);??? ?????????????????????????function?put(string?memory?key,string?memory?val)?public?payable;调用 solidity 合约的 get 方法 :function?solget(address?addr,?string?memory?key)?public?view?returns(string?memory);调用 solidity 合约的 put ...

知识:合约,合约地址,智能合约,区块链协议

4. 使用BSN开发区块链应用智能合约-golang篇

...的状态;peer.Response:封装的响应信息???链码方法介绍◆?GetFunctionAndParameters() (string, []string)返回一个方法调用描述对象,第一个值调用的链码方法名,第二个值要传入目标方法的参数对象。◆?GetArgs() [][]byte从链码调用请求中返回参数字符串数组,等价getStringArgs()。◆?GetStringArgs() []string返回链码调用请求...

知识:智能合约,跨链,有链,方法

5. 使用BSN开发区块链应用智能合约-golang篇

...本的状态;peer.Response:封装的响应信息?链码方法介绍◆GetFunctionAndParameters() (string, []string)返回一个方法调用描述对象,第一个值调用的链码方法名,第二个值要传入目标方法的参数对象。◆GetArgs() [][]byte从链码调用请求中返回参数字符串数组,等价getStringArgs()。◆GetStringArgs() []string返回链码调用请求中...

知识:区块链,golang,技术篇,火星技术帖,火星号精选

6. 科普 | 什么是Soilidity?

...contract Example {// This will be stored permanently in the blockchainuint myUnsignedInteger = 100;string name = "vivek"}Uint数据类型是一个无符号整数。它应该是非负的。数据类型值类型:Boolean(true / false),Integers(int / uint), Address(以太坊地址的大小),String, enum引用类型:数组、结构、映射数学运算Addition: x + ySubtraction: x ...

知识:区块链,Solidity

7. 【译文】Cosmos技术文档-ABCI规范

...其使用方式的详细信息,请参见下文。2.请求/响应消息EchoRequest: Message (string): echo返回字符串 Response: Message (string): 输入字符串 Usage: 输出一个字符串以测试abci客户端/服务实现FlushUsage: 表示应将客户端上排队的消息刷新到服务器。客户端实现定期调用它以确保异步请求被正确发送,并立...

知识:区块,公钥,区块头,区块链

8. 保护数据库信息如何用Go语言+对称密钥做数据加密?

...存和解密读取。1、新用户创建函数func?createData(id,?name,?nationalID,?createTimeUnix?string)?(err?error)?{????_,?err?=?DB.Exec(`????INSERT?INTO?????????user?(id,?name,?national_id,?create_time_unix)????VALUES?????????("?",?"?",?"?",?"?")????`,?id,?name,?nationalID,?createTimeUnix)????return}上面的函数是用Go语言将数据写入数据库的最小函数。这里将示例中的...

知识:函数,密钥,数据,明文

9. 如何使用 IPFS Cluster 构建 Twitter 机器人 (中)

...son" // Gateway var IPFSGateway = "https://ipfs.io" const twittercom = "twitter.com" type Action string // Variables containing the different available actions var ( // (spaces)(action)whitespaces(arguments) actionRegexp = regexp.MustCompile(`^\s*([[:graph:]]+)\s+(.+)`) // (cid)whitespaces(name with whitespaces). [:graph:] does not // match line breaks or spaces. pinRegexp ...

知识:区块链,机器人,帐户,应用程序

10. 使用Hyperledger Composer和React.js构建保险应用程序-part1

...to,可以在models文件夹中找到该文件。 participant Policyholder identified by id { o String id o String name o Double balance default = 0.0 o Integer noClaimsYears default = 0 } participant InsuranceCompany identified by id { o String id o String name o Double balance default = 0.0 o Integer insuranceContracts default = 0 } 保单持有人还希望能够添加房屋...

知识:区块链,保单,持有人

11. 干货 | 编程小白模拟简易比特币系统,手把手带你写一波(附代码)

...able { /*** 消息内容,就是我们的区块链、交易池等所需要的信息,使用JSON.toString转化到的json字符串*/ private String data; /*** 消息类型*/ private int type; } </pre> 涉及到的消息类型(type)有: /*** 查询最新的区块*/ private final static int QUERY_LATEST_BLOCK = 0; /*** 查询整个区块链*/ private final static int QUERY_BLOCK_CHAIN = 1; /...

知识:比特币,技术指南

12. 以太坊上简单实现Oracle预言机链接

.../ defines a general api request struct Request { uint id; //request id string urlToQuery; //API url string attributeToFetch; //json attribute (key) to retrieve in the response string agreedValue; //value from key mapping(uint =&gt; string) anwers; //answers provided by the oracles mapping(address =&gt; uint) quorum; //or...

知识:合约,以太坊,区块链

13. 弦链StringChain打造去中心化互联网

StringChain是一个高性能区块链公链项目,通过打通互联网与区块链间的数据连接,为下一代互联网、区块链、智能物联网提供基础架构。弦链中的唯一Token名为stri,寓意弦链作为区块链和互联网数字世界的底层本源。弦链(String Chain)是基于区块链技术结合互联网(物联网)基础设施打造的包括但不仅限于...

知识:区块链,通证,区块链技术,矿工

14. 趣味技术——用你的iPhone建立自己的实时比特币价格更新

...:?.default)????private?var?webSocketTask:?URLSessionWebSocketTask???? ????private?let?baseURL?=?URL(string:?"wss://ws.finnhub.io?token=XYZ")!??? ????let?didChange?=?PassthroughSubject&lt;Void,?Never>()????@Published?var?price:?String?=?""??? ????private?var?cancellable:?AnyCancellable??=?nil??? ????var?priceResult:?String?=?""?{????????didSet?{????????????didChange.send()????????}????}?????init()?...

知识:比特币价格,的比特,比特币实时更新,币价格

15. Base64、Base58原理及GO实现其加密解密

...密解密package mainimport ("encoding/base64""fmt")func main()? {str := "Oneck"res := Base64EncodeString(str)fmt.Println(res);res1 := Base64DecodeString(res)fmt.Println(res1)}func Base64EncodeString(str string) string {return base64.StdEncoding.EncodeToString([]byte(str))}func Base64DecodeString(str string) string {result,_ := base64.StdEncoding.DecodeString(str)return string(result)}Base581.Base...

知识:加密货币,比特币,字符,转成