I hereby claim:
- I am avras on github.
- I am sarva_v (https://keybase.io/sarva_v) on keybase.
- I have a public key ASB8Rv2B_U5n43syk5TLBx1Mu0_nSxY61N3UQOlENBMjPQo
To claim this, I am signing this object:
MOV 40H, #00H | |
MOV 41H, #01H | |
MOV 42H, #02H | |
MOV 43H, #03H | |
MOV 44H, #04H | |
MOV 45H, #05H | |
MOV 46H, #06H | |
MOV 47H, #07H | |
MOV 48H, #08H | |
MOV 49H, #09H |
// Script for allowing a trustline for an asset | |
const StellarSdk = require('stellar-sdk'); | |
// The source account is the account which will be issuing the new asset | |
// Replace this value with your own public key | |
const sourcePublicKey = 'GCCNY66T3W2FJ544FPFPXQCXDRDODPIHY2UHTYJIJ44G6FKUB5AKZMS4'; | |
const receiverSecretKey = 'SDHDHPQNSEPTWPDXAURD3BTYNVORAQTE5LZLJ75MRG4ZX3V3YWGQHGXB'; |
Verifying my Blockstack ID is secured with the address 138eWwShx6XthGZZMthx5Kcf3BS36iiwMQ https://explorer.blockstack.org/address/138eWwShx6XthGZZMthx5Kcf3BS36iiwMQ |
I hereby claim:
To claim this, I am signing this object:
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ | |
/* | |
* This program is free software; you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License version 2 as | |
* published by the Free Software Foundation; | |
* | |
* This program is distributed in the hope that it will be useful, | |
* but WITHOUT ANY WARRANTY; without even the implied warranty of | |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
* GNU General Public License for more details. |
%% Illustration of gen_server using a bank account example | |
%% Author: Saravanan Vijayakumaran | |
%% Date: 13/11/2012 | |
-module(bankaccount). | |
-record(account, {customer, number, balance}). | |
-behaviour(gen_server). | |
-export([init/1, handle_call/3, handle_cast/2, |